HomeSort by relevance Sort by last modified time
    Searched refs:readline (Results 1 - 25 of 48) sorted by null

1 2

  /external/v8/src/
d8-readline.cc 30 #include <readline/readline.h> // NOLINT
31 #include <readline/history.h> // NOLINT
38 // implementations of readline. This smooths out one known incompatibility.
49 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
83 char* result = readline(prompt);
  /packages/inputmethods/PinyinIME/jni/include/
utf16reader.h 43 char16* readline(char16* read_buf, size_t max_len);
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
memorizingfile.py 35 A memorizing file wraps a file and memorizes lines read by readline.
43 """MemorizingFile wraps a file and memorizes lines read by readline.
64 'readline', 'get_memorized_lines'):
68 def readline(self): member in class:MemorizingFile
69 """Override file.readline and memorize the line read."""
71 line = self._file.readline()
  /external/webkit/WebKitTools/pywebsocket/test/
test_mock.py 48 self.assertEqual('ABC\r\n', self._conn.readline())
49 self.assertEqual('DEFG\r\n', self._conn.readline())
50 self.assertEqual('\r\n', self._conn.readline())
51 self.assertEqual('HIJK', self._conn.readline())
52 self.assertEqual('', self._conn.readline())
62 self.assertEqual('EFG\r\n', self._conn.readline())
64 self.assertEqual('', self._conn.readline())
83 data = self._conn.readline()
test_memorizingfile.py 46 memorizing_file.readline()
mock.py 78 def readline(self): member in class:MockConn
79 """Override mod_python.apache.mp_conn.readline."""
114 def readline(self): member in class:MockBlockingConn
115 """Override mod_python.apache.mp_conn.readline."""
  /external/e2fsprogs/lib/ss/
get_readline.c 29 info->readline = 0;
38 /* Libraries we will try to use for readline/editline functionality */
70 /* printf("Using %s for readline library\n", cp); */
79 info->readline = (char *(*)(const char *))
80 dlsym(handle, "readline");
listen.c 76 if (info->readline) {
77 line = (*info->readline)(current_info->prompt);
118 if (info->readline)
ss_internal.h 64 * Dynamic usage of readline library if present
68 char *(*readline)(const char *); member in struct:_ss_data
invocation.c 74 new_table->readline = 0;
  /external/sqlite/dist/
Android.mk 116 have_readline := $(wildcard /usr/include/readline/readline.h)
  /external/dropbear/libtommath/
booker.pl 53 $readline = $wroteline = 0;
57 ++$readline;
262 print "Read $readline lines, wrote $wroteline lines\n";
  /build/tools/
adbs 47 list[0] = stream.readline()
203 line = stream.readline()
  /external/oprofile/
opimport_pull 19 arch_name = stream.readline().rstrip("\n");
  /external/gtest/test/
gtest_env_var_test.py 82 line = stdout.readline()
gtest_output_test.py 174 line = stdout_file.readline()
  /external/libxml2/
xmlcatalog.c 20 #include <readline/readline.h>
22 #include <readline/history.h>
69 line_read = readline (prompt);
  /packages/inputmethods/PinyinIME/jni/share/
utf16reader.cpp 72 char16* Utf16Reader::readline(char16* read_buf, size_t max_len) { function in class:ime_pinyin::Utf16Reader
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
chromium.py 117 is_ready = self._helper.stdout.readline()
209 line = self._proc.stdout.readline()
243 line = self._proc.stdout.readline()
  /external/qemu/
offset_layout.py 60 line = sys.stdin.readline()
  /external/webkit/WebKitTools/Scripts/webkitpy/
changelogs.py 59 first_line = changelog_file.readline()
  /external/e2fsprogs/ext2ed/
main.c 16 4. A command pattern matcher which is used along with the readline completion feature.
31 #include <readline.h>
68 char last_command_line [80]; /* A simple one command cache, in addition to the readline history */
190 * function, dispatch, to analyze it. We use the readline library
191 * function readline to read the command, hence all the usual readline
193 * readline's history and in our tiny one-command cache, so that only
225 * using the readline library I'm breaking its
233 ptr=readline ("ext2ed > ");
237 * Readline allocated the buffer - Copy the strin
    [all...]
  /external/grub/stage2/
char_io.c 273 int echo_char, int readline)
561 /* If READLINE is non-zero, handle readline-like key bindings. */
562 if (readline)
724 functional if READLINE is zero, as the cursor cannot go
768 /* If the readline-like feature is turned on and CMDLINE is not
770 if (readline && lpos < llen)
786 int echo_char, int readline)
841 ret = real_get_cmdline (prompt, cmdline, maxlen, echo_char, readline);
  /dalvik/tools/
gclog.py 183 line = logPipe.readline()
  /development/tools/axl/
chewie.py 74 line = f.readline()

Completed in 748 milliseconds

1 2