Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp251 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl() local
252 if (objc_method.IsValid(true)) { in IndexUnitImpl()
255 objc_method.GetClassNameWithCategory()); in IndexUnitImpl()
256 ConstString objc_selector_name(objc_method.GetSelector()); in IndexUnitImpl()
258 objc_method.GetFullNameWithoutCategory(true)); in IndexUnitImpl()
259 ConstString class_name_no_category(objc_method.GetClassName()); in IndexUnitImpl()
H A DDWARFASTParserClang.cpp966 ObjCLanguage::MethodName objc_method(attrs.name.GetStringRef(), true); in ParseSubroutine() local
967 if (objc_method.IsValid(true)) { in ParseSubroutine()
969 ConstString class_name(objc_method.GetClassName()); in ParseSubroutine()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp231 ObjCLanguage::MethodName objc_method(method_name.GetCString(), false); in GetMethodNameVariants() local
232 if (!objc_method.IsValid(false)) { in GetMethodNameVariants()
236 variant_names.emplace_back(objc_method.GetSelector(), in GetMethodNameVariants()
240 objc_method.GetType() == MethodName::eTypeClassMethod; in GetMethodNameVariants()
242 objc_method.GetType() == MethodName::eTypeInstanceMethod; in GetMethodNameVariants()
244 objc_method.GetFullNameWithoutCategory(/*empty_if_no_category*/ true); in GetMethodNameVariants()
253 strm.Printf("+%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
258 strm.Printf("-%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp9340 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local
9342 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()
9351 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local
9353 return objc_method->param_size(); in DeclGetFunctionNumArguments()
9367 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local
9370 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType()
9371 return GetType(objc_method->parameters()[idx]->getOriginalType()); in DeclGetFunctionArgumentType()
9583 if (ObjCMethodDecl *objc_method = in DeclContextIsClassMethod() local
9586 *is_instance_method_ptr = objc_method->isInstanceMethod(); in DeclContextIsClassMethod()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td479 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",