| /netbsd/src/external/gpl3/gdb/dist/gdb/python/lib/gdb/ |
| D | types.py | 74 def make_enum_dict(enum_type): argument 87 if enum_type.code != gdb.TYPE_CODE_ENUM: 90 for field in enum_type.fields():
|
| D | printing.py | 253 def __init__(self, enum_type): argument 254 super(FlagEnumerationPrinter, self).__init__(enum_type)
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | read-md.h | 61 struct enum_type *parent_enum; 77 struct enum_type { struct 199 struct enum_type *lookup_enum_type (const char *name); 406 extern struct enum_type *lookup_enum_type (const char *);
|
| D | genenums.cc | 34 struct enum_type *def; in print_enum_type() 37 def = (struct enum_type *) *slot; in print_enum_type()
|
| D | genconstants.cc | 54 struct enum_type *def; in print_enum_type() 58 def = (struct enum_type *) *slot; in print_enum_type()
|
| D | read-md.cc | 815 struct enum_type *parent_enum) in add_constant() 907 struct enum_type *def; in handle_enum() 916 def = (struct enum_type *) *slot; in handle_enum() 923 def = XNEW (struct enum_type); in handle_enum() 980 struct enum_type * 983 return (struct enum_type *) htab_find (m_enum_types, &name); in lookup_enum_type()
|
| D | opt-functions.awk | 242 return enum_type[en] " " 268 return enum_type[en] " "
|
| D | opt-read.awk | 89 enum_type[name] = type
|
| D | langhooks.cc | 867 lhd_enum_underlying_base_type (const_tree enum_type) in lhd_enum_underlying_base_type() argument 869 return lang_hooks.types.type_for_size (TYPE_PRECISION (enum_type), in lhd_enum_underlying_base_type() 870 TYPE_UNSIGNED (enum_type)); in lhd_enum_underlying_base_type()
|
| D | optc-gen.awk | 178 type = enum_type[name] 217 print " sizeof (" enum_type[name] "),"
|
| D | genattrtab.cc | 3064 struct enum_type *et; in gen_attr()
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | amdgpu-tdep.c | 375 (amd_dbgapi_register_type_enum &enum_type, std::string_view fields) in parse_amd_dbgapi_register_type_enum_fields() argument 401 enum_type.set_bit_size (64); in parse_amd_dbgapi_register_type_enum_fields() 403 enum_type.add_enumerator (std::string (name), value); in parse_amd_dbgapi_register_type_enum_fields() 648 amd_dbgapi_register_type_enum_up enum_type in parse_amd_dbgapi_register_type() 653 (*enum_type, fields_without_braces); in parse_amd_dbgapi_register_type() 656 = type_map.emplace (enum_type->lookup_name (), in parse_amd_dbgapi_register_type() 657 std::move (enum_type)); in parse_amd_dbgapi_register_type() 751 const auto &enum_type in amd_dbgapi_register_type_to_gdb_type() local 756 .new_type (TYPE_CODE_ENUM, enum_type.bit_size (), in amd_dbgapi_register_type_to_gdb_type() 757 enum_type.name ().c_str ())); in amd_dbgapi_register_type_to_gdb_type() [all …]
|
| D | ChangeLog-1991 | 354 * dwarfread.c (enum_type, struct_type): Fixes for opaque and 376 * dwarfread.c (enum_type): Build a correct TYPE_NAME, add a 430 * dwarfread (enum_type): Arrange for the order of enumeration 514 * dwarfread.c (enum_type, struct_type): Expand recognized 650 * dwarfread.c (enum_type, struct_type): Ignore names invented by
|
| D | ChangeLog-1992 | 115 * dwarfread.c (enum_type, symthesize_typedef): Initialize language 3420 * dwarfread.c (enum_type): Save enum names on type_obstack. 3491 * dwarfread.c (enum_type): Fix misspelling in comment.
|
| D | ChangeLog-1995 | 938 * dwarfread.c (enum_type): Determine signedness of enum type
|
| /netbsd/src/external/gpl3/binutils/dist/binutils/ |
| D | debug.h | 205 bool (*enum_type) member
|
| D | debug.c | 2558 return (*fns->enum_type) (fhandle, tag, (const char **) NULL, in debug_write_type() 2560 return (*fns->enum_type) (fhandle, tag, type->u.kenum->names, in debug_write_type()
|
| D | ChangeLog-9197 | 1722 enum_type, start_struct_type, and start_class_type. 1724 start_struct_type, debug_write_class_type, and enum_type. If
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/sh/ |
| D | sh.h | 343 enum enum_type enum 357 enum_type type;
|
| D | sh.cc | 725 ret.type = (sh_atomic_model::enum_type)i; in parse_validate_atomic_model_option()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | decl.cc | 4061 ti.enum_p = tag_type == enum_type; in build_typename_type() 15571 case enum_type: in tag_name() 15641 && tag_code != enum_type in check_elaborated_type_specifier() 15649 && tag_code == enum_type) in check_elaborated_type_specifier() 15816 case enum_type: in xref_tag() 16246 enumtype = lookup_and_check_tag (enum_type, name, in start_enum() 16331 enumtype = xref_tag (enum_type, name); in start_enum()
|
| D | parser.cc | 20306 tag_type = enum_type; in cp_parser_elaborated_type_specifier() 20379 if (tag_type != enum_type) in cp_parser_elaborated_type_specifier() 20644 else if (tag_type != enum_type in cp_parser_elaborated_type_specifier() 20664 if (tag_type == enum_type) in cp_parser_elaborated_type_specifier() 20787 enum_type, in cp_parser_enum_specifier()
|
| D | cp-tree.h | 5437 enum_type, /* "enum" types. */ enumerator
|
| D | pt.cc | 17012 tree enum_type; in tsubst_copy() local 17033 enum_type in tsubst_copy() 17037 for (v = TYPE_VALUES (enum_type); in tsubst_copy()
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/doc/ |
| D | python.texi | 8282 @item make_enum_dict (@var{enum_type}) 8283 Return a Python @code{dictionary} type produced from @var{enum_type}.
|