Home
last modified time | relevance | path

Searched refs:objc_method (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp290 std::optional<const ObjCLanguage::MethodName> objc_method = in IndexUnitImpl() local
292 if (objc_method) { in IndexUnitImpl()
295 objc_method->GetClassNameWithCategory()); in IndexUnitImpl()
296 ConstString objc_selector_name(objc_method->GetSelector()); in IndexUnitImpl()
298 objc_method->GetFullNameWithoutCategory().c_str()); in IndexUnitImpl()
299 ConstString class_name_no_category(objc_method->GetClassName()); in IndexUnitImpl()
H A DDWARFASTParserClang.cpp1034 std::optional<const ObjCLanguage::MethodName> objc_method = in ParseSubroutine() local
1036 if (objc_method) { in ParseSubroutine()
1038 ConstString class_name(objc_method->GetClassName()); in ParseSubroutine()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp182 std::optional<const ObjCLanguage::MethodName> objc_method = in GetMethodNameVariants() local
184 if (!objc_method) in GetMethodNameVariants()
187 variant_names.emplace_back(ConstString(objc_method->GetSelector()), in GetMethodNameVariants()
191 objc_method->GetFullNameWithoutCategory(); in GetMethodNameVariants()
193 if (objc_method->IsClassMethod() || objc_method->IsInstanceMethod()) { in GetMethodNameVariants()
200 strm.Printf("+%s", objc_method->GetFullName().c_str()); in GetMethodNameVariants()
205 strm.Printf("-%s", objc_method->GetFullName().c_str()); in GetMethodNameVariants()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8979 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local
8981 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()
8990 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local
8992 return objc_method->param_size(); in DeclGetFunctionNumArguments()
9066 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local
9069 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType()
9070 return GetType(objc_method->parameters()[idx]->getOriginalType()); in DeclGetFunctionArgumentType()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td567 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",