Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/CodeGen/
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-12-stable/contrib/llvm-project/clang/lib/Index/
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-12-stable/contrib/llvm-project/clang/include/clang/Index/
DIndexSymbol.h44 InstanceMethod, enumerator
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
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-12-stable/contrib/llvm-project/clang/lib/Sema/
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
4317 ClassMethod, InstanceMethod, TDNDecl, in CheckObjCBridgeRelatedConversions()
4354 if (InstanceMethod) { in CheckObjCBridgeRelatedConversions()
4359 if (InstanceMethod->isPropertyAccessor()) in CheckObjCBridgeRelatedConversions()
4361 InstanceMethod->findPropertyDecl()) { in CheckObjCBridgeRelatedConversions()
4366 << SrcType << DestType << InstanceMethod->getSelector() << true in CheckObjCBridgeRelatedConversions()
4372 ExpressionString += InstanceMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
[all …]
DSemaDeclAttr.cpp5670 IdentifierInfo *InstanceMethod = in handleObjCBridgeRelatedAttr() local
5673 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
DParseDecl.cpp1420 IdentifierLoc *InstanceMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1422 InstanceMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1442 InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGCall.cpp821 FI->InstanceMethod = instanceMethod; in create()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DAttr.td2034 IdentifierArgument<"InstanceMethod">];
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DSema.h9893 ObjCMethodDecl *&InstanceMethod,