Lines Matching defs:word

3317 #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
3319 (SYMBOL_NATURAL_NAME (symbol), (sym_text), (len), (text), (word))
3327 char *text, char *word)
3344 if (word == sym_text)
3349 else if (word > sym_text)
3353 strcpy (new, symname + (word - sym_text));
3358 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
3359 strncpy (new, word, sym_text - word);
3360 new[sym_text - word] = '\0';
3379 int sym_text_len, char *text, char *word)
3395 completion_list_add_name (method + 1, sym_text, sym_text_len, text, word);
3416 completion_list_add_name (tmp, sym_text, sym_text_len, text, word);
3418 completion_list_add_name (tmp + 1, sym_text, sym_text_len, text, word);
3429 completion_list_add_name (tmp, sym_text, sym_text_len, text, word);
3488 make_symbol_completion_list (char *text, char *word)
3581 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3590 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3602 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
3604 completion_list_objc_symbol (msymbol, sym_text, sym_text_len, text, word);
3623 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3636 sym_text, sym_text_len, text, word);
3653 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3666 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3677 make_file_symbol_completion_list (char *text, char *word, char *srcfile)
3763 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3769 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3780 add_filename_to_list (const char *fname, char *text, char *word,
3793 if (word == text)
3799 else if (word > text)
3803 strcpy (new, fname + (word - text));
3808 new = xmalloc (fnlen + (text - word) + 5);
3809 strncpy (new, word, text - word);
3810 new[text - word] = '\0';
3840 make_source_files_completion_list (char *text, char *word)
3871 add_filename_to_list (s->filename, text, word,
3889 add_filename_to_list (base_name, text, word,
3910 add_filename_to_list (ps->filename, text, word,
3925 add_filename_to_list (base_name, text, word,