Lines Matching refs:reader
132 cpp_reader *reader; in reader_init() local
136 reader = cpp_create_reader (CLK_GNUC89, 0, line_table); in reader_init()
140 options = cpp_get_options (reader); in reader_init()
146 cpp_post_options (reader); in reader_init()
147 cpp_init_iconv (reader); in reader_init()
148 cpp_set_include_chains (reader, cmd_line_searchpath, cmd_line_searchpath, in reader_init()
152 struct deps *deps = cpp_get_deps (reader); in reader_init()
156 return reader; in reader_init()
164 cpp_reader *reader = reader_init (&line_table); in process_file() local
166 if (!cpp_read_main_file (reader, file)) in process_file()
172 cpp_init_builtins (reader, true); in process_file()
174 (clm->is_undef ? cpp_undef : cpp_define) (reader, clm->macro); in process_file()
176 cpp_scan_nooutput (reader); in process_file()
177 if (cpp_finish (reader, stdout)) in process_file()
180 cpp_destroy (reader); in process_file()