Lines Matching refs:tokcstr
2311 static CString tokcstr; /* current parsed string, if any */ variable
9309 cstr_reset(&tokcstr); in next_nomacro1()
9312 cstr_ccat(&tokcstr, *p1); in next_nomacro1()
9319 cstr_ccat(&tokcstr, c); in next_nomacro1()
9322 ts = tok_alloc(tokcstr.data, tokcstr.size); in next_nomacro1()
9337 cstr_reset(&tokcstr); in next_nomacro1()
9338 cstr_ccat(&tokcstr, 'L'); in next_nomacro1()
9347 cstr_reset(&tokcstr); in next_nomacro1()
9353 cstr_ccat(&tokcstr, c); in next_nomacro1()
9361 cstr_ccat(&tokcstr, '\0'); in next_nomacro1()
9362 tokc.cstr = &tokcstr; in next_nomacro1()
9369 cstr_reset(&tokcstr); in next_nomacro1()
9370 cstr_ccat(&tokcstr, '.'); in next_nomacro1()
9398 cstr_reset(&tokcstr); in next_nomacro1()
9399 parse_escape_string(&tokcstr, str.data, is_long); in next_nomacro1()
9409 if (tokcstr.size <= char_size) in next_nomacro1()
9411 if (tokcstr.size > 2 * char_size) in next_nomacro1()
9414 tokc.i = *(int8_t *)tokcstr.data; in next_nomacro1()
9417 tokc.i = *(int *)tokcstr.data; in next_nomacro1()
9421 tokc.cstr = &tokcstr; in next_nomacro1()