Searched refs:objc_method (Results 1 – 5 of 5) sorted by relevance
290 std::optional<const ObjCLanguage::MethodName> objc_method = in IndexUnitImpl() local292 if (objc_method) { in IndexUnitImpl()295 objc_method->GetClassNameWithCategory()); in IndexUnitImpl()296 ConstString objc_selector_name(objc_method->GetSelector()); in IndexUnitImpl()298 objc_method->GetFullNameWithoutCategory().c_str()); in IndexUnitImpl()299 ConstString class_name_no_category(objc_method->GetClassName()); in IndexUnitImpl()
1034 std::optional<const ObjCLanguage::MethodName> objc_method = in ParseSubroutine() local1036 if (objc_method) { in ParseSubroutine()1038 ConstString class_name(objc_method->GetClassName()); in ParseSubroutine()
182 std::optional<const ObjCLanguage::MethodName> objc_method = in GetMethodNameVariants() local184 if (!objc_method) in GetMethodNameVariants()187 variant_names.emplace_back(ConstString(objc_method->GetSelector()), in GetMethodNameVariants()191 objc_method->GetFullNameWithoutCategory(); in GetMethodNameVariants()193 if (objc_method->IsClassMethod() || objc_method->IsInstanceMethod()) { in GetMethodNameVariants()200 strm.Printf("+%s", objc_method->GetFullName().c_str()); in GetMethodNameVariants()205 strm.Printf("-%s", objc_method->GetFullName().c_str()); in GetMethodNameVariants()
8979 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local8981 return GetType(objc_method->getReturnType()); in DeclGetFunctionReturnType()8990 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local8992 return objc_method->param_size(); in DeclGetFunctionNumArguments()9066 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local9069 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType()9070 return GetType(objc_method->parameters()[idx]->getOriginalType()); in DeclGetFunctionArgumentType()
567 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",