Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/SemaObjC/
H A Divar-lookup-resolution-builtin.m8 + (int) ClassMethod; class
16 + (int) ClassMethod
25 + (int) ClassMethod; class
35 + (int) ClassMethod
/llvm-project-15.0.7/clang/test/ExtractAPI/
H A Dobjc_category.m25 + (void)ClassMethod; class in Category
61 "source": "c:objc(cs)Interface(cm)ClassMethod",
217 "spelling": "ClassMethod"
235 "precise": "c:objc(cs)Interface(cm)ClassMethod"
252 "spelling": "ClassMethod"
262 "spelling": "ClassMethod"
265 "title": "ClassMethod"
269 "ClassMethod"
/llvm-project-15.0.7/clang/include/clang/Index/
H A DIndexSymbol.h45 ClassMethod, enumerator
/llvm-project-15.0.7/clang/lib/Index/
H A DIndexSymbol.cpp219 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
527 case SymbolKind::ClassMethod: return "class-method"; in getSymbolKindString()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprObjC.cpp4228 ObjCMethodDecl *&ClassMethod, in checkObjCBridgeRelatedComponents() argument
4271 ClassMethod = RelatedClass->lookupMethod(Sel, false); in checkObjCBridgeRelatedComponents()
4272 if (!ClassMethod) { in checkObjCBridgeRelatedComponents()
4310 ObjCMethodDecl *ClassMethod = nullptr; in CheckObjCBridgeRelatedConversions() local
4314 ClassMethod, InstanceMethod, TDNDecl, in CheckObjCBridgeRelatedConversions()
4320 if (ClassMethod) { in CheckObjCBridgeRelatedConversions()
4325 ExpressionString += ClassMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
4330 << SrcType << DestType << ClassMethod->getSelector() << false in CheckObjCBridgeRelatedConversions()
4341 ClassMethod->getLocation(), in CheckObjCBridgeRelatedConversions()
4342 ClassMethod->getSelector(), ClassMethod, in CheckObjCBridgeRelatedConversions()
H A DSemaDeclAttr.cpp5986 IdentifierInfo *ClassMethod = in handleObjCBridgeRelatedAttr() local
5991 S.Context, AL, RelatedClass, ClassMethod, InstanceMethod)); in handleObjCBridgeRelatedAttr()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DQuality.cpp128 case index::SymbolKind::ClassMethod: in categorize()
H A DCodeComplete.cpp119 case SK::ClassMethod: in toCompletionItemKind()
218 case index::SymbolKind::ClassMethod: in overloadSet()
H A DProtocol.cpp285 case index::SymbolKind::ClassMethod: in indexSymbolKindToSymbolKind()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DYAMLSerialization.cpp233 DEFINE_ENUM(ClassMethod); in enumeration()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DIdentifierNamingCheck.cpp111 m(ClassMethod) \
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXIndexDataConsumer.cpp1292 case SymbolKind::ClassMethod: return CXIdxEntity_ObjCClassMethod; in getEntityKindFromSymbolKind()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseDecl.cpp1460 IdentifierLoc *ClassMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1462 ClassMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1499 ScopeName, ScopeLoc, RelatedClass, ClassMethod, InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td2107 IdentifierArgument<"ClassMethod">,
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h10214 ObjCMethodDecl *&ClassMethod,