Home
last modified time | relevance | path

Searched refs:super_class (Results 1 – 16 of 16) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libobjc/
Dclass.c537 objc_allocateClassPair (Class super_class, const char *class_name, size_t extraBytes) in objc_allocateClassPair() argument
548 if (super_class) in objc_allocateClassPair()
554 if (CLS_IS_IN_CONSTRUCTION (super_class)) in objc_allocateClassPair()
574 if (super_class) in objc_allocateClassPair()
579 const char *super_class_name = class_getName (super_class); in objc_allocateClassPair()
580 new_class->super_class = (void *)super_class_name; in objc_allocateClassPair()
581 new_meta_class->super_class = (void *)super_class_name; in objc_allocateClassPair()
585 new_class->super_class = (void *)0; in objc_allocateClassPair()
586 new_meta_class->super_class = (void *)0; in objc_allocateClassPair()
599 if (super_class) in objc_allocateClassPair()
[all …]
Dsendmsg.c460 return get_imp (super->super_class, sel); in objc_msg_lookup_super()
505 if (class->super_class) in __objc_send_initialize()
506 __objc_send_initialize (class->super_class); in __objc_send_initialize()
781 for (class = cls; ((! method) && class); class = class->super_class) in search_for_method_in_hierarchy()
989 if (cls->super_class in __objc_install_dtable_for_class()
990 && cls->super_class->dtable == __objc_uninstalled_dtable in __objc_install_dtable_for_class()
991 && !__objc_prepared_dtable_for_class (cls->super_class)) in __objc_install_dtable_for_class()
993 __objc_install_dtable_for_class (cls->super_class); in __objc_install_dtable_for_class()
1076 assert (cls != cls->super_class); in __objc_prepare_dtable_for_class()
1077 if (cls->super_class) in __objc_prepare_dtable_for_class()
[all …]
Dinit.c176 return class->super_class; in class_superclass_of_class()
181 super_class_name = (char *)class->super_class; in class_superclass_of_class()
638 const char *superclass = (char *) class->super_class; in __objc_exec_class()
786 while (objc_getClass ((char *) class->super_class)) in objc_send_load()
Dgc.c259 __objc_class_structure_encoding (class->super_class, type, size, current); in __objc_class_structure_encoding()
443 class_ivar_set_gcinvisible (class->super_class, ivarname, gc_invisible); in class_ivar_set_gcinvisible()
Divars.c245 if (class_getInstanceVariable (objc_getClass ((char *)(class_->super_class)), in class_addIvar()
Dselector.c162 if (class->super_class) in __objc_register_instance_methods_to_class()
DChangeLog1107 (objc_msg_lookup_super): Use super->super_class instead of
1122 define Super and Super_t, and always use 'super_class' for the
2956 be named 'super_class' #ifdef __cplusplus.
/netbsd/src/external/gpl3/gcc/dist/libobjc/objc/
Dmessage.h98 Class super_class; /* The superclass of the receiver. */ member
Druntime.h588 objc_allocateClassPair (Class super_class, const char *class_name,
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dregrename.cc373 find_rename_reg (du_head_p this_head, enum reg_class super_class, in find_rename_reg() argument
387 = (enum reg_class) targetm.preferred_rename_class (super_class); in find_rename_reg()
457 reg_class super_class = NO_REGS; in regrename_find_superclass() local
464 super_class in regrename_find_superclass()
465 = reg_class_superunion[(int) super_class][(int) tmp->cl]; in regrename_find_superclass()
468 return super_class; in regrename_find_superclass()
509 reg_class super_class = regrename_find_superclass (this_head, &n_uses, in rename_chains() local
514 best_new_reg = find_rename_reg (this_head, super_class, in rename_chains()
DChangeLog-200442763 'struct _objc_super' shall be named 'super_class' #ifdef OBJCPLUS.
/netbsd/src/external/gpl3/gcc/dist/gcc/objc/
Dobjc-next-runtime-abi-01.cc959 tree super_class; in next_runtime_abi_01_get_category_super_ref() local
963 super_class = objc_get_class_reference (super_name); in next_runtime_abi_01_get_category_super_ref()
971 super_class = in next_runtime_abi_01_get_category_super_ref()
975 super_class), in next_runtime_abi_01_get_category_super_ref()
977 return super_class; in next_runtime_abi_01_get_category_super_ref()
982 super_class = (inst_meth ? objc_get_class_decl : objc_get_meta_class_decl); in next_runtime_abi_01_get_category_super_ref()
987 super_class, in next_runtime_abi_01_get_category_super_ref()
Dobjc-act.cc577 objc_start_class_interface (tree klass, location_t name_loc, tree super_class, in objc_start_class_interface() argument
585 = start_class (CLASS_INTERFACE_TYPE, klass, super_class, protos, attributes); in objc_start_class_interface()
658 objc_start_class_implementation (tree klass, tree super_class) in objc_start_class_implementation() argument
662 = start_class (CLASS_IMPLEMENTATION_TYPE, klass, super_class, NULL_TREE, in objc_start_class_implementation()
6914 tree super_class = in check_protocol() local
6923 if (!super_class || !conforms_to_protocol (super_class, sub)) in check_protocol()
9035 tree super_class; in get_super_receiver() local
9045 super_class = (*runtime.get_category_super_ref) (input_location, in get_super_receiver()
9048 TREE_TYPE (super_expr), super_class); in get_super_receiver()
Dobjc-gnu-runtime-abi-01.cc849 tree super_class; in gnu_runtime_abi_01_get_category_super_ref() local
852 super_class = (inst_meth ? objc_get_class_decl : objc_get_meta_class_decl); in gnu_runtime_abi_01_get_category_super_ref()
857 super_class, in gnu_runtime_abi_01_get_category_super_ref()
DChangeLog4157 get_current_scope(); reference 'super_class' field (instead of
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dobjc-lang.c57 CORE_ADDR super_class; member
1388 theclass->super_class = read_memory_unsigned_integer (addr + 4, 4, byte_order); in read_objc_class()
1442 subclass = class_str.super_class; in find_implementation_from_class()