Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h565 unsigned InstanceMethod : 1; variable
662 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod()
750 ID.AddBoolean(InstanceMethod); in Profile()
770 bool InstanceMethod, in Profile() argument
778 ID.AddBoolean(InstanceMethod); in Profile()
/openbsd/gnu/llvm/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()
526 case SymbolKind::InstanceMethod: return "instance-method"; in getSymbolKindString()
/openbsd/gnu/llvm/clang/include/clang/Index/
H A DIndexSymbol.h44 InstanceMethod, enumerator
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1208 Selector LookupSelector, bool InstanceMethod) { in lookupRuntimeDefinition() argument
1228 PMC[{Interface, LookupSelector, InstanceMethod}]; in lookupRuntimeDefinition()
1232 Val = Interface->lookupPrivateMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
1236 Val = Interface->lookupMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaExprObjC.cpp4223 ObjCMethodDecl *&InstanceMethod, in checkObjCBridgeRelatedComponents() argument
4279 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
4280 if (!InstanceMethod) { in checkObjCBridgeRelatedComponents()
4305 ObjCMethodDecl *InstanceMethod = nullptr; in CheckObjCBridgeRelatedConversions() local
4308 ClassMethod, InstanceMethod, TDNDecl, in CheckObjCBridgeRelatedConversions()
4345 if (InstanceMethod) { in CheckObjCBridgeRelatedConversions()
4350 if (InstanceMethod->isPropertyAccessor()) in CheckObjCBridgeRelatedConversions()
4352 InstanceMethod->findPropertyDecl()) { in CheckObjCBridgeRelatedConversions()
4363 ExpressionString += InstanceMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
4375 SrcExpr, SrcType, InstanceMethod->getLocation(), in CheckObjCBridgeRelatedConversions()
[all …]
H A DSemaDeclAttr.cpp6107 IdentifierInfo *InstanceMethod = in handleObjCBridgeRelatedAttr() local
6110 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCXIndexDataConsumer.cpp1288 case SymbolKind::InstanceMethod: in getEntityKindFromSymbolKind()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseDecl.cpp1489 IdentifierLoc *InstanceMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1491 InstanceMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1508 ScopeName, ScopeLoc, RelatedClass, ClassMethod, InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGCall.cpp835 FI->InstanceMethod = instanceMethod; in create()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td2148 IdentifierArgument<"InstanceMethod">];
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DSema.h10539 ObjCMethodDecl *&InstanceMethod,