Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp261 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl() local
262 if (objc_method.IsValid(true)) { in IndexUnitImpl()
265 objc_method.GetClassNameWithCategory()); in IndexUnitImpl()
266 ConstString objc_selector_name(objc_method.GetSelector()); in IndexUnitImpl()
268 objc_method.GetFullNameWithoutCategory(true)); in IndexUnitImpl()
269 ConstString class_name_no_category(objc_method.GetClassName()); in IndexUnitImpl()
H A DDWARFASTParserClang.cpp984 ObjCLanguage::MethodName objc_method(attrs.name.GetStringRef(), true); in ParseSubroutine() local
985 if (objc_method.IsValid(true)) { in ParseSubroutine()
987 ConstString class_name(objc_method.GetClassName()); in ParseSubroutine()
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp218 ObjCLanguage::MethodName objc_method(method_name.GetCString(), false); in GetMethodNameVariants() local
219 if (!objc_method.IsValid(false)) { in GetMethodNameVariants()
223 variant_names.emplace_back(objc_method.GetSelector(), in GetMethodNameVariants()
227 objc_method.GetType() == MethodName::eTypeClassMethod; in GetMethodNameVariants()
229 objc_method.GetType() == MethodName::eTypeInstanceMethod; in GetMethodNameVariants()
231 objc_method.GetFullNameWithoutCategory(/*empty_if_no_category*/ true); in GetMethodNameVariants()
240 strm.Printf("+%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
245 strm.Printf("-%s", objc_method.GetFullName().GetCString()); in GetMethodNameVariants()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dubsan-nullability.m123 -(int *_Nonnull) objc_method: (int *_Nonnull) arg1;
145 // CHECK-LABEL: define internal i32* @"\01-[A objc_method:]"
146 -(int *_Nonnull) objc_method: (int *_Nonnull) arg1 {
169 [a objc_method: p];
/llvm-project-15.0.7/clang/test/AST/
H A Dpragma-attribute-objc-subject-match-rules.m4 …jc-root-class -fsyntax-only -ast-dump -ast-dump-filter test "-DSUBJECT=objc_method" %s | FileCheck…
5 …jc-root-class -fsyntax-only -ast-dump -ast-dump-filter test "-DSUBJECT=objc_method(is_instance)" %…
/llvm-project-15.0.7/clang/test/Sema/
H A Dpragma-attribute-strict-subjects.c148 #pragma clang attribute push (__attribute__((annotate("test"))), apply_to = objc_method)
/llvm-project-15.0.7/clang/test/Misc/
H A Dpragma-attribute-objc.m4 …st"))), apply_to = any(objc_interface, objc_protocol, objc_property, field, objc_method, variable))
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dexternally-retained.m79 …ext_ret.push(__attribute__((objc_externally_retained)), apply_to=any(function, block, objc_method))
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp9437 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local
9439 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()
9448 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local
9450 return objc_method->param_size(); in DeclGetFunctionNumArguments()
9464 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local
9467 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType()
9468 return GetType(objc_method->parameters()[idx]->getOriginalType()); in DeclGetFunctionArgumentType()
9680 if (ObjCMethodDecl *objc_method = in DeclContextIsClassMethod() local
9683 *is_instance_method_ptr = objc_method->isInstanceMethod(); in DeclContextIsClassMethod()
/llvm-project-15.0.7/clang/docs/
H A DLanguageExtensions.rst4400 - ``objc_method``: Can be used to apply attributes to Objective-C methods,
4404 - ``objc_method(is_instance)``: Can be used to apply attributes to Objective-C
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td504 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",