Searched refs:IsInstanceMethod (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Comment.cpp | 197 IsInstanceMethod = false; in fill() 233 IsInstanceMethod = MD->isInstance(); in fill() 234 IsClassMethod = !IsInstanceMethod; in fill() 244 IsInstanceMethod = MD->isInstanceMethod(); in fill() 245 IsClassMethod = !IsInstanceMethod; in fill()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Index/ |
| H A D | USRGeneration.h | 51 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 7203 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 7217 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 7290 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 7312 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 7334 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 7557 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 7581 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 7721 if (!IsInstanceMethod && in AddObjCKeyValueCompletions() 7746 if (!IsInstanceMethod && in AddObjCKeyValueCompletions() 7823 if (!IsInstanceMethod) { in CodeCompleteObjCMethodDecl() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 1036 bool IsInstanceMethod, in generateUSRForObjCMethod() argument 1038 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
|
| H A D | CommentToXML.cpp | 840 if (DI->IsInstanceMethod) in visitFullComment()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Comment.h | 1073 unsigned IsInstanceMethod : 1; member
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 522 bool IsInstanceMethod, 5723 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 5761 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 5765 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
| H A D | RewriteModernObjC.cpp | 444 bool IsInstanceMethod, 7368 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 7401 if (IsInstanceMethod) in RewriteObjCMethodsMetaData() 7413 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 7417 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 10430 void CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod, 10433 bool IsInstanceMethod,
|