Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp293 std::optional<const ObjCLanguage::MethodName> objc_method = in IndexUnitImpl()
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()
290 std::optional<const ObjCLanguage::MethodName> objc_method = IndexUnitImpl() local
H A DDWARFASTParserClang.cpp995 const ObjCLanguage::MethodName &objc_method, const DWARFDIE &die, in ParseSubroutine()
1002 ConstString class_name(objc_method.GetClassName()); in ParseSubroutine()
1256 if (std::optional<const ObjCLanguage::MethodName> objc_method = in ParseSubroutine()
1260 ParseObjCMethod(*objc_method, die, clang_type, attrs, is_variadic); in ParseSubroutine()
1034 std::optional<const ObjCLanguage::MethodName> objc_method = ParseSubroutine() local
/freebsd-src/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-src/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp9165 if (clang::ObjCMethodDecl *objc_method =
9167 return GetType(objc_method->getReturnType());
9176 if (clang::ObjCMethodDecl *objc_method = in CountDeclLevels()
9178 return objc_method->param_size(); in CountDeclLevels()
9250 } else if (clang::ObjCMethodDecl *objc_method = in CountDeclLevels()
9253 if (idx < objc_method->param_size()) in CountDeclLevels()
9254 return GetType(objc_method->parameters()[idx]->getOriginalType()); in CountDeclLevels()
8979 if (clang::ObjCMethodDecl *objc_method = DeclGetFunctionReturnType() local
8990 if (clang::ObjCMethodDecl *objc_method = DeclGetFunctionNumArguments() local
9066 } else if (clang::ObjCMethodDecl *objc_method = DeclGetFunctionArgumentType() local
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td580 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",