Searched refs:objc_method (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | ManualDWARFIndex.cpp | 293 std::optional<const ObjCLanguage::MethodName> objc_method = in IndexUnitImpl() local 295 if (objc_method) { in IndexUnitImpl() 298 objc_method->GetClassNameWithCategory()); in IndexUnitImpl() 299 ConstString objc_selector_name(objc_method->GetSelector()); in IndexUnitImpl() 301 objc_method->GetFullNameWithoutCategory().c_str()); in IndexUnitImpl() 302 ConstString class_name_no_category(objc_method->GetClassName()); in IndexUnitImpl()
|
H A D | DWARFASTParserClang.h | 395 ParseObjCMethod(const lldb_private::ObjCLanguage::MethodName &objc_method,
|
H A D | DWARFASTParserClang.cpp | 995 const ObjCLanguage::MethodName &objc_method, const DWARFDIE &die, in ParseObjCMethod() argument 1002 ConstString class_name(objc_method.GetClassName()); in ParseObjCMethod() 1256 if (std::optional<const ObjCLanguage::MethodName> objc_method = in ParseSubroutine() local 1260 ParseObjCMethod(*objc_method, die, clang_type, attrs, is_variadic); in ParseSubroutine()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | ObjCLanguage.cpp | 182 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/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 9165 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local 9167 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType() 9176 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local 9178 return objc_method->param_size(); in DeclGetFunctionNumArguments() 9250 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local 9253 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType() 9254 return GetType(objc_method->parameters()[idx]->getOriginalType()); in DeclGetFunctionArgumentType()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Attr.td | 580 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",
|