Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DComment.cpp197 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 DUSRGeneration.h51 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCodeComplete.cpp7203 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 DUSRGeneration.cpp1036 bool IsInstanceMethod, in generateUSRForObjCMethod() argument
1038 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
H A DCommentToXML.cpp840 if (DI->IsInstanceMethod) in visitFullComment()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DComment.h1073 unsigned IsInstanceMethod : 1; member
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp522 bool IsInstanceMethod,
5723 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
5761 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
5765 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
H A DRewriteModernObjC.cpp444 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 DSema.h10430 void CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod,
10433 bool IsInstanceMethod,