Lines Matching refs:text
31 static char *text; variable
50 text = xmalloc(START_STRSIZE); in new_string()
53 *text = 0; in new_string()
62 text = xrealloc(text, new_size); in append_string()
65 memcpy(text + text_size, str, size); in append_string()
67 text[text_size] = 0; in append_string()
72 text = xmalloc(size + 1); in alloc_string()
73 memcpy(text, str, size); in alloc_string()
74 text[size] = 0; in alloc_string()
147 yylval.string = text;
162 yylval.string = text;