Searched refs:tparser (Results 1 – 3 of 3) sorted by relevance
21782 c_parser tparser; in c_parse_file() local21784 memset (&tparser, 0, sizeof tparser); in c_parse_file()21785 tparser.translate_strings_p = true; in c_parse_file()21786 tparser.tokens = &tparser.tokens_buf[0]; in c_parse_file()21787 the_parser = &tparser; in c_parse_file()21789 if (c_parser_peek_token (&tparser)->pragma_kind == PRAGMA_GCC_PCH_PREPROCESS) in c_parse_file()21790 c_parser_pragma_pch_preprocess (&tparser); in c_parse_file()21795 *the_parser = tparser; in c_parse_file()21796 if (tparser.tokens == &tparser.tokens_buf[0]) in c_parse_file()
23351 c_parser tparser; in c_parse_file() local23353 memset (&tparser, 0, sizeof tparser); in c_parse_file()23354 tparser.translate_strings_p = true; in c_parse_file()23355 tparser.tokens = &tparser.tokens_buf[0]; in c_parse_file()23356 the_parser = &tparser; in c_parse_file()23358 if (c_parser_peek_token (&tparser)->pragma_kind == PRAGMA_GCC_PCH_PREPROCESS) in c_parse_file()23359 c_parser_pragma_pch_preprocess (&tparser); in c_parse_file()23364 *the_parser = tparser; in c_parse_file()23365 if (tparser.tokens == &tparser.tokens_buf[0]) in c_parse_file()
7931 (c_parse_file): Initialize tparser.tokens and the_parser->tokens here.