Searched refs:readline (Results 1 - 25 of 129) sorted by relevance

123456

/external/llvm/utils/
H A DDSAclean.py21 buffer = input.readline()
25 buffer = input.readline()
30 buffer = input.readline()
H A DDSAextract.py59 buffer = input.readline()
70 buffer = input.readline()
86 buffer = input.readline()
110 buffer = input.readline()
/external/v8/src/
H A Dd8-readline.cc30 #include <readline/readline.h> // NOLINT
31 #include <readline/history.h> // NOLINT
33 // The readline includes leaves RETURN defined which breaks V8 compilation.
40 // implementations of readline. This smooths out one known incompatibility.
51 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
97 result = readline(prompt);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb33 @readline = block or raise( ArgumentError, "no line-reading block was provided" )
37 def readline method in class:ANTLR3.InteractiveStringStream
40 if line = @readline.call
69 @readline = block or raise( ArgumentError, "no line-reading block was provided" )
73 def readline method in class:ANTLR3.InteractiveStringStream
76 if line = @readline.call
88 private :readline
93 readline
106 elsif readline
126 else readline unti
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dmemorizingfile.py35 A memorizing file wraps a file and memorizes lines read by readline.
43 """MemorizingFile wraps a file and memorizes lines read by readline.
68 '_buffered', '_buffered_line', 'readline',
73 def readline(self, size=-1): member in class:MemorizingFile
74 """Override file.readline and memorize the line read.
78 subsequent readline calls.
85 line = self._file.readline()
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_mock.py52 self.assertEqual('ABC\r\n', self._conn.readline())
53 self.assertEqual('DEFG\r\n', self._conn.readline())
54 self.assertEqual('\r\n', self._conn.readline())
55 self.assertEqual('HIJK', self._conn.readline())
56 self.assertEqual('', self._conn.readline())
66 self.assertEqual('EFG\r\n', self._conn.readline())
68 self.assertEqual('', self._conn.readline())
85 """A test class that launches a thread, calls readline on the
99 data = self._conn.readline()
H A Dtest_memorizingfile.py49 memorizing_file.readline()
59 line = memorizing_file.readline(read_size)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dmemorizingfile.py35 A memorizing file wraps a file and memorizes lines read by readline.
43 """MemorizingFile wraps a file and memorizes lines read by readline.
68 '_buffered', '_buffered_line', 'readline',
73 def readline(self, size=-1): member in class:MemorizingFile
74 """Override file.readline and memorize the line read.
78 subsequent readline calls.
85 line = self._file.readline()
/external/chromium_org/third_party/jemalloc/chromium/
H A Dbuild-crt.py12 line = proc.stdout.readline()
/external/chromium_org/third_party/jemalloc/vendor/
H A Dbuild-crt.py12 line = proc.stdout.readline()
/external/chromium_org/v8/src/
H A Dd8-readline.cc30 #include <readline/readline.h> // NOLINT
31 #include <readline/history.h> // NOLINT
33 // The readline includes leaves RETURN defined which breaks V8 compilation.
39 // implementations of readline. This smooths out one known incompatibility.
50 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
87 // http://cnswww.cns.cwru.edu/php/chet/readline/readline.html#SEC24
110 result = readline(prompt);
/external/chromium_org/third_party/sqlite/src/
H A Dconfigure.ac57 # that cause the executable to link against the readline library.
64 # files for the readline library. If the compiler is able
65 # to find <readline.h> on its own, then this can be blank.
523 # that use "readline()" library.
528 AC_ARG_ENABLE([readline],
529 [AC_HELP_STRING([--disable-readline],[disable readline support [default=detect]])],
536 AC_ARG_WITH([readline-lib],
537 [AC_HELP_STRING([--with-readline-lib],[specify readline librar
[all...]
/external/e2fsprogs/lib/ss/
H A Dget_readline.c29 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");
H A Dlisten.c76 if (info->readline) {
77 line = (*info->readline)(current_info->prompt);
118 if (info->readline)
/external/llvm/docs/
H A Dconf.py230 title = f.readline().rstrip('\n')
231 header = f.readline().rstrip('\n')
/external/chromium_org/chrome/tools/build/win/
H A Dsln_deps.py38 line = sln.readline().strip()
55 line = sln.readline().strip()
59 line = sln.readline().strip()
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dedit_readline.c2 * Command line editing and history wrapper for readline
10 #include <readline/readline.h>
11 #include <readline/history.h>
/external/wpa_supplicant_8/src/utils/
H A Dedit_readline.c2 * Command line editing and history wrapper for readline
10 #include <readline/readline.h>
11 #include <readline/history.h>
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dedit_readline.c2 * Command line editing and history wrapper for readline
10 #include <readline/readline.h>
11 #include <readline/history.h>
/external/chromium_org/tools/flakiness/
H A Dfind_flakiness.py42 num_runs = int(data_file.readline().split(' ')[0])
43 num_passes = int(data_file.readline().split(' ')[0])
61 line = proc.stderr.readline()
105 line = proc.stdout.readline()
/external/chromium_org/v8/tools/profviz/
H A Dstdio.js48 psc.collectData(readline, distortion_per_entry);
/external/compiler-rt/lib/asan/scripts/
H A Dsymbolize.py88 function_name = p.stdout.readline().rstrip()
89 file_name = p.stdout.readline().rstrip()
100 p.stdout.readline()
101 p.stdout.readline()
H A Dasan_symbolize.py84 function_name = self.pipe.stdout.readline().rstrip()
87 file_name = self.pipe.stdout.readline().rstrip()
131 function_name = self.pipe.stdout.readline().rstrip()
132 file_name = self.pipe.stdout.readline().rstrip()
164 return self.readline()
166 def readline(self): member in class:UnbufferedLineConverter
167 return self.r.readline().rstrip()
193 atos_line = self.atos.readline()
357 line = sys.stdin.readline()
/external/libvpx/libvpx/tools/
H A Dwrap-commit-msg.py46 line = fileobj.readline()
/external/chromium_org/tools/python/google/
H A Dprocess_utils.py86 line = read_from.readline()
106 line = read_from.readline()
195 line = read_from.readline()

Completed in 439 milliseconds

123456