Lines Matching refs:paste_flag
1921 copy_paste_flag (cpp_reader *pfile, const cpp_token **paste_flag, in copy_paste_flag() argument
1925 token->type = (*paste_flag)->type; in copy_paste_flag()
1926 token->val = (*paste_flag)->val; in copy_paste_flag()
1928 token->flags = (*paste_flag)->flags | PASTE_LEFT; in copy_paste_flag()
1930 token->flags = (*paste_flag)->flags & ~PASTE_LEFT; in copy_paste_flag()
1931 *paste_flag = token; in copy_paste_flag()
2078 const cpp_token **paste_flag = NULL; in replace_args() local
2106 paste_flag = tokens_buff_last_token_ptr (buff); in replace_args()
2111 = start ? paste_flag - start : tokens_buff_count (buff); in replace_args()
2161 if (start && paste_flag == start && (*start)->flags & PASTE_LEFT) in replace_args()
2169 while (paste_flag && paste_flag != start in replace_args()
2170 && *paste_flag == &pfile->avoid_paste) in replace_args()
2173 paste_flag = tokens_buff_last_token_ptr (buff); in replace_args()
2178 if (paste_flag && (*paste_flag)->type != CPP_PADDING) in replace_args()
2179 copy_paste_flag (pfile, paste_flag, src); in replace_args()
2207 paste_flag = 0; in replace_args()
2269 paste_flag = tmp_token_ptr; in replace_args()
2273 paste_flag = tmp_token_ptr; in replace_args()
2358 paste_flag in replace_args()
2398 if (paste_flag) in replace_args()
2399 copy_paste_flag (pfile, paste_flag, src); in replace_args()