Home
last modified time | relevance | path

Searched refs:word_start (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/tcsh/
HDsh.file.c699 Char *str_end, *word_start, last_Char, should_retype; in tenex() local
721 for (word_start = str_end; word_start > inputline; --word_start) in tenex()
722 if (Strchr(delims, word_start[-1])) in tenex()
724 space_left = inputline_size - (word_start - inputline) - 1; in tenex()
725 numitems = tsearch(word_start, command, space_left); in tenex()
HDtw.parse.c166 Char *word_start; in tenematch() local
176 word_start = inputline; in tenematch()
189 oword_start = word_start; in tenematch()
191 word_start = cp + 1; in tenematch()
196 word_start = oword_start; in tenematch()
219 word = qline.len, word_start = cp + 1; in tenematch()
335 insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch()
343 for (bptr = word_start; bptr < str_end; bptr++) { in tenematch()
376 if (insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch()
403 DeleteBack(str_end - word_start);/* get rid of old word */ in tenematch()
[all …]
/NextBSD/lib/libedit/
HDfilecomplete.c618 const Char *word_start = buffer; in sh_find_word_start() local
624 word_start = buffer + 1; in sh_find_word_start()
627 return word_start; in sh_find_word_start()
/NextBSD/contrib/binutils/bfd/doc/
HDchew.c1128 char *word_start; local
1151 word_start = string;
1179 src = word_start;
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDIOHandler.cpp302 const char *word_start = cursor; in IOHandlerComplete() local
304 --word_start; in IOHandlerComplete()
305 while (word_start > current_line && !isspace(*word_start)) in IOHandlerComplete()
306 --word_start; in IOHandlerComplete()
309 word_start, in IOHandlerComplete()
321 const size_t partial_name_len = strlen(word_start); in IOHandlerComplete()