Searched refs:objc_method (Results 1 – 5 of 5) sorted by relevance
251 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl() local252 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()
966 ObjCLanguage::MethodName objc_method(attrs.name.GetStringRef(), true); in ParseSubroutine() local967 if (objc_method.IsValid(true)) { in ParseSubroutine()969 ConstString class_name(objc_method.GetClassName()); in ParseSubroutine()
231 ObjCLanguage::MethodName objc_method(method_name.GetCString(), false); in GetMethodNameVariants() local232 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()
9340 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local9342 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()9351 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local9353 return objc_method->param_size(); in DeclGetFunctionNumArguments()9367 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local9370 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() local9586 *is_instance_method_ptr = objc_method->isInstanceMethod(); in DeclContextIsClassMethod()
479 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",