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 | 6415 bool IsInstanceMethod, in AddObjCKeyValueCompletions() argument 6464 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6478 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6502 if (IsInstanceMethod && ReturnTypeMatchesVoid && in AddObjCKeyValueCompletions() 6554 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6577 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6600 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 6627 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() 6661 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() 6693 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() [all …]
|
/external/clang/lib/Index/ |
D | USRGeneration.cpp | 862 bool IsInstanceMethod, in generateUSRForObjCMethod() argument 864 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
|
D | CommentToXML.cpp | 849 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, 5732 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 5770 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 5774 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
D | RewriteModernObjC.cpp | 443 bool IsInstanceMethod, 7376 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 7409 if (IsInstanceMethod) in RewriteObjCMethodsMetaData() 7421 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 7425 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 9301 bool IsInstanceMethod, 9304 bool IsInstanceMethod,
|