Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DComment.cpp206 IsInstanceMethod = false; in fill()
244 IsInstanceMethod = MD->isInstance(); in fill()
245 IsClassMethod = !IsInstanceMethod; in fill()
257 IsInstanceMethod = MD->isInstanceMethod(); in fill()
258 IsClassMethod = !IsInstanceMethod; in fill()
/llvm-project-15.0.7/clang/include/clang/ExtractAPI/
H A DAPI.h293 bool IsInstanceMethod; member
299 bool IsInstanceMethod) in ObjCMethodRecord()
302 Signature(Signature), IsInstanceMethod(IsInstanceMethod) {} in ObjCMethodRecord()
583 bool IsInstanceMethod);
/llvm-project-15.0.7/clang/include/clang/Index/
H A DUSRGeneration.h50 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
/llvm-project-15.0.7/clang/lib/ExtractAPI/
H A DAPI.cpp133 bool IsInstanceMethod) { in addObjCMethod() argument
136 IsInstanceMethod); in addObjCMethod()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCodeComplete.cpp8832 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8846 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8919 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8941 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8963 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9186 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9210 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9350 if (!IsInstanceMethod && in AddObjCKeyValueCompletions()
9375 if (!IsInstanceMethod && in AddObjCKeyValueCompletions()
9452 if (!IsInstanceMethod) { in CodeCompleteObjCMethodDecl()
[all …]
/llvm-project-15.0.7/clang/lib/Index/
H A DUSRGeneration.cpp1059 bool IsInstanceMethod, in generateUSRForObjCMethod() argument
1061 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
H A DCommentToXML.cpp846 if (DI->IsInstanceMethod) in visitFullComment()
/llvm-project-15.0.7/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp354 if (dyn_cast<ObjCMethodRecord>(&Record)->IsInstanceMethod) { in serializeSymbolKind()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DComment.h1053 unsigned IsInstanceMethod : 1; member
/llvm-project-15.0.7/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp522 bool IsInstanceMethod,
5725 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
5763 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
5767 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
H A DRewriteModernObjC.cpp444 bool IsInstanceMethod,
7365 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
7398 if (IsInstanceMethod) in RewriteObjCMethodsMetaData()
7410 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
7414 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h12992 void CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod,
12995 bool IsInstanceMethod,