Home
last modified time | relevance | path

Searched refs:ClassMethod (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h45 ClassMethod, enumerator
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp220 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
527 case SymbolKind::ClassMethod: return "class-method"; in getSymbolKindString()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp4227 ObjCMethodDecl *&ClassMethod, in checkObjCBridgeRelatedComponents() argument
4270 ClassMethod = RelatedClass->lookupMethod(Sel, false); in checkObjCBridgeRelatedComponents()
4271 if (!ClassMethod) { in checkObjCBridgeRelatedComponents()
4309 ObjCMethodDecl *ClassMethod = nullptr; in CheckObjCBridgeRelatedConversions() local
4313 ClassMethod, InstanceMethod, TDNDecl, in CheckObjCBridgeRelatedConversions()
4319 if (ClassMethod) { in CheckObjCBridgeRelatedConversions()
4324 ExpressionString += ClassMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
4329 << SrcType << DestType << ClassMethod->getSelector() << false in CheckObjCBridgeRelatedConversions()
4340 ClassMethod->getLocation(), in CheckObjCBridgeRelatedConversions()
4341 ClassMethod->getSelector(), ClassMethod, in CheckObjCBridgeRelatedConversions()
H A DSemaDeclAttr.cpp6317 IdentifierInfo *ClassMethod = in handleObjCBridgeRelatedAttr() local
6322 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp1586 IdentifierLoc *ClassMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1588 ClassMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1625 ScopeName, ScopeLoc, RelatedClass, ClassMethod, InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2289 IdentifierArgument<"ClassMethod">,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10856 ObjCMethodDecl *&ClassMethod,