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

1 2 3 4 5 6 7

  /external/chromium-trace/catapult/third_party/Paste/paste/util/
filemixin.py 29 return self.readline()
31 def readline(self, size=None): member in class:FileMixin
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_readline.py 2 Very minimal unittests for parts of the readline module.
5 the "real" readline have the same interface for history manipulation. That's
11 # Skip tests if there is no readline module
12 readline = import_module('readline') variable
16 @unittest.skipIf(not hasattr(readline, 'clear_history'),
20 readline.clear_history()
22 readline.add_history("first line")
23 readline.add_history("second line")
25 self.assertEqual(readline.get_history_item(0), None
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_readline.py 2 Very minimal unittests for parts of the readline module.
5 the "real" readline have the same interface for history manipulation. That's
11 # Skip tests if there is no readline module
12 readline = import_module('readline') variable
16 @unittest.skipIf(not hasattr(readline, 'clear_history'),
20 readline.clear_history()
22 readline.add_history("first line")
23 readline.add_history("second line")
25 self.assertEqual(readline.get_history_item(0), None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_readline.py 2 Very minimal unittests for parts of the readline module.
5 the "real" readline have the same interface for history manipulation. That's
11 # Skip tests if there is no readline module
12 readline = import_module('readline') variable
16 @unittest.skipIf(not hasattr(readline, 'clear_history'),
20 readline.clear_history()
22 readline.add_history("first line")
23 readline.add_history("second line")
25 self.assertEqual(readline.get_history_item(0), None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_readline.py 2 Very minimal unittests for parts of the readline module.
5 the "real" readline have the same interface for history manipulation. That's
11 # Skip tests if there is no readline module
12 readline = import_module('readline') variable
16 @unittest.skipIf(not hasattr(readline, 'clear_history'),
20 readline.clear_history()
22 readline.add_history("first line")
23 readline.add_history("second line")
25 self.assertEqual(readline.get_history_item(0), None
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 9 uses Readline (if available) or standard IO#gets to fetch data on demand.
33 @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
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
taskadmin 93 import readline namespace
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
blob.py 60 def readline(self): member in class:Blob
61 return self.file.readline()
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
text_file.py 33 something that provides 'readline()' and 'close()' methods). It is
39 'readline()':
64 semantics of 'readline()' must differ from those of the builtin file
65 object's 'readline()' method! In particular, 'readline()' returns
82 the values returned by 'readline()'."""
161 def readline (self): member in class:TextFile
167 'warn()' after 'readline()' emits a warning about the physical
185 line = self.file.readline()
284 # readline ()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rlcompleter.py 1 """Word completion for GNU readline.
12 readline.parse_and_bind("tab: complete")
17 the completion to fail). This is a feature -- since readline sets the tty
27 - GNU readline is also used by the built-in functions input() and
33 - When the original stdin is not a tty device, GNU readline is never
34 used, and this module (and the readline module) are silently inactive.
54 readline via the set_completer() call:
56 readline.set_completer(Completer(my_namespace).complete)
162 import readline namespace
166 readline.set_completer(Completer().complete
    [all...]
code.py 289 readline module to enable GNU readline if it is available.
303 import readline namespace
multifile.py 1 """A readline()-style interface to the parts of a multipart message.
4 an ordinary file, as long as you use fp.readline(). Allows recursive
75 def readline(self): member in class:MultiFile
78 line = self.fp.readline()
84 raise Error, 'sudden EOF in MultiFile.readline()'
109 raise Error,'Missing endmarker in MultiFile.readline()'
115 line = self.readline()
124 while self.readline(): pass
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
text_file.py 33 something that provides 'readline()' and 'close()' methods). It is
39 'readline()':
64 semantics of 'readline()' must differ from those of the builtin file
65 object's 'readline()' method! In particular, 'readline()' returns
82 the values returned by 'readline()'."""
161 def readline (self): member in class:TextFile
167 'warn()' after 'readline()' emits a warning about the physical
185 line = self.file.readline()
284 # readline ()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
rlcompleter.py 1 """Word completion for GNU readline.
12 readline.parse_and_bind("tab: complete")
17 the completion to fail). This is a feature -- since readline sets the tty
27 - GNU readline is also used by the built-in functions input() and
33 - When the original stdin is not a tty device, GNU readline is never
34 used, and this module (and the readline module) are silently inactive.
54 readline via the set_completer() call:
56 readline.set_completer(Completer(my_namespace).complete)
162 import readline namespace
166 readline.set_completer(Completer().complete
    [all...]
code.py 289 readline module to enable GNU readline if it is available.
303 import readline namespace
multifile.py 1 """A readline()-style interface to the parts of a multipart message.
4 an ordinary file, as long as you use fp.readline(). Allows recursive
75 def readline(self): member in class:MultiFile
78 line = self.fp.readline()
84 raise Error, 'sudden EOF in MultiFile.readline()'
109 raise Error,'Missing endmarker in MultiFile.readline()'
115 line = self.readline()
124 while self.readline(): pass
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
text_file.py 33 something that provides 'readline()' and 'close()' methods). It is
39 'readline()':
64 semantics of 'readline()' must differ from those of the builtin file
65 object's 'readline()' method! In particular, 'readline()' returns
82 the values returned by 'readline()'."""
161 def readline (self): member in class:TextFile
167 'warn()' after 'readline()' emits a warning about the physical
185 line = self.file.readline()
284 # readline ()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rlcompleter.py 1 """Word completion for GNU readline.
12 readline.parse_and_bind("tab: complete")
17 the completion to fail). This is a feature -- since readline sets the tty
27 - GNU readline is also used by the built-in functions input() and
33 - When the original stdin is not a tty device, GNU readline is never
34 used, and this module (and the readline module) are silently inactive.
54 readline via the set_completer() call:
56 readline.set_completer(Completer(my_namespace).complete)
162 import readline namespace
166 readline.set_completer(Completer().complete
    [all...]
code.py 289 readline module to enable GNU readline if it is available.
303 import readline namespace
multifile.py 1 """A readline()-style interface to the parts of a multipart message.
4 an ordinary file, as long as you use fp.readline(). Allows recursive
75 def readline(self): member in class:MultiFile
78 line = self.fp.readline()
84 raise Error, 'sudden EOF in MultiFile.readline()'
109 raise Error,'Missing endmarker in MultiFile.readline()'
115 line = self.readline()
124 while self.readline(): pass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
text_file.py 33 something that provides 'readline()' and 'close()' methods). It is
39 'readline()':
64 semantics of 'readline()' must differ from those of the builtin file
65 object's 'readline()' method! In particular, 'readline()' returns
82 the values returned by 'readline()'."""
161 def readline (self): member in class:TextFile
167 'warn()' after 'readline()' emits a warning about the physical
185 line = self.file.readline()
284 # readline ()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rlcompleter.py 1 """Word completion for GNU readline.
12 readline.parse_and_bind("tab: complete")
17 the completion to fail). This is a feature -- since readline sets the tty
27 - GNU readline is also used by the built-in functions input() and
33 - When the original stdin is not a tty device, GNU readline is never
34 used, and this module (and the readline module) are silently inactive.
54 readline via the set_completer() call:
56 readline.set_completer(Completer(my_namespace).complete)
162 import readline namespace
166 readline.set_completer(Completer().complete
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
proxyshaper.py 92 def readline(self, size=-1): member in class:RateLimitedFile
93 return self._read(self.original_file.readline, size)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
file_part.py 86 def readline(self, size=None): member in class:FilePart
87 raise NotImplementedError('readline is not implemented in FilePart.')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
keyfile.py 121 def readline(self): member in class:KeyFile
122 raise NotImplementedError('readline not implemented in KeyFile')

Completed in 754 milliseconds

1 2 3 4 5 6 7