Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp255 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl() local
256 if (objc_method.IsValid(true)) { in IndexUnitImpl()
258 objc_method.GetClassNameWithCategory()); in IndexUnitImpl()
259 ConstString objc_selector_name(objc_method.GetSelector()); in IndexUnitImpl()
261 objc_method.GetFullNameWithoutCategory(true)); in IndexUnitImpl()
262 ConstString objc_class_name_no_category(objc_method.GetClassName()); in IndexUnitImpl()
292 if (!is_method && !mangled_cstr && !objc_method.IsValid(true)) in IndexUnitImpl()
H A DDWARFASTParserClang.cpp1327 ObjCLanguage::MethodName objc_method(type_name_cstr, true); in ParseTypeFromDWARF() local
1328 if (objc_method.IsValid(true)) { in ParseTypeFromDWARF()
1330 ConstString class_name(objc_method.GetClassName()); in ParseTypeFromDWARF()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp223 ObjCLanguage::MethodName objc_method(name.GetCString(), false); in AddNameLookup() local
224 if (objc_method.IsValid(false)) { in AddNameLookup()
226 objc_method.GetFullNames(objc_names, true); in AddNameLookup()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp345 ObjCLanguage::MethodName objc_method(entry.cstring.GetStringRef(), true); in InitNameIndexes() local
346 if (objc_method.IsValid(true)) { in InitNameIndexes()
347 entry.cstring = objc_method.GetSelector(); in InitNameIndexes()
351 objc_method.GetFullNameWithoutCategory(true)); in InitNameIndexes()
H A DClangASTContext.cpp9967 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionReturnType() local
9969 return CompilerType(this, objc_method->getReturnType().getAsOpaquePtr()); in DeclGetFunctionReturnType()
9978 if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionNumArguments() local
9980 return objc_method->param_size(); in DeclGetFunctionNumArguments()
9994 } else if (clang::ObjCMethodDecl *objc_method = in DeclGetFunctionArgumentType() local
9997 if (idx < objc_method->param_size()) in DeclGetFunctionArgumentType()
10000 objc_method->parameters()[idx]->getOriginalType().getAsOpaquePtr()); in DeclGetFunctionArgumentType()
10222 if (ObjCMethodDecl *objc_method = in DeclContextIsClassMethod() local
10225 *is_instance_method_ptr = objc_method->isInstanceMethod(); in DeclContextIsClassMethod()
/freebsd-12.1/contrib/gdb/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()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttr.td418 def SubjectMatcherForObjCMethod : AttrSubjectMatcherRule<"objc_method",