Lines Matching refs:text
26 static char *text; variable
45 text = xmalloc(START_STRSIZE); in new_string()
48 *text = 0; in new_string()
57 text = xrealloc(text, new_size); in append_string()
60 memcpy(text + text_size, str, size); in append_string()
62 text[text_size] = 0; in append_string()
67 text = xmalloc(size + 1); in alloc_string()
68 memcpy(text, str, size); in alloc_string()
69 text[size] = 0; in alloc_string()
114 yylval.string = text;
138 yylval.string = text;
170 yylval.string = text;