| /src/external/mpl/bind/ |
| binclude4netbsd | 33 for i in enumclass.h enumtype.h rdatastruct.h
|
| /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/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| callfuncs.c | 149 enum enumtype { enumval1, enumval2, enumval3 }; 150 enum enumtype enum_val1 = enumval1; 151 enum enumtype enum_val2 = enumval2; 152 enum enumtype enum_val3 = enumval3; 155 int t_enum_value1 (enum enumtype enum_arg) 157 int t_enum_value1 (enum_arg) enum enumtype enum_arg; 164 int t_enum_value2 (enum enumtype enum_arg) 166 int t_enum_value2 (enum_arg) enum enumtype enum_arg; 173 int t_enum_value3 (enum enumtype enum_arg) 175 int t_enum_value3 (enum_arg) enum enumtype enum_arg [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| callfuncs.c | 149 enum enumtype { enumval1, enumval2, enumval3 }; 150 enum enumtype enum_val1 = enumval1; 151 enum enumtype enum_val2 = enumval2; 152 enum enumtype enum_val3 = enumval3; 155 int t_enum_value1 (enum enumtype enum_arg) 157 int t_enum_value1 (enum_arg) enum enumtype enum_arg; 164 int t_enum_value2 (enum enumtype enum_arg) 166 int t_enum_value2 (enum_arg) enum enumtype enum_arg; 173 int t_enum_value3 (enum enumtype enum_arg) 175 int t_enum_value3 (enum_arg) enum enumtype enum_arg [all...] |
| /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/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...] |
| name-lookup.cc | 2307 /* Append all of the enum values of ENUMTYPE to MEMBER_VEC. 2311 member_vec_append_enum_values (vec<tree, va_gc> *member_vec, tree enumtype) 2313 for (tree values = TYPE_VALUES (enumtype); 2468 /* Insert lately defined enum ENUMTYPE into KLASS for the sorted case. */ 2471 insert_late_enum_def_bindings (tree klass, tree enumtype) 2481 n_fields = list_length (TYPE_VALUES (enumtype)); 2487 member_vec_append_enum_values (member_vec, enumtype);
|
| /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...] |
| name-lookup.cc | 2172 /* Append all of the enum values of ENUMTYPE to MEMBER_VEC. 2176 member_vec_append_enum_values (vec<tree, va_gc> *member_vec, tree enumtype) 2178 for (tree values = TYPE_VALUES (enumtype); 2318 /* Insert lately defined enum ENUMTYPE into KLASS for the sorted case. */ 2321 insert_late_enum_def_bindings (tree klass, tree enumtype) 2331 n_fields = list_length (TYPE_VALUES (enumtype)); 2337 member_vec_append_enum_values (member_vec, enumtype);
|
| /src/external/apache2/llvm/dist/clang/docs/tools/ |
| dump_format_style.py | 81 def __init__(self, name, enumtype, comment, values): 85 self.type = enumtype
|
| /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/share/misc/ |
| style | 237 enum enumtype {
|
| /src/external/mpl/bind/dist/lib/isccfg/include/isccfg/ |
| grammar.h | 453 cfg_parse_enum_or_other(cfg_parser_t *pctx, const cfg_type_t *enumtype, 457 cfg_doc_enum_or_other(cfg_printer_t *pctx, const cfg_type_t *enumtype,
|
| /src/external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/ |
| grammar.h | 474 cfg_parse_enum_or_other(cfg_parser_t *pctx, const cfg_type_t *enumtype, 478 cfg_doc_enum_or_other(cfg_printer_t *pctx, const cfg_type_t *enumtype,
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| types.h | 231 #include <dns/enumtype.h> /* Provides dns_rdatatype_t. */
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| types.h | 268 #include <dns/enumtype.h> /* Provides dns_rdatatype_t. */
|
| /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/mpl/bind/dist/bin/plugins/ |
| filter-a.c | 36 #include <dns/enumtype.h>
|
| filter-aaaa.c | 36 #include <dns/enumtype.h>
|
| /src/external/mpl/bind/dist/lib/isccfg/ |
| parser.c | 1453 cfg_parse_enum_or_other(cfg_parser_t *pctx, const cfg_type_t *enumtype, 1458 cfg_is_enum(TOKEN_STRING(pctx), enumtype->of)) 1460 CHECK(cfg_parse_enum(pctx, enumtype, ret)); 1469 cfg_doc_enum_or_other(cfg_printer_t *pctx, const cfg_type_t *enumtype, 1475 * If othertype is cfg_type_void, it means that enumtype is 1483 for (p = enumtype->of; *p != NULL; p++) {
|
| /src/external/mpl/dhcp/bind/dist/lib/isccfg/ |
| parser.c | 1657 cfg_parse_enum_or_other(cfg_parser_t *pctx, const cfg_type_t *enumtype, 1662 cfg_is_enum(TOKEN_STRING(pctx), enumtype->of)) 1664 CHECK(cfg_parse_enum(pctx, enumtype, ret)); 1673 cfg_doc_enum_or_other(cfg_printer_t *pctx, const cfg_type_t *enumtype, 1679 * If othertype is cfg_type_void, it means that enumtype is 1687 for (p = enumtype->of; *p != NULL; p++) {
|
| /src/external/gpl3/gcc/dist/gcc/config/arm/ |
| arm-mve-builtins.cc | 597 enum type ENUMTYPE. ARGNO counts from zero. */ 600 HOST_WIDE_INT actual, tree enumtype) 603 " a valid %qT value", actual, argno + 1, fndecl, enumtype);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/ |
| aarch64-sve-builtins.cc | 769 enum type ENUMTYPE. ARGNO counts from zero. */ 772 HOST_WIDE_INT actual, tree enumtype) 775 " a valid %qT value", actual, argno + 1, fndecl, enumtype);
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| rdata.c | 35 #include <dns/enumtype.h>
|