Home
last modified time | relevance | path

Searched refs:declspecs (Results 1 – 12 of 12) sorted by relevance

/freebsd-10-stable/usr.bin/xlint/lint1/
Dcgram.y326 | declspecs deftyp T_SEMI {
335 | declspecs deftyp type_init_decls T_SEMI
377 | declspecs deftyp type_decl {
405 | declspecs deftyp T_SEMI {
416 | declspecs deftyp type_init_decls T_SEMI {
425 | declspecs error
439 | declspecs deftyp T_SEMI {
448 | declspecs deftyp type_init_decls T_SEMI
464 declspecs:
471 | declspecs declmod
[all …]
/freebsd-10-stable/contrib/gcc/
Dc-decl.c2941 shadow_tag (const struct c_declspecs *declspecs) in shadow_tag() argument
2943 shadow_tag_warned (declspecs, 0); in shadow_tag()
2949 shadow_tag_warned (const struct c_declspecs *declspecs, int warned) in shadow_tag_warned() argument
2953 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p) in shadow_tag_warned()
2955 tree value = declspecs->type; in shadow_tag_warned()
2976 else if (!declspecs->tag_defined_p in shadow_tag_warned()
2977 && declspecs->storage_class != csc_none) in shadow_tag_warned()
2985 else if (!declspecs->tag_defined_p in shadow_tag_warned()
2986 && (declspecs->const_p in shadow_tag_warned()
2987 || declspecs->volatile_p in shadow_tag_warned()
[all …]
DChangeLog-199810607 * c-decl.c (shadow_tag_warned): Use specs not declspecs in for loop.
DChangeLog-200414247 declspecs_nosc_ts, declspecs_nosc_nots, declspecs_nosc, declspecs,
14255 (fndef): Use current_declspecs for empty declspecs list.
DChangeLog-200123394 declspecs_nosc_ts, declspecs_nosc_nots, declspecs_nosc, declspecs,
/freebsd-10-stable/contrib/gcc/cp/
Ddecl.c3662 check_tag_decl (cp_decl_specifier_seq *declspecs) in check_tag_decl() argument
3664 int saw_friend = declspecs->specs[(int)ds_friend] != 0; in check_tag_decl()
3665 int saw_typedef = declspecs->specs[(int)ds_typedef] != 0; in check_tag_decl()
3673 if (declspecs->multiple_types_p) in check_tag_decl()
3675 else if (declspecs->redefined_builtin_type) in check_tag_decl()
3679 declspecs->redefined_builtin_type); in check_tag_decl()
3683 if (declspecs->type in check_tag_decl()
3684 && TYPE_P (declspecs->type) in check_tag_decl()
3685 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE in check_tag_decl()
3686 && IS_AGGR_TYPE (declspecs->type)) in check_tag_decl()
[all …]
Ddecl2.c758 cp_decl_specifier_seq *declspecs, in grokfield() argument
773 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist); in grokfield()
933 cp_decl_specifier_seq *declspecs, tree width) in grokbitfield() argument
935 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, NULL); in grokbitfield()
Dparser.c2499 cp_decl_specifier_seq declspecs; in objc_cp_parse_property_decl() local
2503 &declspecs, in objc_cp_parse_property_decl()
2513 property = grokdeclarator (declarator, &declspecs, NORMAL,0, NULL); in objc_cp_parse_property_decl()
18274 cp_decl_specifier_seq declspecs; in cp_parser_objc_class_ivars() local
18285 &declspecs, in cp_parser_objc_class_ivars()
18287 prefix_attributes = declspecs.attributes; in cp_parser_objc_class_ivars()
18288 declspecs.attributes = NULL_TREE; in cp_parser_objc_class_ivars()
18341 decl = grokbitfield (declarator, &declspecs, width); in cp_parser_objc_class_ivars()
18345 decl = grokfield (declarator, &declspecs, in cp_parser_objc_class_ivars()
DChangeLog-19941445 * decl.c (grokdeclarator): Undo changes to declspecs when we're done
2992 * parse.y (components): Anonymous bitfields can still have declspecs.
3517 to get declspecs from some arbitrary $0.
4363 the declspecs on class_obstack, so don't. This way typed_typespecs
DChangeLog-19951009 * parse.y (reserved_declspecs): Link prefix attributes with declspecs.
1012 split_specs_attrs or strip_attrs to separate declspecs and attrs.
DChangeLog-19962423 declspecs.
DChangeLog-20043689 * decl.c (grokvardecl): Make declspecs parameter const.