Searched refs:IsInstanceMethod (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Comment.cpp | 211 IsInstanceMethod = false; in fill() 247 IsInstanceMethod = MD->isInstance(); in fill() 248 IsClassMethod = !IsInstanceMethod; in fill() 258 IsInstanceMethod = MD->isInstanceMethod(); in fill() 259 IsClassMethod = !IsInstanceMethod; in fill()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Index/ |
| H A D | USRGeneration.h | 50 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 8345 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 8359 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 8432 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 8454 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 8476 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 8699 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 8723 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 8863 if (!IsInstanceMethod && in AddObjCKeyValueCompletions() 8888 if (!IsInstanceMethod && in AddObjCKeyValueCompletions() 8965 if (!IsInstanceMethod) { in CodeCompleteObjCMethodDecl() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 1051 bool IsInstanceMethod, in generateUSRForObjCMethod() argument 1053 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
|
| H A D | CommentToXML.cpp | 846 if (DI->IsInstanceMethod) in visitFullComment()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Comment.h | 1072 unsigned IsInstanceMethod : 1; member
|
| /freebsd-13.1/contrib/llvm-project/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 | 443 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 12464 void CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod, 12467 bool IsInstanceMethod,
|