Home
last modified time | relevance | path

Searched refs:current_line (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp232 const char *current_line, const char *cursor, const char *last_char, in HandleCompletion() argument
255 if (cursor < current_line || last_char < current_line) in HandleCompletionWithDescriptions()
258 size_t current_line_size = strlen(current_line); in HandleCompletionWithDescriptions()
268 CompletionRequest request(current_line, cursor - current_line, result); in HandleCompletionWithDescriptions()
313 LLDB_INSTRUMENT_VA(this, current_line, cursor_pos, match_start_point, in HandleCompletionWithDescriptions()
316 const char *cursor = current_line + cursor_pos; in HandleCompletionWithDescriptions()
317 const char *last_char = current_line + strlen(current_line); in HandleCompletionWithDescriptions()
323 int SBCommandInterpreter::HandleCompletion(const char *current_line, in HandleCompletion() argument
328 LLDB_INSTRUMENT_VA(this, current_line, cursor_pos, match_start_point, in HandleCompletion()
331 const char *cursor = current_line + cursor_pos; in HandleCompletion()
[all …]
/freebsd-14.2/usr.bin/talk/
H A Dio.c98 current_line = 0; in talk()
156 wmove(my_win.x_win, current_line, 0); in p_error()
171 wmove(my_win.x_win, current_line, 0); in message()
173 if (current_line < my_win.x_nlines - 1) in message()
174 current_line++; in message()
H A Dinvite.c124 if (current_line < my_win.x_nlines - 1) in re_invite()
125 current_line++; in re_invite()
H A Dmsgs.c49 int current_line = 0; variable
H A Dtalk.h49 extern int current_line;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h224 int HandleCompletion(const char *current_line, const char *cursor,
229 int HandleCompletion(const char *current_line, uint32_t cursor_pos,
237 const char *current_line, const char *cursor, const char *last_char,
242 int HandleCompletionWithDescriptions(const char *current_line,
/freebsd-14.2/crypto/openssl/util/perl/OpenSSL/
H A DParseC.pm792 current_line => 0,
834 $state{current_line}++;
836 $opts{PLACE} = " at ".$opts{filename}." line ".$state{current_line}."\n";
837 $opts{PLACE2} = $opts{filename}.":".$state{current_line};
/freebsd-14.2/contrib/lutok/
H A Ddebug.hpp80 int current_line(void) const;
H A Ddebug.cpp147 lutok::debug::current_line(void) const in current_line() function in lutok::debug
/freebsd-14.2/contrib/tnftp/src/
H A Dftp.c372 char current_line[BUFSIZ]; /* last line of previous reply */ in getreply() local
388 cp = current_line; in getreply()
480 if (cp < &current_line[sizeof(current_line) - 1]) in getreply()
492 (void)strlcpy(reply_string, current_line, in getreply()
495 (*reply_callback)(current_line); in getreply()
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp633 auto current_line = in BreakLineCommand() local
637 m_input_lines[m_current_line_index] = current_line; in BreakLineCommand()