Lines Matching refs:text
30 static char *text; variable
49 text = xmalloc(START_STRSIZE); in new_string()
52 *text = 0; in new_string()
61 text = xrealloc(text, new_size); in append_string()
64 memcpy(text + text_size, str, size); in append_string()
66 text[text_size] = 0; in append_string()
71 text = xmalloc(size + 1); in alloc_string()
72 memcpy(text, str, size); in alloc_string()
73 text[size] = 0; in alloc_string()
142 yylval.string = text;
157 yylval.string = text;