Lines Matching refs:CPP_OPTION

103   CPP_OPTION (pfile, lang) = lang;  in cpp_set_lang()
105 CPP_OPTION (pfile, c99) = l->c99; in cpp_set_lang()
106 CPP_OPTION (pfile, cplusplus) = l->cplusplus; in cpp_set_lang()
107 CPP_OPTION (pfile, extended_numbers) = l->extended_numbers; in cpp_set_lang()
108 CPP_OPTION (pfile, extended_identifiers) = l->extended_identifiers; in cpp_set_lang()
109 CPP_OPTION (pfile, std) = l->std; in cpp_set_lang()
110 CPP_OPTION (pfile, trigraphs) = l->std; in cpp_set_lang()
111 CPP_OPTION (pfile, cplusplus_comments) = l->cplusplus_comments; in cpp_set_lang()
112 CPP_OPTION (pfile, digraphs) = l->digraphs; in cpp_set_lang()
151 CPP_OPTION (pfile, warn_newline_at_eof) = 0; in cpp_create_reader()
153 CPP_OPTION (pfile, warn_multichar) = 1; in cpp_create_reader()
154 CPP_OPTION (pfile, discard_comments) = 1; in cpp_create_reader()
155 CPP_OPTION (pfile, discard_comments_in_macro_exp) = 1; in cpp_create_reader()
156 CPP_OPTION (pfile, show_column) = 1; in cpp_create_reader()
157 CPP_OPTION (pfile, tabstop) = 8; in cpp_create_reader()
158 CPP_OPTION (pfile, operator_names) = 1; in cpp_create_reader()
159 CPP_OPTION (pfile, warn_trigraphs) = 2; in cpp_create_reader()
160 CPP_OPTION (pfile, warn_endif_labels) = 1; in cpp_create_reader()
161 CPP_OPTION (pfile, warn_deprecated) = 1; in cpp_create_reader()
162 CPP_OPTION (pfile, warn_long_long) = !CPP_OPTION (pfile, c99); in cpp_create_reader()
163 CPP_OPTION (pfile, dollars_in_ident) = 1; in cpp_create_reader()
164 CPP_OPTION (pfile, warn_dollars) = 1; in cpp_create_reader()
165 CPP_OPTION (pfile, warn_variadic_macros) = 1; in cpp_create_reader()
166 CPP_OPTION (pfile, warn_normalize) = normalized_C; in cpp_create_reader()
170 CPP_OPTION (pfile, precision) = CHAR_BIT * sizeof (long); in cpp_create_reader()
171 CPP_OPTION (pfile, char_precision) = CHAR_BIT; in cpp_create_reader()
172 CPP_OPTION (pfile, wchar_precision) = CHAR_BIT * sizeof (int); in cpp_create_reader()
173 CPP_OPTION (pfile, int_precision) = CHAR_BIT * sizeof (int); in cpp_create_reader()
174 CPP_OPTION (pfile, unsigned_char) = 0; in cpp_create_reader()
175 CPP_OPTION (pfile, unsigned_wchar) = 1; in cpp_create_reader()
176 CPP_OPTION (pfile, bytes_big_endian) = 1; /* does not matter */ in cpp_create_reader()
179 CPP_OPTION (pfile, narrow_charset) = _cpp_default_encoding (); in cpp_create_reader()
180 CPP_OPTION (pfile, wide_charset) = 0; in cpp_create_reader()
183 CPP_OPTION (pfile, input_charset) = _cpp_default_encoding (); in cpp_create_reader()
195 pfile->state.save_comments = ! CPP_OPTION (pfile, discard_comments); in cpp_create_reader()
361 if (CPP_OPTION (pfile, traditional)) in cpp_init_special_builtins()
363 else if (! CPP_OPTION (pfile, stdc_0_in_system_headers) in cpp_init_special_builtins()
364 || CPP_OPTION (pfile, std)) in cpp_init_special_builtins()
384 if (!CPP_OPTION (pfile, traditional) in cpp_init_builtins()
385 && (! CPP_OPTION (pfile, stdc_0_in_system_headers) in cpp_init_builtins()
386 || CPP_OPTION (pfile, std))) in cpp_init_builtins()
389 if (CPP_OPTION (pfile, cplusplus)) in cpp_init_builtins()
391 else if (CPP_OPTION (pfile, lang) == CLK_ASM) in cpp_init_builtins()
393 else if (CPP_OPTION (pfile, lang) == CLK_STDC94) in cpp_init_builtins()
395 else if (CPP_OPTION (pfile, c99)) in cpp_init_builtins()
403 if (CPP_OPTION (pfile, objc)) in cpp_init_builtins()
422 if (CPP_OPTION (pfile, precision) > max_precision) in sanity_checks()
427 (unsigned long) CPP_OPTION (pfile, precision)); in sanity_checks()
429 if (CPP_OPTION (pfile, precision) < CPP_OPTION (pfile, int_precision)) in sanity_checks()
433 if (CPP_OPTION (pfile, char_precision) < 8) in sanity_checks()
436 if (CPP_OPTION (pfile, wchar_precision) < CPP_OPTION (pfile, char_precision)) in sanity_checks()
440 if (CPP_OPTION (pfile, int_precision) < CPP_OPTION (pfile, char_precision)) in sanity_checks()
449 if (CPP_OPTION (pfile, wchar_precision) > BITS_PER_CPPCHAR_T) in sanity_checks()
454 (unsigned long) CPP_OPTION (pfile, wchar_precision)); in sanity_checks()
470 if (CPP_OPTION (pfile, cplusplus) && CPP_OPTION (pfile, operator_names)) in cpp_post_options()
480 if (CPP_OPTION (pfile, deps.style) != DEPS_NONE) in cpp_read_main_file()
498 if (CPP_OPTION (pfile, preprocessed)) in cpp_read_main_file()
596 if (CPP_OPTION (pfile, warn_unused_macros)) in cpp_finish()
608 if (CPP_OPTION (pfile, deps.style) != DEPS_NONE in cpp_finish()
613 if (CPP_OPTION (pfile, deps.phony_targets)) in cpp_finish()
618 if (CPP_OPTION (pfile, print_include_names)) in cpp_finish()
628 if (CPP_OPTION (pfile, cplusplus)) in post_options()
629 CPP_OPTION (pfile, warn_traditional) = 0; in post_options()
633 if (CPP_OPTION (pfile, preprocessed)) in post_options()
635 if (!CPP_OPTION (pfile, directives_only)) in post_options()
637 CPP_OPTION (pfile, traditional) = 0; in post_options()
640 if (CPP_OPTION (pfile, warn_trigraphs) == 2) in post_options()
641 CPP_OPTION (pfile, warn_trigraphs) = !CPP_OPTION (pfile, trigraphs); in post_options()
643 if (CPP_OPTION (pfile, traditional)) in post_options()
645 CPP_OPTION (pfile, cplusplus_comments) = 0; in post_options()
648 CPP_OPTION (pfile, show_column) = 0; in post_options()
649 CPP_OPTION (pfile, trigraphs) = 0; in post_options()
650 CPP_OPTION (pfile, warn_trigraphs) = 0; in post_options()