Searched refs:IsInstanceMethod (Results 1 – 12 of 12) sorted by relevance
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Comment.cpp | 206 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 D | API.h | 293 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 D | USRGeneration.h | 50 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
|
| /llvm-project-15.0.7/clang/lib/ExtractAPI/ |
| H A D | API.cpp | 133 bool IsInstanceMethod) { in addObjCMethod() argument 136 IsInstanceMethod); in addObjCMethod()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 8832 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 D | USRGeneration.cpp | 1059 bool IsInstanceMethod, in generateUSRForObjCMethod() argument 1061 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
|
| H A D | CommentToXML.cpp | 846 if (DI->IsInstanceMethod) in visitFullComment()
|
| /llvm-project-15.0.7/clang/lib/ExtractAPI/Serialization/ |
| H A D | SymbolGraphSerializer.cpp | 354 if (dyn_cast<ObjCMethodRecord>(&Record)->IsInstanceMethod) { in serializeSymbolKind()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Comment.h | 1053 unsigned IsInstanceMethod : 1; member
|
| /llvm-project-15.0.7/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 522 bool IsInstanceMethod, 5725 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 5763 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 5767 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
| H A D | RewriteModernObjC.cpp | 444 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 D | Sema.h | 12992 void CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod, 12995 bool IsInstanceMethod,
|