Lines Matching refs:text
37 static char *text; variable
59 text = xmalloc(START_STRSIZE); in new_string()
62 *text = 0; in new_string()
71 text = xrealloc(text, new_size); in append_string()
74 memcpy(text + text_size, str, size); in append_string()
76 text[text_size] = 0; in append_string()
81 text = xmalloc(size + 1); in alloc_string()
82 memcpy(text, str, size); in alloc_string()
83 text[size] = 0; in alloc_string()
151 yylval.string = text;
166 yylval.string = text;