Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h45 ClassMethod, enumerator
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp219 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
524 case SymbolKind::ClassMethod: return "class-method"; in getSymbolKindString()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp4231 ObjCMethodDecl *&ClassMethod, in checkObjCBridgeRelatedComponents() argument
4274 ClassMethod = RelatedClass->lookupMethod(Sel, false); in checkObjCBridgeRelatedComponents()
4275 if (!ClassMethod) { in checkObjCBridgeRelatedComponents()
4313 ObjCMethodDecl *ClassMethod = nullptr; in CheckObjCBridgeRelatedConversions() local
4317 ClassMethod, InstanceMethod, TDNDecl, in CheckObjCBridgeRelatedConversions()
4323 if (ClassMethod) { in CheckObjCBridgeRelatedConversions()
4328 ExpressionString += ClassMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
4333 << SrcType << DestType << ClassMethod->getSelector() << false in CheckObjCBridgeRelatedConversions()
4344 ClassMethod->getLocation(), in CheckObjCBridgeRelatedConversions()
4345 ClassMethod->getSelector(), ClassMethod, in CheckObjCBridgeRelatedConversions()
H A DSemaDeclAttr.cpp5668 IdentifierInfo *ClassMethod = in handleObjCBridgeRelatedAttr() local
5673 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp1400 IdentifierLoc *ClassMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1402 ClassMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1441 ClassMethod, in ParseObjCBridgeRelatedAttribute()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2033 IdentifierArgument<"ClassMethod">,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h9889 ObjCMethodDecl *&ClassMethod,