Searched refs:IsInstanceMethod (Results 1 – 9 of 9) sorted by relevance
/external/clang/lib/AST/ |
D | Comment.cpp | 136 IsInstanceMethod = false; in fill() 172 IsInstanceMethod = MD->isInstance(); in fill() 173 IsClassMethod = !IsInstanceMethod; in fill() 183 IsInstanceMethod = MD->isInstanceMethod(); in fill() 184 IsClassMethod = !IsInstanceMethod; in fill()
|
/external/clang/include/clang/Index/ |
D | USRGeneration.h | 43 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
|
/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 6395 bool IsInstanceMethod, in AddObjCKeyValueCompletions() argument 6444 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6458 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6482 if (IsInstanceMethod && ReturnTypeMatchesVoid && in AddObjCKeyValueCompletions() 6534 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6557 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6580 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6607 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() 6641 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() 6673 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() [all …]
|
/external/clang/lib/Index/ |
D | USRGeneration.cpp | 833 bool IsInstanceMethod, in generateUSRForObjCMethod() argument 835 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
|
D | CommentToXML.cpp | 850 if (DI->IsInstanceMethod) in visitFullComment()
|
/external/clang/include/clang/AST/ |
D | Comment.h | 1078 unsigned IsInstanceMethod : 1; member
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 522 bool IsInstanceMethod, 5753 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 5791 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 5795 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
D | RewriteModernObjC.cpp | 445 bool IsInstanceMethod, 7501 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 7534 if (IsInstanceMethod) in RewriteObjCMethodsMetaData() 7546 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 7550 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 8919 bool IsInstanceMethod, 8922 bool IsInstanceMethod,
|