HomeSort by relevance Sort by last modified time
    Searched defs:tell (Results 26 - 44 of 44) sorted by null

12

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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()
wave.py 30 tell() -- return the current position
32 The position returned by tell() and the position given to setpos()
41 The open file pointer must have methods write(), tell(), seek(), and
54 tell() -- return current position in output file
114 available through the tell() method, set through the
187 def tell(self): member in class:Wave_read
245 # "tell" data chunk how much was read
279 _file -- the open file with methods write(), close(), tell(), seek()
413 def tell(self): member in class:Wave_write
468 self._form_length_pos = self._file.tell()
    [all...]
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...]
_pyio.py 313 def tell(self): member in class:IOBase
320 Size defaults to the current IO position as reported by tell(). Return
365 If False, seek(), tell() and truncate() will raise IOError.
699 def tell(self): member in class:_BufferedIOMixin
700 pos = self.raw.tell()
702 raise IOError("tell() returned an invalid position")
712 pos = self.tell()
867 def tell(self): member in class:BytesIO
869 raise ValueError("tell on closed file")
1041 def tell(self): member in class:BufferedReader
1140 def tell(self): member in class:BufferedWriter
1257 def tell(self): member in class:BufferedRandom
1701 def tell(self): member in class:TextIOWrapper
    [all...]
mailbox.py 652 cur_len = self._file.tell()
666 new_start = new_file.tell()
669 stop - self._file.tell()))
673 new_toc[key] = (new_start, new_file.tell())
675 self._file_length = new_file.tell()
734 before = self._file.tell()
749 self._file_length = self._file.tell() # Record current length of mailbox
764 string = self._file.read(stop - self._file.tell())
775 string = self._file.read(stop - self._file.tell())
784 return _PartialFile(self._file, self._file.tell(), stop
1894 def tell(self): member in class:_ProxyFile
1931 def tell(self): member in class:_PartialFile
    [all...]
tarfile.py 541 def tell(self): member in class:_Stream
688 def tell(self): member in class:_BZ2Proxy
718 def tell(self): member in class:_FileInFile
865 def tell(self): member in class:ExFileObject
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
exif_encoder.js 198 // Use a ByteWriter starting at HEADER_SIZE offset so that tell() positions
252 var totalSize = HEADER_SIZE + bw.tell();
451 ByteWriter.prototype.tell = function() { return this.pos_ };
559 this.resolve(key, this.tell());
  /prebuilts/python/darwin-x86/2.7.5/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...]
_pyio.py 313 def tell(self): member in class:IOBase
320 Size defaults to the current IO position as reported by tell(). Return
365 If False, seek(), tell() and truncate() will raise IOError.
699 def tell(self): member in class:_BufferedIOMixin
700 pos = self.raw.tell()
702 raise IOError("tell() returned an invalid position")
712 pos = self.tell()
867 def tell(self): member in class:BytesIO
869 raise ValueError("tell on closed file")
1041 def tell(self): member in class:BufferedReader
1140 def tell(self): member in class:BufferedWriter
1257 def tell(self): member in class:BufferedRandom
1701 def tell(self): member in class:TextIOWrapper
    [all...]
mailbox.py 652 cur_len = self._file.tell()
666 new_start = new_file.tell()
669 stop - self._file.tell()))
673 new_toc[key] = (new_start, new_file.tell())
675 self._file_length = new_file.tell()
734 before = self._file.tell()
749 self._file_length = self._file.tell() # Record current length of mailbox
764 string = self._file.read(stop - self._file.tell())
775 string = self._file.read(stop - self._file.tell())
784 return _PartialFile(self._file, self._file.tell(), stop
1894 def tell(self): member in class:_ProxyFile
1931 def tell(self): member in class:_PartialFile
    [all...]
tarfile.py 541 def tell(self): member in class:_Stream
688 def tell(self): member in class:_BZ2Proxy
718 def tell(self): member in class:_FileInFile
865 def tell(self): member in class:ExFileObject
    [all...]
  /external/chromium_org/crypto/
openpgp_symmetric_encryption.cc 70 Position tell() const { function in class:crypto::__anon8339::Reader
285 const Reader::Position beginning_of_stream = reader->tell();
  /external/chromium_org/third_party/opus/src/celt/
bands.c 657 opus_int32 tell; local
687 tell = ec_tell_frac(ec);
788 qalloc = ec_tell_frac(ec) - tell;
1390 opus_int32 tell; local
    [all...]
celt_decoder.c 293 opus_uint32 tell; local
296 tell = ec_tell(dec);
298 tf_select_rsv = LM>0 && tell+logp+1<=budget;
303 if (tell+logp<=budget)
306 tell = ec_tell(dec);
688 opus_int32 tell; local
780 tell = ec_tell(dec);
782 if (tell >= total_bits)
784 else if (tell==1)
791 tell = len*8
    [all...]
celt_encoder.c 709 opus_uint32 tell; local
711 tell = ec_tell(enc);
714 tf_select_rsv = LM>0 && tell+logp+1 <= budget;
719 if (tell+logp<=budget)
722 tell = ec_tell(enc);
1275 opus_int32 tell; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
AppleScript_Suite.py 367 """end tell: Record or log an \xd4end tell\xd5 statement
639 def tell(self, _no_object=None, _attributes={}, **_arguments): member in class:AppleScript_Suite_Events
640 """tell: Record or log a \xd4tell\xd5 statement
644 _subcode = 'tell'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py 91 def tell(self): member in class:MockRawIOWithoutRead
152 def tell(self): member in class:MisbehavedRawIO
266 self.assertEqual(f.tell(), 5)
272 self.assertEqual(f.tell(), 6)
274 self.assertEqual(f.tell(), 5)
279 self.assertEqual(f.tell(), 13)
282 self.assertEqual(f.tell(), 13)
304 self.assertEqual(f.tell(), 10)
319 self.assertEqual(f.tell(), self.LARGE)
321 self.assertEqual(f.tell(), self.LARGE + 3
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py 91 def tell(self): member in class:MockRawIOWithoutRead
152 def tell(self): member in class:MisbehavedRawIO
266 self.assertEqual(f.tell(), 5)
272 self.assertEqual(f.tell(), 6)
274 self.assertEqual(f.tell(), 5)
279 self.assertEqual(f.tell(), 13)
282 self.assertEqual(f.tell(), 13)
304 self.assertEqual(f.tell(), 10)
319 self.assertEqual(f.tell(), self.LARGE)
321 self.assertEqual(f.tell(), self.LARGE + 3
    [all...]
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 94 def tell(self): member in class:BinaryReader
95 return self.file.tell()
194 f.seek(f.tell())
199 pos = f.tell()
385 start = f.tell()
390 if f.tell() - start != loadCommandsSize:
395 start = f.tell()
406 if f.tell() - start != cmdSize:
438 prev_pos = f.tell()
445 pos = f.tell()
    [all...]

Completed in 450 milliseconds

12