Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaCodeCompletion.h210 std::optional<bool> IsInstanceMethod,
213 Scope *S, bool IsInstanceMethod, bool AtParameterName,
/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.h78 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.cpp9039 bool IsInstanceMethod, in AddObjCKeyValueCompletions() argument
9087 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9101 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9123 if (IsInstanceMethod && ReturnTypeMatchesVoid && in AddObjCKeyValueCompletions()
9174 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9196 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9218 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9245 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
9277 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
9307 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
[all …]
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp808 bool IsInstanceMethod = method.Kind == MethodKind::Instance; in convertContext() local
809 bool &Known = IsInstanceMethod ? KnownMethods[method.Selector].first in convertContext()
813 (IsInstanceMethod ? "-" : "+") + "[" + C.Name + " " + in convertContext()
H A DAPINotesWriter.cpp1377 bool IsInstanceMethod, in addObjCMethod() argument
1382 IsInstanceMethod}; in addObjCMethod()
H A DAPINotesReader.cpp2010 bool IsInstanceMethod) in lookupObjCMethod() argument
2021 IsInstanceMethod}); in lookupObjCMethod()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h424 IsInstanceMethod = 1 << 0, enumerator
H A DCGCall.cpp198 instanceMethod ? FnInfoOpts::IsInstanceMethod : FnInfoOpts::None; in arrangeLLVMFunctionInfo()
380 return arrangeLLVMFunctionInfo(resultType, FnInfoOpts::IsInstanceMethod, in arrangeCXXStructorDeclaration()
455 return arrangeLLVMFunctionInfo(ResultType, FnInfoOpts::IsInstanceMethod, in arrangeCXXConstructorCall()
582 return arrangeLLVMFunctionInfo(Context.VoidTy, FnInfoOpts::IsInstanceMethod, in arrangeMSCtorClosure()
717 FnInfoOpts::IsInstanceMethod, argTypes, info, in arrangeCXXMethodCall()
746 opts |= FnInfoOpts::IsInstanceMethod; in arrangeCall()
776 (opts & FnInfoOpts::IsInstanceMethod) == FnInfoOpts::IsInstanceMethod; in arrangeLLVMFunctionInfo()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp1155 bool IsInstanceMethod, in generateUSRForObjCMethod() argument
1157 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
H A DCommentToXML.cpp859 if (DI->IsInstanceMethod) in visitFullComment()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp443 bool IsInstanceMethod,
7362 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
7395 if (IsInstanceMethod) in RewriteObjCMethodsMetaData()
7407 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
7411 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()