Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSerializerBase.h148 for (const auto &InstanceMethod : API.getCXXInstanceMethods()) in traverseCXXInstanceMethods() local
149 getDerived()->visitCXXInstanceMethodRecord(*InstanceMethod.second); in traverseCXXInstanceMethods()
153 for (const auto &InstanceMethod : API.getCXXStaticMethods()) in traverseCXXStaticMethods() local
154 getDerived()->visitCXXStaticMethodRecord(*InstanceMethod.second); in traverseCXXStaticMethods()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h570 unsigned InstanceMethod : 1; variable
668 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod()
758 ID.AddBoolean(InstanceMethod); in Profile()
778 static void Profile(llvm::FoldingSetNodeID &ID, bool InstanceMethod, in Profile() argument
785 ID.AddBoolean(InstanceMethod); in Profile()
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp220 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
279 Info.Kind = SymbolKind::InstanceMethod; in getSymbolInfo()
304 Info.Kind = SymbolKind::InstanceMethod; in getSymbolInfo()
526 case SymbolKind::InstanceMethod: return "instance-method"; in getSymbolKindString()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h44 InstanceMethod, enumerator
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp4228 ObjCMethodDecl *&InstanceMethod, in checkObjCBridgeRelatedComponents() argument
4284 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
4285 if (!InstanceMethod) { in checkObjCBridgeRelatedComponents()
4310 ObjCMethodDecl *InstanceMethod = nullptr; in CheckObjCBridgeRelatedConversions() local
4313 ClassMethod, InstanceMethod, TDNDecl, in CheckObjCBridgeRelatedConversions()
4350 if (InstanceMethod) { in CheckObjCBridgeRelatedConversions()
4355 if (InstanceMethod->isPropertyAccessor()) in CheckObjCBridgeRelatedConversions()
4357 InstanceMethod->findPropertyDecl()) { in CheckObjCBridgeRelatedConversions()
4368 ExpressionString += InstanceMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
4380 SrcExpr, SrcType, InstanceMethod->getLocation(), in CheckObjCBridgeRelatedConversions()
[all …]
H A DSemaDeclAttr.cpp6319 IdentifierInfo *InstanceMethod = in handleObjCBridgeRelatedAttr() local
6322 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1236 Selector LookupSelector, bool InstanceMethod) { in lookupRuntimeDefinition() argument
1256 PMC[{Interface, LookupSelector, InstanceMethod}]; in lookupRuntimeDefinition()
1260 Val = Interface->lookupPrivateMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
1264 Val = Interface->lookupMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp955 auto InstanceMethod = serializeAPIRecord(Record); in visitCXXInstanceMethodRecord() local
956 if (!InstanceMethod) in visitCXXInstanceMethodRecord()
959 Symbols.emplace_back(std::move(*InstanceMethod)); in visitCXXInstanceMethodRecord()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp1606 IdentifierLoc *InstanceMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1608 InstanceMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1625 ScopeName, ScopeLoc, RelatedClass, ClassMethod, InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp838 FI->InstanceMethod = instanceMethod; in create()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2290 IdentifierArgument<"InstanceMethod">];
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10857 ObjCMethodDecl *&InstanceMethod,