HomeSort by: relevance | last modified time | path
    Searched defs:enumtype (Results 1 - 7 of 7) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
langhooks.cc 490 tree enumtype = lang_hooks.types.make_type (ENUMERAL_TYPE); local
491 tree enumdecl = build_decl (loc, TYPE_DECL, get_identifier (name), enumtype);
492 TYPE_STUB_DECL (enumtype) = enumdecl;
501 get_identifier (value->first), enumtype);
509 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (integer_type_node);
510 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (integer_type_node);
511 SET_TYPE_ALIGN (enumtype, TYPE_ALIGN (integer_type_node));
512 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
513 layout_type (enumtype);
516 return enumtype;
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
langhooks.cc 490 tree enumtype = lang_hooks.types.make_type (ENUMERAL_TYPE); local
491 tree enumdecl = build_decl (loc, TYPE_DECL, get_identifier (name), enumtype);
492 TYPE_STUB_DECL (enumtype) = enumdecl;
501 get_identifier (value->first), enumtype);
509 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (integer_type_node);
510 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (integer_type_node);
511 SET_TYPE_ALIGN (enumtype, TYPE_ALIGN (integer_type_node));
512 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
513 layout_type (enumtype);
516 return enumtype;
    [all...]
  /src/external/gpl2/texinfo/dist/makeinfo/
insertion.c 322 int enumtype;
340 enumstack[enumstack_offset].enumtype = current_enumtype;
355 current_enumtype = enumstack[enumstack_offset].enumtype;
321 int enumtype; member in struct:__anon9560
  /src/external/gpl3/gcc/dist/gcc/c/
c-decl.cc 9900 tree enumtype = NULL_TREE;
9908 enumtype = lookup_tag (ENUMERAL_TYPE, name, true, &enumloc);
9910 if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE)
9916 if (C_TYPE_BEING_DEFINED (enumtype)
9917 || (potential_nesting_p && TYPE_VALUES (enumtype) != NULL_TREE))
9922 if (flag_isoc23 && TYPE_VALUES (enumtype) != NULL_TREE)
9923 enumtype = NULL_TREE;
9926 if (enumtype == NULL_TREE || TREE_CODE (enumtype) != ENUMERAL_TYPE
9869 tree enumtype = NULL_TREE; local
10367 tree enumtype = start_enum (loc, &the_enum, get_identifier (name), local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-decl.cc 9135 tree enumtype = NULL_TREE;
9143 enumtype = lookup_tag (ENUMERAL_TYPE, name, true, &enumloc);
9145 if (enumtype == NULL_TREE || TREE_CODE (enumtype) != ENUMERAL_TYPE)
9147 enumtype = make_node (ENUMERAL_TYPE);
9148 pushtag (loc, name, enumtype);
9152 else if (TYPE_STUB_DECL (enumtype))
9154 enumloc = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (enumtype));
9155 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (enumtype)) = loc;
9158 if (C_TYPE_BEING_DEFINED (enumtype))
9104 tree enumtype = NULL_TREE; local
9438 tree enumtype = start_enum (loc, &the_enum, get_identifier (name)); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
decl.cc 16963 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
16980 start_enum (tree name, tree enumtype, tree underlying_type,
17001 if (!enumtype)
17002 enumtype = lookup_and_check_tag (enum_type, name,
17008 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
17013 tree decl = TYPE_NAME (enumtype);
17015 enumtype = error_mark_node;
17020 if (enumtype == error_mark_node)
17022 else if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
17621 tree enumtype = start_enum (get_identifier (name), NULL_TREE, NULL_TREE, local
17636 enumtype, NULL_TREE, loc); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
decl.cc 16232 if ENUMTYPE is not NULL_TREE then the type has alredy been found.
16249 start_enum (tree name, tree enumtype, tree underlying_type,
16270 if (!enumtype)
16271 enumtype = lookup_and_check_tag (enum_type, name,
16277 if (enumtype && TREE_CODE (enumtype) == ENUMERAL_TYPE)
16279 if (scoped_enum_p != SCOPED_ENUM_P (enumtype))
16282 "in enum %q#T", enumtype);
16283 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (enumtype)),
16285 enumtype = error_mark_node
16873 tree enumtype = start_enum (get_identifier (name), NULL_TREE, NULL_TREE, local
16888 enumtype, NULL_TREE, loc); local
    [all...]

Completed in 58 milliseconds