Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
523 case SymbolKind::InstanceMethod: return "instance-method"; in getSymbolKindString()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h44 InstanceMethod, enumerator
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1242 Selector LookupSelector, bool InstanceMethod) { in lookupRuntimeDefinition() argument
1262 PMC[{Interface, LookupSelector, InstanceMethod}]; in lookupRuntimeDefinition()
1266 Val = Interface->lookupPrivateMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
1270 Val = Interface->lookupMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
/freebsd-13.1/contrib/llvm-project/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.cpp5670 IdentifierInfo *InstanceMethod = in handleObjCBridgeRelatedAttr() local
5673 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp1420 IdentifierLoc *InstanceMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1422 InstanceMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1442 InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp820 FI->InstanceMethod = instanceMethod; in create()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2034 IdentifierArgument<"InstanceMethod">];
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h9890 ObjCMethodDecl *&InstanceMethod,