Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DComment.cpp210 IsInstanceMethod = false; in fill()
248 IsInstanceMethod = MD->isInstance(); in fill()
249 IsClassMethod = !IsInstanceMethod; in fill()
261 IsInstanceMethod = MD->isInstanceMethod(); in fill()
262 IsClassMethod = !IsInstanceMethod; in fill()
/freebsd/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h50 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DAPINotesWriter.h67 bool IsInstanceMethod, const ObjCMethodInfo &Info,
H A DAPINotesReader.h142 bool IsInstanceMethod);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h51 bool IsInstanceMethod() const { return m_type == eTypeInstanceMethod; } in IsInstanceMethod() function
H A DObjCLanguage.cpp193 if (objc_method->IsClassMethod() || objc_method->IsInstanceMethod()) { in GetMethodNameVariants()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp8994 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9008 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9081 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9103 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9125 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9348 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9372 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9512 if (!IsInstanceMethod && in AddObjCKeyValueCompletions()
9537 if (!IsInstanceMethod && in AddObjCKeyValueCompletions()
9615 if (!IsInstanceMethod) { in CodeCompleteObjCMethodDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp804 bool IsInstanceMethod = method.Kind == MethodKind::Instance; in convertContext() local
805 bool &Known = IsInstanceMethod ? KnownMethods[method.Selector].first in convertContext()
809 (IsInstanceMethod ? "-" : "+") + "[" + C.Name + " " + in convertContext()
H A DAPINotesWriter.cpp1310 bool IsInstanceMethod, in addObjCMethod() argument
1315 IsInstanceMethod}; in addObjCMethod()
H A DAPINotesReader.cpp1919 bool IsInstanceMethod) in lookupObjCMethod() argument
1930 IsInstanceMethod}); in lookupObjCMethod()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h404 IsInstanceMethod = 1 << 0, enumerator
H A DCGCall.cpp194 instanceMethod ? FnInfoOpts::IsInstanceMethod : FnInfoOpts::None; in arrangeLLVMFunctionInfo()
370 return arrangeLLVMFunctionInfo(resultType, FnInfoOpts::IsInstanceMethod, in arrangeCXXStructorDeclaration()
446 return arrangeLLVMFunctionInfo(ResultType, FnInfoOpts::IsInstanceMethod, in arrangeCXXConstructorCall()
573 return arrangeLLVMFunctionInfo(Context.VoidTy, FnInfoOpts::IsInstanceMethod, in arrangeMSCtorClosure()
708 FnInfoOpts::IsInstanceMethod, argTypes, info, in arrangeCXXMethodCall()
737 opts |= FnInfoOpts::IsInstanceMethod; in arrangeCall()
767 (opts & FnInfoOpts::IsInstanceMethod) == FnInfoOpts::IsInstanceMethod; in arrangeLLVMFunctionInfo()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp418 FunctionSignature Signature, bool IsInstanceMethod, in addObjCMethod() argument
421 if (IsInstanceMethod) in addObjCMethod()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp1139 bool IsInstanceMethod, in generateUSRForObjCMethod() argument
1141 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
H A DCommentToXML.cpp846 if (DI->IsInstanceMethod) in visitFullComment()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h1057 unsigned IsInstanceMethod : 1;
/freebsd/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.cpp444 bool IsInstanceMethod,
7364 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
7397 if (IsInstanceMethod) in RewriteObjCMethodsMetaData()
7409 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
7413 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPI.h1442 bool IsInstanceMethod, bool IsFromSystemHeader);
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h13795 std::optional<bool> IsInstanceMethod,
13798 bool IsInstanceMethod,