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

123

/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)
H A Dmock.py82 def readline(self): member in class:MockConn
83 """Override mod_python.apache.mp_conn.readline."""
118 def readline(self): member in class:MockBlockingConn
119 """Override mod_python.apache.mp_conn.readline."""
/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)
H A Dss_internal.h64 * Dynamic usage of readline library if present
68 char *(*readline)(const char *); member in struct:_ss_data
H A Dinvocation.c75 new_table->readline = 0;
/external/llvm/docs/
H A Dconf.py230 title = f.readline().rstrip('\n')
231 header = f.readline().rstrip('\n')
/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/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.py49 function_name = self.pipe.stdout.readline().rstrip()
50 file_name = self.pipe.stdout.readline().rstrip()
113 atos_line = self.pipe.stdout.readline().rstrip()
/external/libxml2/
H A Dxmlcatalog.c20 #include <readline/readline.h>
22 #include <readline/history.h>
69 line_read = readline (prompt);
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dpath.py106 windows_path = self._child_process.stdout.readline().rstrip()
H A Duser.py43 import readline namespace
46 # There is no readline module for win32, not much to do except cry.
47 _log.warn("Unable to import readline.") namespace
49 # Lack of readline results in a very bad user experiance.
52 _log.warn(" sudo port install py25-readline")
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt059debug.py46 l = input.readline().strip()
48 l = input.readline().strip()
55 event = input.readline().strip()
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
H A Ddebug-mode.rb38 @socket.readline.strip.should == 'ANTLR 2'
39 @socket.readline.strip.start_with?( 'grammar "' ).should == true
42 event = @socket.readline.strip
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb78 line = @connection.readline
291 @version = @socket.readline.split( "\t" )[ -1 ]
292 @grammar_file = @socket.readline.split( "\t" )[ -1 ]
322 event = @socket.readline or raise( StopIteration )
/external/qemu/
H A Doffset_layout.py60 line = sys.stdin.readline()

Completed in 447 milliseconds

123