Home
last modified time | relevance | path

Searched refs:InstanceMethod (Results 1 – 11 of 11) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h565 unsigned InstanceMethod : 1; variable
659 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod()
736 ID.AddBoolean(InstanceMethod); in Profile()
756 bool InstanceMethod, in Profile() argument
764 ID.AddBoolean(InstanceMethod); in Profile()
/netbsd/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexSymbol.cpp219 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
278 Info.Kind = SymbolKind::InstanceMethod; in getSymbolInfo()
303 Info.Kind = SymbolKind::InstanceMethod; in getSymbolInfo()
518 case SymbolKind::InstanceMethod: return "instance-method"; in getSymbolKindString()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Index/
H A DIndexSymbol.h44 InstanceMethod, enumerator
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1203 Selector LookupSelector, bool InstanceMethod) { in lookupRuntimeDefinition() argument
1223 PMC[{Interface, LookupSelector, InstanceMethod}]; in lookupRuntimeDefinition()
1227 Val = Interface->lookupPrivateMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
1231 Val = Interface->lookupMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprObjC.cpp4232 ObjCMethodDecl *&InstanceMethod, in checkObjCBridgeRelatedComponents() argument
4288 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
4289 if (!InstanceMethod) { in checkObjCBridgeRelatedComponents()
4314 ObjCMethodDecl *InstanceMethod = nullptr; in CheckObjCBridgeRelatedConversions() local
4354 if (InstanceMethod) { in CheckObjCBridgeRelatedConversions()
4359 if (InstanceMethod->isPropertyAccessor()) in CheckObjCBridgeRelatedConversions()
4361 InstanceMethod->findPropertyDecl()) { in CheckObjCBridgeRelatedConversions()
4372 ExpressionString += InstanceMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
4385 InstanceMethod->getLocation(), in CheckObjCBridgeRelatedConversions()
4386 InstanceMethod->getSelector(), in CheckObjCBridgeRelatedConversions()
[all …]
H A DSemaDeclAttr.cpp5562 IdentifierInfo *InstanceMethod = in handleObjCBridgeRelatedAttr() local
5565 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/netbsd/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXIndexDataConsumer.cpp1275 case SymbolKind::InstanceMethod: in getEntityKindFromSymbolKind()
/netbsd/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDecl.cpp1420 IdentifierLoc *InstanceMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1422 InstanceMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1442 InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.cpp819 FI->InstanceMethod = instanceMethod; in create()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td2021 IdentifierArgument<"InstanceMethod">];
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h9821 ObjCMethodDecl *&InstanceMethod,