HomeSort by: relevance | last modified time | path
    Searched defs:enum_type (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/
types-module.cc 18 enum enum_type { A, B, C }; enum
29 enum_type derived_member;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/
types-module.cc 18 enum enum_type { A, B, C }; enum
29 enum_type derived_member;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile.c 22 enum enum_type { enum
41 enum enum_type enumfield;
compile-cplus.c 25 enum enum_type { enum
44 enum enum_type enumfield;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile.c 22 enum enum_type { enum
41 enum enum_type enumfield;
compile-cplus.c 25 enum enum_type { enum
44 enum enum_type enumfield;
  /src/external/gpl3/gcc/dist/gcc/
read-md.h 61 struct enum_type *parent_enum;
64 /* This structure represents one value in an enum_type. */
77 struct enum_type { struct
199 struct enum_type *lookup_enum_type (const char *name);
303 /* A table of enum_type structures, hashed by name. */
406 extern struct enum_type *lookup_enum_type (const char *);
  /src/external/gpl3/gcc.old/dist/gcc/
read-md.h 61 struct enum_type *parent_enum;
64 /* This structure represents one value in an enum_type. */
77 struct enum_type { struct
199 struct enum_type *lookup_enum_type (const char *name);
303 /* A table of enum_type structures, hashed by name. */
406 extern struct enum_type *lookup_enum_type (const char *);
  /src/external/gpl3/binutils/dist/binutils/
debug.h 205 bool (*enum_type) member in struct:debug_write_fns
372 was also passed when enum_type, start_struct_type, or
  /src/external/gpl3/binutils.old/dist/binutils/
debug.h 205 bool (*enum_type) member in struct:debug_write_fns
372 was also passed when enum_type, start_struct_type, or
  /src/external/gpl3/gcc/dist/libcc1/
libcc1plugin.cc 483 tree enum_type = convert_in (enum_type_in);
485 gcc_assert (TREE_CODE (enum_type) == ENUMERAL_TYPE);
487 cst = build_int_cst (enum_type, value);
491 get_identifier (name), enum_type);
495 cons = tree_cons (DECL_NAME (decl), cst, TYPE_VALUES (enum_type));
496 TYPE_VALUES (enum_type) = cons;
505 tree enum_type = convert_in (enum_type_in);
508 iter = TYPE_VALUES (enum_type);
520 TYPE_MIN_VALUE (enum_type) = minnode;
521 TYPE_MAX_VALUE (enum_type) = maxnode
479 tree enum_type = convert_in (enum_type_in); local
501 tree enum_type = convert_in (enum_type_in); local
    [all...]
libcp1plugin.cc 1806 tree enum_type = convert_in (enum_type_in); local
1808 gcc_assert (TREE_CODE (enum_type) == ENUMERAL_TYPE);
1810 build_enumerator (get_identifier (name), build_int_cst (enum_type, value),
1811 enum_type, NULL_TREE, BUILTINS_LOCATION);
1813 return convert_out (TREE_VALUE (TYPE_VALUES (enum_type)));
1820 tree enum_type = convert_in (enum_type_in);
1822 finish_enum_value_list (enum_type);
1823 finish_enum (enum_type);
1801 tree enum_type = convert_in (enum_type_in); local
1815 tree enum_type = convert_in (enum_type_in); local
  /src/external/gpl3/gcc.old/dist/libcc1/
libcc1plugin.cc 472 tree enum_type = convert_in (enum_type_in);
474 gcc_assert (TREE_CODE (enum_type) == ENUMERAL_TYPE);
476 cst = build_int_cst (enum_type, value);
480 get_identifier (name), enum_type);
484 cons = tree_cons (DECL_NAME (decl), cst, TYPE_VALUES (enum_type));
485 TYPE_VALUES (enum_type) = cons;
494 tree enum_type = convert_in (enum_type_in);
497 iter = TYPE_VALUES (enum_type);
509 TYPE_MIN_VALUE (enum_type) = minnode;
510 TYPE_MAX_VALUE (enum_type) = maxnode
468 tree enum_type = convert_in (enum_type_in); local
490 tree enum_type = convert_in (enum_type_in); local
    [all...]
libcp1plugin.cc 1805 tree enum_type = convert_in (enum_type_in); local
1807 gcc_assert (TREE_CODE (enum_type) == ENUMERAL_TYPE);
1809 build_enumerator (get_identifier (name), build_int_cst (enum_type, value),
1810 enum_type, NULL_TREE, BUILTINS_LOCATION);
1812 return convert_out (TREE_VALUE (TYPE_VALUES (enum_type)));
1819 tree enum_type = convert_in (enum_type_in);
1821 finish_enum_value_list (enum_type);
1822 finish_enum (enum_type);
1800 tree enum_type = convert_in (enum_type_in); local
1814 tree enum_type = convert_in (enum_type_in); local
  /src/external/mit/isl/dist/interface/
generator.cc 228 const EnumType *enum_type = return_type->getAs<EnumType>(); local
229 EnumDecl *decl = enum_type->getDecl();
283 const EnumType *enum_type; local
296 enum_type = param->getType()->getAs<EnumType>();
297 if (!enum_type)
299 decl = enum_type->getDecl();
  /src/external/gpl3/gdb/dist/gdb/
amdgpu-tdep.c 373 (amd_dbgapi_register_type_enum &enum_type, std::string_view fields)
399 enum_type.set_bit_size (64);
401 enum_type.add_enumerator (std::string (name), value);
646 amd_dbgapi_register_type_enum_up enum_type
651 (*enum_type, fields_without_braces);
654 = type_map.emplace (enum_type->lookup_name (),
655 std::move (enum_type));
749 const auto &enum_type local
754 .new_type (TYPE_CODE_ENUM, enum_type.bit_size (),
755 enum_type.name ().c_str ()))
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
amdgpu-tdep.c 375 (amd_dbgapi_register_type_enum &enum_type, std::string_view fields)
401 enum_type.set_bit_size (64);
403 enum_type.add_enumerator (std::string (name), value);
648 amd_dbgapi_register_type_enum_up enum_type
653 (*enum_type, fields_without_braces);
656 = type_map.emplace (enum_type->lookup_name (),
657 std::move (enum_type));
751 const auto &enum_type local
756 .new_type (TYPE_CODE_ENUM, enum_type.bit_size (),
757 enum_type.name ().c_str ()))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-tree.h 579 tree enum_type; member in struct:c_enum_contents
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 1702 def enum_type(self): member in class:Cursor
1723 underlying_type = underlying_type.get_declaration().enum_type
  /src/external/gpl3/gcc/dist/gcc/config/sh/
sh.h 344 enum enum_type
358 enum_type type;
343 enum enum_type enum in struct:sh_atomic_model
  /src/external/gpl3/gcc.old/dist/gcc/config/sh/
sh.h 344 enum enum_type
358 enum_type type;
343 enum enum_type enum in struct:sh_atomic_model
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
read.c 6026 struct type *enum_type = disr_field->type ();
6028 for (int i = 0; i < enum_type->num_fields (); ++i)
6030 if (enum_type->field (i).loc_kind () == FIELD_LOC_KIND_ENUMVAL)
6033 = rust_last_path_segment (enum_type->field (i).name ());
6034 discriminant_map[name] = enum_type->field (i).loc_enumval ();
6019 struct type *enum_type = disr_field->type (); local
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
read.c 5944 struct type *enum_type = disr_field->type ();
5946 for (int i = 0; i < enum_type->num_fields (); ++i)
5948 if (enum_type->field (i).loc_kind () == FIELD_LOC_KIND_ENUMVAL)
5951 = rust_last_path_segment (enum_type->field (i).name ());
5952 discriminant_map[name] = enum_type->field (i).loc_enumval ();
5937 struct type *enum_type = disr_field->type (); local
  /src/external/gpl3/gcc/dist/gcc/cp/
cp-tree.h 5581 enum_type, /* "enum" types. */
5572 enum_type, \/* "enum" types. *\/ enumerator in enum:tag_types
pt.cc 16919 : TYPENAME_IS_ENUM_P (t) ? enum_type
21614 tree enum_type;
21632 enum_type
21636 for (v = TYPE_VALUES (enum_type);
21613 tree enum_type; local

Completed in 103 milliseconds

1 2