Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp279 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl() local
280 if (objc_method.IsValid(true)) { in IndexUnitImpl()
283 objc_method.GetClassNameWithCategory()); in IndexUnitImpl()
284 ConstString objc_selector_name(objc_method.GetSelector()); in IndexUnitImpl()
286 objc_method.GetFullNameWithoutCategory(true)); in IndexUnitImpl()
287 ConstString class_name_no_category(objc_method.GetClassName()); in IndexUnitImpl()
H A DDWARFASTParserClang.cpp981 ObjCLanguage::MethodName objc_method(attrs.name.GetStringRef(), true); in ParseSubroutine() local
982 if (objc_method.IsValid(true)) { in ParseSubroutine()
984 ConstString class_name(objc_method.GetClassName()); in ParseSubroutine()
/openbsd/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp219 ObjCLanguage::MethodName objc_method(method_name.GetCString(), false); in GetMethodNameVariants() local
220 if (!objc_method.IsValid(false)) { in GetMethodNameVariants()
224 variant_names.emplace_back(objc_method.GetSelector(), in GetMethodNameVariants()
228 objc_method.GetType() == MethodName::eTypeClassMethod; in GetMethodNameVariants()
230 objc_method.GetType() == MethodName::eTypeInstanceMethod; in GetMethodNameVariants()
232 objc_method.GetFullNameWithoutCategory(/*empty_if_no_category*/ true); in GetMethodNameVariants()
241 strm.Printf("+%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
246 strm.Printf("-%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dobjc-lang.c73 struct objc_method { struct
1731 read_objc_method (CORE_ADDR addr, struct objc_method *method) in read_objc_method()
1746 struct objc_method *method) in read_objc_methlist_method()
1808 struct objc_method meth_str; in find_implementation_from_class()
/openbsd/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp9519 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local
9521 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()
9530 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local
9532 return objc_method->param_size(); in DeclGetFunctionNumArguments()
9546 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local
9549 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType()
9550 return GetType(objc_method->parameters()[idx]->getOriginalType()); in DeclGetFunctionArgumentType()
9762 if (ObjCMethodDecl *objc_method = in DeclContextIsClassMethod() local
9765 *is_instance_method_ptr = objc_method->isInstanceMethod(); in DeclContextIsClassMethod()
/openbsd/gnu/llvm/clang/docs/
H A DLanguageExtensions.rst4531 - ``objc_method``: Can be used to apply attributes to Objective-C methods,
4535 - ``objc_method(is_instance)``: Can be used to apply attributes to Objective-C
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td517 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",