Searched refs:objc_method (Results 1 – 7 of 7) sorted by relevance
279 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl() local280 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()
981 ObjCLanguage::MethodName objc_method(attrs.name.GetStringRef(), true); in ParseSubroutine() local982 if (objc_method.IsValid(true)) { in ParseSubroutine()984 ConstString class_name(objc_method.GetClassName()); in ParseSubroutine()
219 ObjCLanguage::MethodName objc_method(method_name.GetCString(), false); in GetMethodNameVariants() local220 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()
73 struct objc_method { struct1731 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()
9519 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local9521 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()9530 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local9532 return objc_method->param_size(); in DeclGetFunctionNumArguments()9546 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local9549 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() local9765 *is_instance_method_ptr = objc_method->isInstanceMethod(); in DeclContextIsClassMethod()
4531 - ``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
517 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",