HomeSort by relevance Sort by last modified time
    Searched defs:tell (Results 76 - 100 of 140) sorted by null

1 2 34 5 6

  /prebuilts/gdb/linux-x86/lib/python2.7/
sre_parse.py 206 def tell(self): member in class:Tokenizer
486 here = source.tell()
sunau.py 63 tell() -- return the current position
65 The position returned by tell() and the position given to setpos()
74 The open file pointer must have methods write(), tell(), seek(), and
86 tell() -- return current position in output file
269 def tell(self): member in class:Au_read
380 def tell(self): member in class:Au_write
tempfile.py 514 if max_size and file.tell() > max_size:
524 newfile.seek(file.tell(), 0)
596 def tell(self): member in class:SpooledTemporaryFile
597 return self._file.tell()
aifc.py 81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
278 # available through the tell() method, set through the
365 def tell(self): member in class:Aifc_read
538 # _file -- the open file with methods write(), close(), tell(), seek()
716 def tell(self): member in class:Aifc_write
856 self._form_length_pos = self._file.tell()
868 self._nframes_pos = self._file.tell()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 206 def tell(self): member in class:Tokenizer
486 here = source.tell()
sunau.py 63 tell() -- return the current position
65 The position returned by tell() and the position given to setpos()
74 The open file pointer must have methods write(), tell(), seek(), and
86 tell() -- return current position in output file
269 def tell(self): member in class:Au_read
380 def tell(self): member in class:Au_write
tempfile.py 514 if max_size and file.tell() > max_size:
524 newfile.seek(file.tell(), 0)
596 def tell(self): member in class:SpooledTemporaryFile
597 return self._file.tell()
aifc.py 81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
278 # available through the tell() method, set through the
365 def tell(self): member in class:Aifc_read
538 # _file -- the open file with methods write(), close(), tell(), seek()
716 def tell(self): member in class:Aifc_write
856 self._form_length_pos = self._file.tell()
868 self._nframes_pos = self._file.tell()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_parse.py 206 def tell(self): member in class:Tokenizer
486 here = source.tell()
sunau.py 63 tell() -- return the current position
65 The position returned by tell() and the position given to setpos()
74 The open file pointer must have methods write(), tell(), seek(), and
86 tell() -- return current position in output file
269 def tell(self): member in class:Au_read
380 def tell(self): member in class:Au_write
tempfile.py 514 if max_size and file.tell() > max_size:
524 newfile.seek(file.tell(), 0)
596 def tell(self): member in class:SpooledTemporaryFile
597 return self._file.tell()
aifc.py 81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
278 # available through the tell() method, set through the
365 def tell(self): member in class:Aifc_read
538 # _file -- the open file with methods write(), close(), tell(), seek()
716 def tell(self): member in class:Aifc_write
856 self._form_length_pos = self._file.tell()
868 self._nframes_pos = self._file.tell()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
aifc.py 81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
266 # available through the tell() method, set through the
353 def tell(self): member in class:Aifc_read
526 # _file -- the open file with methods write(), close(), tell(), seek()
704 def tell(self): member in class:Aifc_write
838 self._form_length_pos = self._file.tell()
850 self._nframes_pos = self._file.tell()
    [all...]
_pyio.py 312 def tell(self): member in class:IOBase
319 Size defaults to the current IO position as reported by tell(). Return
362 If False, seek(), tell() and truncate() will raise IOError.
696 def tell(self): member in class:_BufferedIOMixin
697 pos = self.raw.tell()
699 raise IOError("tell() returned an invalid position")
709 pos = self.tell()
861 def tell(self): member in class:BytesIO
863 raise ValueError("tell on closed file")
1029 def tell(self): member in class:BufferedReader
1133 def tell(self): member in class:BufferedWriter
1250 def tell(self): member in class:BufferedRandom
1690 def tell(self): member in class:TextIOWrapper
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.h 253 # define tell _telli64 macro
255 # define tell _tell macro
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 41 uint64_t tell() { return OS.tell(); } function in class:llvm::ProfOStream
242 uint64_t HashTableStartFieldOffset = OS.tell();
250 uint64_t SummaryOffset = OS.tell();
  /external/python/cpython2/Lib/
aifc.py 81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
278 # available through the tell() method, set through the
368 def tell(self): member in class:Aifc_read
540 # _file -- the open file with methods write(), close(), tell(), seek()
718 def tell(self): member in class:Aifc_write
859 self._form_length_pos = self._file.tell()
874 self._nframes_pos = self._file.tell()
    [all...]
_pyio.py 322 def tell(self): member in class:IOBase
329 Size defaults to the current IO position as reported by tell(). Return
374 If False, seek(), tell() and truncate() will raise IOError.
706 def tell(self): member in class:_BufferedIOMixin
707 pos = self.raw.tell()
709 raise IOError("tell() returned an invalid position")
719 pos = self.tell()
874 def tell(self): member in class:BytesIO
876 raise ValueError("tell on closed file")
1048 def tell(self): member in class:BufferedReader
1147 def tell(self): member in class:BufferedWriter
1266 def tell(self): member in class:BufferedRandom
1715 def tell(self): member in class:TextIOWrapper
    [all...]
  /external/python/cpython3/Lib/
aifc.py 81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
293 # available through the tell() method, set through the
381 def tell(self): member in class:Aifc_read
527 # _file -- the open file with methods write(), close(), tell(), seek()
716 def tell(self): member in class:Aifc_write
819 self._form_length_pos = self._file.tell()
834 self._nframes_pos = self._file.tell()
    [all...]
tempfile.py 656 if max_size and file.tell() > max_size:
666 newfile.seek(file.tell(), 0)
753 def tell(self): member in class:SpooledTemporaryFile
754 return self._file.tell()
_pyio.py 343 def tell(self): member in class:IOBase
350 Size defaults to the current IO position as reported by tell(). Return
395 If False, seek(), tell() and truncate() will raise OSError.
747 def tell(self): member in class:_BufferedIOMixin
748 pos = self.raw.tell()
750 raise OSError("tell() returned an invalid position")
760 pos = self.tell()
923 def tell(self): member in class:BytesIO
925 raise ValueError("tell on closed file")
1140 def tell(self): member in class:BufferedReader
1232 def tell(self): member in class:BufferedWriter
1347 def tell(self): member in class:BufferedRandom
1637 def tell(self): member in class:FileIO
2168 def tell(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
aifc.py 81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
278 # available through the tell() method, set through the
365 def tell(self): member in class:Aifc_read
538 # _file -- the open file with methods write(), close(), tell(), seek()
716 def tell(self): member in class:Aifc_write
856 self._form_length_pos = self._file.tell()
868 self._nframes_pos = self._file.tell()
    [all...]
  /external/avb/
avbtool 629 tell(), and read() methods. For writing, only truncation
674 self.image_size = self._image.tell()
706 chunk_offset = self._image.tell()
722 self._image.tell(),
759 self._sparse_end = self._image.tell()
806 self._image.truncate(self._image.tell() + num_bytes)
946 def tell(self): member in class:ImageHandler
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/
serialutil.py 211 def tell(self): member in class:FileLike
  /external/python/cpython3/Lib/xml/etree/
ElementTree.py 825 file.tell = file_or_filename.tell
1152 def tell(self): member in class:_ListDataStream
    [all...]

Completed in 853 milliseconds

1 2 34 5 6