Home
last modified time | relevance | path

Searched refs:IsInstanceMethod (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DComment.cpp211 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()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Index/
H A DUSRGeneration.h50 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCodeComplete.cpp8294 bool IsInstanceMethod, in AddObjCKeyValueCompletions() argument
8342 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8356 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8378 if (IsInstanceMethod && ReturnTypeMatchesVoid && in AddObjCKeyValueCompletions()
8429 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8451 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8473 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
8500 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
8532 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
8562 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DUSRGeneration.cpp1051 bool IsInstanceMethod, in generateUSRForObjCMethod() argument
1053 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
H A DCommentToXML.cpp846 if (DI->IsInstanceMethod) in visitFullComment()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DComment.h1072 unsigned IsInstanceMethod : 1; member
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp522 bool IsInstanceMethod,
5737 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
5775 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
5779 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
H A DRewriteModernObjC.cpp443 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()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h12363 void CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod,
12366 bool IsInstanceMethod,