Home
last modified time | relevance | path

Searched refs:IsInstanceMethod (Results 1 – 18 of 18) 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/Sema/
H A DSemaCodeCompletion.h212 std::optional<bool> IsInstanceMethod,
215 Scope *S, bool IsInstanceMethod, bool AtParameterName,
/freebsd/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h53 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/CodeGen/
H A DCodeGenABITypes.cpp66 returnType, FnInfoOpts::IsInstanceMethod, argTypes, info, paramInfos, in arrangeCXXMethodCall()
H A DCGCall.h435 IsInstanceMethod = 1 << 0, enumerator
H A DCGCall.cpp239 instanceMethod ? FnInfoOpts::IsInstanceMethod : FnInfoOpts::None; in arrangeLLVMFunctionInfo()
446 return arrangeLLVMFunctionInfo(resultType, FnInfoOpts::IsInstanceMethod, in arrangeCXXStructorDeclaration()
516 return arrangeLLVMFunctionInfo(ResultType, FnInfoOpts::IsInstanceMethod, in arrangeCXXConstructorCall()
649 return arrangeLLVMFunctionInfo(Context.VoidTy, FnInfoOpts::IsInstanceMethod, in arrangeMSCtorClosure()
784 FnInfoOpts::IsInstanceMethod, argTypes, info, in arrangeCXXMethodCall()
812 opts |= FnInfoOpts::IsInstanceMethod; in arrangeCall()
842 (opts & FnInfoOpts::IsInstanceMethod) == FnInfoOpts::IsInstanceMethod; in arrangeLLVMFunctionInfo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp9187 bool IsInstanceMethod, in AddObjCKeyValueCompletions() argument
9235 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9249 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9271 if (IsInstanceMethod && ReturnTypeMatchesVoid && in AddObjCKeyValueCompletions()
9322 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9344 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9366 if (IsInstanceMethod && in AddObjCKeyValueCompletions()
9393 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
9425 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
9455 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions()
[all …]
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp881 bool IsInstanceMethod = method.Kind == MethodKind::Instance; in convertContext() local
882 bool &Known = IsInstanceMethod ? KnownMethods[method.Selector].first in convertContext()
886 (IsInstanceMethod ? "-" : "+") + "[" + C.Name + " " + in convertContext()
H A DAPINotesWriter.cpp1481 bool IsInstanceMethod, in addObjCMethod() argument
1486 IsInstanceMethod}; in addObjCMethod()
H A DAPINotesReader.cpp2169 bool IsInstanceMethod) in lookupObjCMethod() argument
2180 IsInstanceMethod}); in lookupObjCMethod()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp1153 bool IsInstanceMethod, in generateUSRForObjCMethod() argument
1155 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForObjCMethod()
H A DCommentToXML.cpp858 if (DI->IsInstanceMethod) in visitFullComment()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp520 bool IsInstanceMethod,
5704 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
5742 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
5746 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
H A DRewriteModernObjC.cpp442 bool IsInstanceMethod,
7328 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument
7361 if (IsInstanceMethod) in RewriteObjCMethodsMetaData()
7373 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData()
7377 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()