Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp306 std::optional<const ObjCLanguage::ObjCMethodName> objc_method = in IndexUnitImpl() local
308 if (objc_method) { in IndexUnitImpl()
311 objc_method->GetClassNameWithCategory()); in IndexUnitImpl()
312 ConstString objc_selector_name(objc_method->GetSelector()); in IndexUnitImpl()
314 objc_method->GetFullNameWithoutCategory().c_str()); in IndexUnitImpl()
315 ConstString class_name_no_category(objc_method->GetClassName()); in IndexUnitImpl()
H A DDWARFASTParserClang.h466 ParseObjCMethod(const lldb_private::ObjCLanguage::ObjCMethodName &objc_method,
H A DDWARFASTParserClang.cpp1083 const ObjCLanguage::ObjCMethodName &objc_method, const DWARFDIE &die, in ParseObjCMethod() argument
1090 ConstString class_name(objc_method.GetClassName()); in ParseObjCMethod()
1334 if (std::optional<const ObjCLanguage::ObjCMethodName> objc_method = in ParseSubroutine() local
1338 ParseObjCMethod(*objc_method, die, clang_type, attrs, is_variadic); in ParseSubroutine()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp182 std::optional<const ObjCLanguage::ObjCMethodName> 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/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp9090 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local
9092 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()
9101 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local
9103 return objc_method->param_size(); in DeclGetFunctionNumArguments()
9175 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local
9178 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType()
9179 return GetType(objc_method->parameters()[idx]->getOriginalType()); in DeclGetFunctionArgumentType()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td620 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",