Lines Matching refs:text

46 char *line_completion_function (const char *text, int matches, 
100 readline_line_completion_function (const char *text, int matches) in readline_line_completion_function() argument
102 return line_completion_function (text, matches, in readline_line_completion_function()
110 char *text, char *prefix) in VEC()
118 char *text, char *word) in VEC()
128 p = rl_filename_completion_function (text, subsequent_name); in VEC()
144 if (word == text) in VEC()
147 else if (word > text) in VEC()
151 strcpy (q, p + (word - text)); in VEC()
157 q = xmalloc (strlen (p) + (text - word) + 5); in VEC()
158 strncpy (q, word, text - word); in VEC()
159 q[text - word] = '\0'; in VEC()
187 char *text, char *word) in VEC()
194 int quoted = *text == '\'' || *text == '"'; in VEC()
198 char *symbol_start = text; in VEC()
199 char *orig_text = text; in VEC()
203 for (p = text; *p != '\0'; ++p) in VEC()
227 else if (p < text + 3 && *p == ':' && p == text + 1 + quoted) in VEC()
240 text++; in VEC()
241 text_len = strlen (text); in VEC()
248 file_to_match = (char *) xmalloc (colon - text + 1); in VEC()
249 strncpy (file_to_match, text, colon - text + 1); in VEC()
251 for (s = file_to_match + (colon - text); in VEC()
271 if (strcspn (text, in VEC()
273 fn_list = make_source_files_completion_list (text, text); in VEC()
316 memmove (p, p + (word - text), in VEC()
317 strlen (p) + 1 - (word - text)); in VEC()
388 char *text, char *word) in VEC()
400 type = parse_expression_for_completion (text, &fieldname, &code); in VEC()
440 p > text && p[-1] != ' ' && p[-1] != '\t'; in VEC()
508 complete_line_internal (const char *text, in VEC()
542 word = tmp_command + point - strlen (text); in VEC()
769 complete_line (const char *text, char *line_buffer, int point) in VEC()
771 return complete_line_internal (text, line_buffer, in VEC()
778 char *text, char *word) in VEC()
780 return complete_line_internal (word, text, in VEC()
781 strlen (text), handle_help); in VEC()
788 char *text, char *word) in VEC()
850 line_completion_function (const char *text, int matches, in line_completion_function() argument
872 list = complete_line (text, line_buffer, point); in line_completion_function()