HomeSort by relevance Sort by last modified time
    Searched refs:seek (Results 276 - 300 of 1049) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cpickle.py 32 f.seek(0)
59 f.seek(0)
119 f.seek(0)
  /cts/tests/filesystem/src/android/filesystem/cts/
FileUtil.java 127 randomFile.seek(randomFile.length());
129 randomFile.seek(0L);
301 randomFile.seek(readOffsets[j]);
353 randomFile.seek(writeOffsets[j]);
392 randomFile.seek(0L);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
wave.py 8 The open file pointer must have methods read(), seek(), and close().
9 When the setpos() and rewind() methods are not used, the seek()
29 setpos(pos) -- seek to the specified position
41 The open file pointer must have methods write(), tell(), seek(), and
99 _file -- the open file with methods read(), close(), and seek()
227 self._data_chunk.seek(0, 0)
230 self._data_chunk.seek(pos, 0)
279 _file -- the open file with methods write(), close(), tell(), seek()
484 self._file.seek(self._form_length_pos, 0)
486 self._file.seek(self._data_length_pos, 0)
    [all...]
gzip.py 280 self.fileobj.seek(0, 2) # Seek to end of file
284 self.fileobj.seek( pos ) # Return to original position
308 # so seek back to the start of the unused data, finish up
310 # (The number of bytes to seek back is the length of the unused
312 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
333 self.fileobj.seek(-8, 1)
349 self.fileobj.seek(-1, 1)
390 self.fileobj.seek(0)
406 def seek(self, offset, whence=0): member in class:GzipFile
    [all...]
mailbox.py 209 buffer.seek(0)
630 self._file.seek(0, 2)
643 self._file.seek(start)
707 self._file.seek(0, 2)
730 self._file.seek(start)
740 self._file.seek(start)
749 self._file.seek(start)
796 self._file.seek(0)
831 self._file.seek(0)
853 self._file.seek(0, 2)
1848 def seek(self, offset, whence=0): member in class:_ProxyFile
1882 def seek(self, offset, whence=0): member in class:_PartialFile
    [all...]
_pyio.py 59 current seek position). In text mode, if encoding is not specified the
297 def seek(self, pos, whence=0): member in class:IOBase
310 self._unsupported("seek")
314 return self.seek(0, 1)
362 If False, seek(), tell() and truncate() will raise IOError.
363 This method may need to do a test seek().
690 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
691 new_position = self.raw.seek(pos, whence)
693 raise IOError("seek() returned an invalid position")
710 # XXX: Should seek() be used, instead of passing the position
842 def seek(self, pos, whence=0): member in class:BytesIO
1032 def seek(self, pos, whence=0): member in class:BufferedReader
1136 def seek(self, pos, whence=0): member in class:BufferedWriter
1233 def seek(self, pos, whence=0): member in class:BufferedRandom
1766 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
wave.py 8 The open file pointer must have methods read(), seek(), and close().
9 When the setpos() and rewind() methods are not used, the seek()
29 setpos(pos) -- seek to the specified position
41 The open file pointer must have methods write(), tell(), seek(), and
99 _file -- the open file with methods read(), close(), and seek()
227 self._data_chunk.seek(0, 0)
230 self._data_chunk.seek(pos, 0)
279 _file -- the open file with methods write(), close(), tell(), seek()
484 self._file.seek(self._form_length_pos, 0)
486 self._file.seek(self._data_length_pos, 0
    [all...]
gzip.py 289 self.fileobj.seek(0, 2) # Seek to end of file
293 self.fileobj.seek( pos ) # Return to original position
317 # so seek back to the start of the unused data, finish up
319 # (The number of bytes to seek back is the length of the unused
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
342 self.fileobj.seek(-8, 1)
358 self.fileobj.seek(-1, 1)
399 self.fileobj.seek(0)
415 def seek(self, offset, whence=0) member in class:GzipFile
    [all...]
mailbox.py 212 buffer.seek(0)
651 self._file.seek(0, 2)
664 self._file.seek(start)
733 self._file.seek(0, 2)
762 self._file.seek(start)
772 self._file.seek(start)
781 self._file.seek(start)
832 self._file.seek(0)
881 self._file.seek(0)
1898 def seek(self, offset, whence=0): member in class:_ProxyFile
1935 def seek(self, offset, whence=0): member in class:_PartialFile
    [all...]
_pyio.py 60 current seek position). In text mode, if encoding is not specified the
298 def seek(self, pos, whence=0): member in class:IOBase
311 self._unsupported("seek")
315 return self.seek(0, 1)
365 If False, seek(), tell() and truncate() will raise IOError.
366 This method may need to do a test seek().
693 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
694 new_position = self.raw.seek(pos, whence)
696 raise IOError("seek() returned an invalid position")
713 # XXX: Should seek() be used, instead of passing the positio
848 def seek(self, pos, whence=0): member in class:BytesIO
1044 def seek(self, pos, whence=0): member in class:BufferedReader
1143 def seek(self, pos, whence=0): member in class:BufferedWriter
1240 def seek(self, pos, whence=0): member in class:BufferedRandom
1777 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
wave.py 8 The open file pointer must have methods read(), seek(), and close().
9 When the setpos() and rewind() methods are not used, the seek()
29 setpos(pos) -- seek to the specified position
41 The open file pointer must have methods write(), tell(), seek(), and
99 _file -- the open file with methods read(), close(), and seek()
227 self._data_chunk.seek(0, 0)
230 self._data_chunk.seek(pos, 0)
279 _file -- the open file with methods write(), close(), tell(), seek()
484 self._file.seek(self._form_length_pos, 0)
486 self._file.seek(self._data_length_pos, 0
    [all...]
gzip.py 289 self.fileobj.seek(0, 2) # Seek to end of file
293 self.fileobj.seek( pos ) # Return to original position
317 # so seek back to the start of the unused data, finish up
319 # (The number of bytes to seek back is the length of the unused
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
342 self.fileobj.seek(-8, 1)
358 self.fileobj.seek(-1, 1)
399 self.fileobj.seek(0)
415 def seek(self, offset, whence=0) member in class:GzipFile
    [all...]
mailbox.py 212 buffer.seek(0)
651 self._file.seek(0, 2)
664 self._file.seek(start)
733 self._file.seek(0, 2)
762 self._file.seek(start)
772 self._file.seek(start)
781 self._file.seek(start)
832 self._file.seek(0)
881 self._file.seek(0)
1898 def seek(self, offset, whence=0): member in class:_ProxyFile
1935 def seek(self, offset, whence=0): member in class:_PartialFile
    [all...]
_pyio.py 60 current seek position). In text mode, if encoding is not specified the
298 def seek(self, pos, whence=0): member in class:IOBase
311 self._unsupported("seek")
315 return self.seek(0, 1)
365 If False, seek(), tell() and truncate() will raise IOError.
366 This method may need to do a test seek().
693 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
694 new_position = self.raw.seek(pos, whence)
696 raise IOError("seek() returned an invalid position")
713 # XXX: Should seek() be used, instead of passing the positio
848 def seek(self, pos, whence=0): member in class:BytesIO
1044 def seek(self, pos, whence=0): member in class:BufferedReader
1143 def seek(self, pos, whence=0): member in class:BufferedWriter
1240 def seek(self, pos, whence=0): member in class:BufferedRandom
1777 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
wave.py 8 The open file pointer must have methods read(), seek(), and close().
9 When the setpos() and rewind() methods are not used, the seek()
29 setpos(pos) -- seek to the specified position
41 The open file pointer must have methods write(), tell(), seek(), and
99 _file -- the open file with methods read(), close(), and seek()
227 self._data_chunk.seek(0, 0)
230 self._data_chunk.seek(pos, 0)
279 _file -- the open file with methods write(), close(), tell(), seek()
484 self._file.seek(self._form_length_pos, 0)
486 self._file.seek(self._data_length_pos, 0
    [all...]
gzip.py 289 self.fileobj.seek(0, 2) # Seek to end of file
293 self.fileobj.seek( pos ) # Return to original position
317 # so seek back to the start of the unused data, finish up
319 # (The number of bytes to seek back is the length of the unused
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
342 self.fileobj.seek(-8, 1)
358 self.fileobj.seek(-1, 1)
399 self.fileobj.seek(0)
415 def seek(self, offset, whence=0) member in class:GzipFile
    [all...]
mailbox.py 212 buffer.seek(0)
651 self._file.seek(0, 2)
664 self._file.seek(start)
733 self._file.seek(0, 2)
762 self._file.seek(start)
772 self._file.seek(start)
781 self._file.seek(start)
832 self._file.seek(0)
881 self._file.seek(0)
1898 def seek(self, offset, whence=0): member in class:_ProxyFile
1935 def seek(self, offset, whence=0): member in class:_PartialFile
    [all...]
_pyio.py 60 current seek position). In text mode, if encoding is not specified the
298 def seek(self, pos, whence=0): member in class:IOBase
311 self._unsupported("seek")
315 return self.seek(0, 1)
365 If False, seek(), tell() and truncate() will raise IOError.
366 This method may need to do a test seek().
693 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
694 new_position = self.raw.seek(pos, whence)
696 raise IOError("seek() returned an invalid position")
713 # XXX: Should seek() be used, instead of passing the positio
848 def seek(self, pos, whence=0): member in class:BytesIO
1044 def seek(self, pos, whence=0): member in class:BufferedReader
1143 def seek(self, pos, whence=0): member in class:BufferedWriter
1240 def seek(self, pos, whence=0): member in class:BufferedRandom
1777 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
wave.py 8 The open file pointer must have methods read(), seek(), and close().
9 When the setpos() and rewind() methods are not used, the seek()
29 setpos(pos) -- seek to the specified position
41 The open file pointer must have methods write(), tell(), seek(), and
99 _file -- the open file with methods read(), close(), and seek()
227 self._data_chunk.seek(0, 0)
230 self._data_chunk.seek(pos, 0)
279 _file -- the open file with methods write(), close(), tell(), seek()
484 self._file.seek(self._form_length_pos, 0)
486 self._file.seek(self._data_length_pos, 0
    [all...]
gzip.py 289 self.fileobj.seek(0, 2) # Seek to end of file
293 self.fileobj.seek( pos ) # Return to original position
317 # so seek back to the start of the unused data, finish up
319 # (The number of bytes to seek back is the length of the unused
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
342 self.fileobj.seek(-8, 1)
358 self.fileobj.seek(-1, 1)
399 self.fileobj.seek(0)
415 def seek(self, offset, whence=0) member in class:GzipFile
    [all...]
mailbox.py 212 buffer.seek(0)
651 self._file.seek(0, 2)
664 self._file.seek(start)
733 self._file.seek(0, 2)
762 self._file.seek(start)
772 self._file.seek(start)
781 self._file.seek(start)
832 self._file.seek(0)
881 self._file.seek(0)
1898 def seek(self, offset, whence=0): member in class:_ProxyFile
1935 def seek(self, offset, whence=0): member in class:_PartialFile
    [all...]
_pyio.py 60 current seek position). In text mode, if encoding is not specified the
298 def seek(self, pos, whence=0): member in class:IOBase
311 self._unsupported("seek")
315 return self.seek(0, 1)
365 If False, seek(), tell() and truncate() will raise IOError.
366 This method may need to do a test seek().
693 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
694 new_position = self.raw.seek(pos, whence)
696 raise IOError("seek() returned an invalid position")
713 # XXX: Should seek() be used, instead of passing the positio
848 def seek(self, pos, whence=0): member in class:BytesIO
1044 def seek(self, pos, whence=0): member in class:BufferedReader
1143 def seek(self, pos, whence=0): member in class:BufferedWriter
1240 def seek(self, pos, whence=0): member in class:BufferedRandom
1777 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /external/avb/
avbtool 492 For reading, this interface mimics a file object - it has seek(),
537 self._image.seek(0, os.SEEK_END)
540 self._image.seek(0, os.SEEK_SET)
650 self._image.seek(self.NUM_CHUNKS_AND_BLOCKS_OFFSET, os.SEEK_SET)
666 self._image.seek(0, os.SEEK_END)
678 self._image.seek(self._sparse_end, os.SEEK_SET)
697 self._image.seek(0, os.SEEK_END)
706 self._image.seek(self._sparse_end, os.SEEK_SET)
730 self._image.seek(0, os.SEEK_END)
739 self._image.seek(self._sparse_end, os.SEEK_SET
748 def seek(self, offset): member in class:ImageHandler
    [all...]
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 97 def seek(self, pos): member in class:BinaryReader
98 self.file.seek(pos)
183 f.seek(self.sh_offset + index * self.sh_entsize)
194 f.seek(f.tell())
209 f.seek(pos)
279 f.seek(18)
298 f.seek(e_shoff + index * e_shentsize)
302 f.seek(sections[e_shstrndx].sh_offset)
308 f.seek(section.sh_offset)
334 f.seek(20
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontreenodestream.c 73 static void seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER index);
213 stream->tnstream->istream->seek = seek;
355 stream->tnstream->istream->seek = seek;
690 is->seek(is, marker);
696 is->seek(is, is->lastMarker);
703 seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER index) function
957 ctns->tnstream->istream->seek(ctns->tnstream->istream, index);
966 ctns->tnstream->istream->seek(ctns->tnstream->istream, retVal)
    [all...]

Completed in 833 milliseconds

<<11121314151617181920>>