Lines Matching defs:values

27    line numbers.  For example, the CONST_DECLs for enum values.  */
2195 values we should copy from old to new. */
8969 so that we can warn about default return values, or explicit
8970 return values which do not match prescribed defaults. */
11492 This function can be used as a predicate. Positive values indicate
11493 a copy constructor and nonzero values indicate a copy assignment
12768 may be used to declare the individual values as they are read. */
12904 /* After processing and defining all the values of an enumeration type,
12911 tree values;
12924 /* For an enum defined in a template, just set the type of the values;
12930 for (values = TYPE_VALUES (enumtype);
12931 values;
12932 values = TREE_CHAIN (values))
12933 TREE_TYPE (TREE_VALUE (values)) = enumtype;
12937 /* Determine the minimum and maximum values of the enumerators. */
12942 for (values = TYPE_VALUES (enumtype);
12943 values;
12944 values = TREE_CHAIN (values))
12946 decl = TREE_VALUE (values);
12954 /* Update the minimum and maximum values, if appropriate. */
12958 /* Figure out what the minimum and maximum values of the
12977 /* Compute the number of bits require to represent all values of the
12993 can represent all the enumerator values defined in the
13022 IF no integral type can represent all the enumerator values, the
13024 error ("no integral type can represent all of the enumerator values "
13037 /* Compute the minimum and maximum values for the type.
13042 is the largest, the values of the enumeration are the values of the
13044 respectively, the smallest and largest values of the smallest bit-
13056 TYPE_MAX_VALUE to the values for the mode above and only restrict
13073 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
13077 decl = TREE_VALUE (values);
13082 already checked all of the enumerator values. */
13136 Assignment of sequential values by default is handled here. */
13245 error ("overflow in enumeration values at %qD", name);
13258 the enumerator values fits in the underlying type. If it
14176 FLAGS is a bitwise or of the following values:
14345 /* Structor return values (if any) are set by the compiler. */