Home
last modified time | relevance | path

Searched refs:cpp_ttype (Results 1 – 25 of 58) sorted by relevance

123

/netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/
H A Dcpplib.h153 enum cpp_ttype enum
248 ENUM_BITFIELD(cpp_ttype) type : CHAR_BIT; /* token type */
1057 cpp_string *, enum cpp_ttype);
1063 enum cpp_ttype type);
1066 cpp_string *, enum cpp_ttype);
1228 extern const char *cpp_type2name (enum cpp_ttype, unsigned char flags);
1312 extern enum cpp_ttype cpp_userdef_string_remove_type
1313 (enum cpp_ttype type);
1314 extern enum cpp_ttype cpp_userdef_string_add_type
1315 (enum cpp_ttype type);
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-parser.h55 ENUM_BITFIELD (cpp_ttype) type : 8;
138 extern bool c_parser_require (c_parser *parser, enum cpp_ttype type,
144 extern void c_parser_skip_until_found (c_parser *parser, enum cpp_ttype type,
165 c_parser_next_token_is (c_parser *parser, enum cpp_ttype type) in c_parser_next_token_is()
174 c_parser_next_token_is_not (c_parser *parser, enum cpp_ttype type) in c_parser_next_token_is_not()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-parser.h55 ENUM_BITFIELD (cpp_ttype) type : 8;
138 extern bool c_parser_require (c_parser *parser, enum cpp_ttype type,
144 extern void c_parser_skip_until_found (c_parser *parser, enum cpp_ttype type,
165 c_parser_next_token_is (c_parser *parser, enum cpp_ttype type) in c_parser_next_token_is()
174 c_parser_next_token_is_not (c_parser *parser, enum cpp_ttype type) in c_parser_next_token_is_not()
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/
H A Dcpplib.h153 enum cpp_ttype enum
251 ENUM_BITFIELD(cpp_ttype) type : CHAR_BIT; /* token type */
1162 cpp_string *, enum cpp_ttype);
1168 enum cpp_ttype type);
1171 cpp_string *, enum cpp_ttype);
1349 extern const char *cpp_type2name (enum cpp_ttype, unsigned char flags);
1461 extern enum cpp_ttype cpp_userdef_string_remove_type
1462 (enum cpp_ttype type);
1463 extern enum cpp_ttype cpp_userdef_string_add_type
1464 (enum cpp_ttype type);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dexpr.cc34 enum cpp_ttype op;
45 static cpp_num num_unary_op (cpp_reader *, cpp_num, enum cpp_ttype);
46 static cpp_num num_binary_op (cpp_reader *, cpp_num, cpp_num, enum cpp_ttype);
48 static cpp_num num_bitwise_op (cpp_reader *, cpp_num, cpp_num, enum cpp_ttype);
50 enum cpp_ttype);
52 enum cpp_ttype);
54 static cpp_num num_div_op (cpp_reader *, cpp_num, cpp_num, enum cpp_ttype,
62 static struct op *reduce (cpp_reader *, struct op *, enum cpp_ttype);
68 #define CPP_UPLUS ((enum cpp_ttype) (CPP_LAST_CPP_OP + 1))
69 #define CPP_UMINUS ((enum cpp_ttype) (CPP_LAST_CPP_OP + 2))
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dexpr.c34 enum cpp_ttype op;
45 static cpp_num num_unary_op (cpp_reader *, cpp_num, enum cpp_ttype);
46 static cpp_num num_binary_op (cpp_reader *, cpp_num, cpp_num, enum cpp_ttype);
48 static cpp_num num_bitwise_op (cpp_reader *, cpp_num, cpp_num, enum cpp_ttype);
50 enum cpp_ttype);
52 enum cpp_ttype);
54 static cpp_num num_div_op (cpp_reader *, cpp_num, cpp_num, enum cpp_ttype,
62 static struct op *reduce (cpp_reader *, struct op *, enum cpp_ttype);
68 #define CPP_UPLUS ((enum cpp_ttype) (CPP_LAST_CPP_OP + 1))
69 #define CPP_UMINUS ((enum cpp_ttype) (CPP_LAST_CPP_OP + 2))
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-pragma.c135 enum cpp_ttype token; in handle_pragma_pack()
354 enum cpp_ttype t; in handle_pragma_weak()
417 enum cpp_ttype token; in handle_pragma_scalar_storage_order()
496 enum cpp_ttype t; in handle_pragma_redefine_extname()
719 enum cpp_ttype token; in handle_pragma_visibility()
763 enum cpp_ttype token = pragma_lex (&x, &loc); in handle_pragma_diagnostic()
861 enum cpp_ttype token; in handle_pragma_target()
929 enum cpp_ttype token; in handle_pragma_optimize()
1016 enum cpp_ttype token; in handle_pragma_push_options()
1045 enum cpp_ttype token; in handle_pragma_pop_options()
[all …]
H A Dc-pragma.h235 extern enum cpp_ttype pragma_lex (tree *, location_t *loc = NULL);
248 extern enum cpp_ttype c_lex_with_flags (tree *, location_t *, unsigned char *,
H A Dc-common.h403 #define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
410 #define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
413 #define CPP_DECLTYPE ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
416 #define CPP_PREPARSED_EXPR ((enum cpp_ttype) (CPP_DECLTYPE + 1))
1122 extern enum cpp_ttype
1123 conflict_marker_get_final_tok_kind (enum cpp_ttype tok1_kind);
1145 extern void c_parse_error (const char *, enum cpp_ttype, tree, unsigned char,
1399 enum cpp_ttype token_type,
H A Dc-lex.c50 static enum cpp_ttype lex_string (const cpp_token *, tree *, bool, bool);
447 enum cpp_ttype
452 enum cpp_ttype type; in c_lex_with_flags()
1202 static enum cpp_ttype
1210 enum cpp_ttype type = tok->type; in lex_string()
1418 enum cpp_ttype
1419 conflict_marker_get_final_tok_kind (enum cpp_ttype tok1_kind) in conflict_marker_get_final_tok_kind()
H A Dc-indentation.h28 ENUM_BITFIELD (cpp_ttype) type : 8;
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-pragma.cc140 enum cpp_ttype token; in handle_pragma_pack()
361 enum cpp_ttype t; in handle_pragma_weak()
424 enum cpp_ttype token; in handle_pragma_scalar_storage_order()
505 enum cpp_ttype t; in handle_pragma_redefine_extname()
728 enum cpp_ttype token; in handle_pragma_visibility()
772 enum cpp_ttype token = pragma_lex (&x, &loc); in handle_pragma_diagnostic()
905 enum cpp_ttype token; in handle_pragma_target()
976 enum cpp_ttype token; in handle_pragma_optimize()
1062 enum cpp_ttype token; in handle_pragma_push_options()
1098 enum cpp_ttype token; in handle_pragma_pop_options()
[all …]
H A Dc-pragma.h250 extern enum cpp_ttype pragma_lex (tree *, location_t *loc = NULL);
263 extern enum cpp_ttype c_lex_with_flags (tree *, location_t *, unsigned char *,
H A Dc-common.h420 #define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
427 #define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
430 #define CPP_DECLTYPE ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
433 #define CPP_PREPARSED_EXPR ((enum cpp_ttype) (CPP_DECLTYPE + 1))
1160 extern enum cpp_ttype
1161 conflict_marker_get_final_tok_kind (enum cpp_ttype tok1_kind);
1183 extern void c_parse_error (const char *, enum cpp_ttype, tree, unsigned char,
1508 enum cpp_ttype token_type,
H A Dc-lex.cc51 static enum cpp_ttype lex_string (const cpp_token *, tree *, bool, bool);
500 enum cpp_ttype
505 enum cpp_ttype type; in c_lex_with_flags()
1270 static enum cpp_ttype
1278 enum cpp_ttype type = tok->type; in lex_string()
1486 enum cpp_ttype
1487 conflict_marker_get_final_tok_kind (enum cpp_ttype tok1_kind) in conflict_marker_get_final_tok_kind()
H A Dc-indentation.h28 ENUM_BITFIELD (cpp_ttype) type : 8;
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/m32c/
H A Dm32c-pragma.c42 enum cpp_ttype type; in m32c_pragma_memregs()
87 enum cpp_ttype type; in m32c_pragma_address()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/m32c/
H A Dm32c-pragma.cc42 enum cpp_ttype type; in m32c_pragma_memregs()
87 enum cpp_ttype type; in m32c_pragma_address()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/
H A Dsol2-c.cc85 enum cpp_ttype ttype; in solaris_pragma_align()
151 enum cpp_ttype ttype; in solaris_pragma_init()
210 enum cpp_ttype ttype; in solaris_pragma_fini()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/
H A Dsol2-c.c85 enum cpp_ttype ttype; in solaris_pragma_align()
151 enum cpp_ttype ttype; in solaris_pragma_init()
210 enum cpp_ttype ttype; in solaris_pragma_fini()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dinput.cc1537 enum cpp_ttype type, in get_substring_ranges_for_loc()
1704 enum cpp_ttype type, in get_location_within_string()
1754 enum cpp_ttype type, in get_source_range_for_char()
1781 enum cpp_ttype type, in get_num_source_ranges_for_substring()
2470 location_t strloc, enum cpp_ttype type, int idx, in assert_char_at_range()
2526 enum cpp_ttype type, in assert_num_substring_ranges()
2564 enum cpp_ttype type, in assert_has_no_substring_ranges()
2613 const enum cpp_ttype type = CPP_STRING; in test_lexer_string_locations_simple()
2667 const enum cpp_ttype type = CPP_STRING; in test_lexer_string_locations_ebcdic()
2713 const enum cpp_ttype type = CPP_STRING; in test_lexer_string_locations_hex()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dinput.c1377 enum cpp_ttype type, in get_substring_ranges_for_loc()
1544 enum cpp_ttype type, in get_location_within_string()
1594 enum cpp_ttype type, in get_source_range_for_char()
1621 enum cpp_ttype type, in get_num_source_ranges_for_substring()
2310 location_t strloc, enum cpp_ttype type, int idx, in assert_char_at_range()
2366 enum cpp_ttype type, in assert_num_substring_ranges()
2404 enum cpp_ttype type, in assert_has_no_substring_ranges()
2453 const enum cpp_ttype type = CPP_STRING; in test_lexer_string_locations_simple()
2507 const enum cpp_ttype type = CPP_STRING; in test_lexer_string_locations_ebcdic()
2553 const enum cpp_ttype type = CPP_STRING; in test_lexer_string_locations_hex()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dparser.h44 enum cpp_ttype type : 8;
104 enum cpp_ttype saved_type : 8;
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dparser.h44 enum cpp_ttype type : 8;
103 enum cpp_ttype saved_type : 8;
/netbsd-src/external/gpl3/gcc/dist/gcc/config/ia64/
H A Dia64-c.cc38 enum cpp_ttype type; in ia64_hpux_handle_builtin_pragma()

123