Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h50 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp8345 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 DUSRGeneration.cpp1051 bool IsInstanceMethod, in generateUSRForObjCMethod() argument
1053 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
H A DCommentToXML.cpp846 if (DI->IsInstanceMethod) in visitFullComment()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h1072 unsigned IsInstanceMethod : 1; member
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp522 bool IsInstanceMethod,
5725 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
5763 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
5767 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
H A DRewriteModernObjC.cpp443 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 DSema.h12464 void CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod,
12467 bool IsInstanceMethod,