Searched defs:tell (Results 1 - 25 of 34) sorted by relevance

12

/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
H A Daf_vfs.h40 long (*tell) (AFvirtualfile *vfile); member in struct:_AFvirtualfile
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
H A Daf_vfs.h40 long (*tell) (AFvirtualfile *vfile); member in struct:_AFvirtualfile
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
H A Daf_vfs.h40 long (*tell) (AFvirtualfile *vfile); member in struct:_AFvirtualfile
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
H A Ddbrecio.py10 pos = f.tell() # get current position
63 def tell(self): member in class:DBRecIO
162 length = f.tell()
168 here = f.tell()
178 f.seek(f.tell() - len(line))
183 print 'File length =', f.tell()
184 if f.tell() != length:
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dchunk.py41 read, close, seek, tell, isatty.
72 self.offset = self.file.tell()
115 def tell(self): member in class:Chunk
H A Dmultifile.py50 self.start = self.fp.tell()
53 def tell(self): member in class:MultiFile
56 return self.fp.tell() - self.start
59 here = self.tell()
106 self.lastpos = self.tell() - len(line)
130 self.start = self.fp.tell()
139 self.start = self.fp.tell()
H A DStringIO.py9 pos = f.tell() # get current position
114 def tell(self): member in class:StringIO
292 length = f.tell()
298 print 'Position =', f.tell()
308 f.seek(f.tell() - len(line))
313 print 'File length =', f.tell()
314 if f.tell() != length:
318 print 'Truncated length =', f.tell()
319 if f.tell() != length/2:
H A Dsre_parse.py206 def tell(self): member in class:Tokenizer
486 here = source.tell()
H A Dsunau.py63 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
H A Dtempfile.py514 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()
H A Dwave.py30 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...]
H A Daifc.py81 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...]
H A D_pyio.py313 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(sel 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...]
H A Dmailbox.py652 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(), sto
1894 def tell(self): member in class:_ProxyFile
1931 def tell(self): member in class:_PartialFile
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
H A Ddbrecio.py10 pos = f.tell() # get current position
63 def tell(self): member in class:DBRecIO
162 length = f.tell()
168 here = f.tell()
178 f.seek(f.tell() - len(line))
183 print 'File length =', f.tell()
184 if f.tell() != length:
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dchunk.py41 read, close, seek, tell, isatty.
72 self.offset = self.file.tell()
115 def tell(self): member in class:Chunk
H A Dmultifile.py50 self.start = self.fp.tell()
53 def tell(self): member in class:MultiFile
56 return self.fp.tell() - self.start
59 here = self.tell()
106 self.lastpos = self.tell() - len(line)
130 self.start = self.fp.tell()
139 self.start = self.fp.tell()
H A DStringIO.py9 pos = f.tell() # get current position
114 def tell(self): member in class:StringIO
292 length = f.tell()
298 print 'Position =', f.tell()
308 f.seek(f.tell() - len(line))
313 print 'File length =', f.tell()
314 if f.tell() != length:
318 print 'Truncated length =', f.tell()
319 if f.tell() != length/2:
H A Dsre_parse.py206 def tell(self): member in class:Tokenizer
486 here = source.tell()
H A Dsunau.py63 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
H A Dtempfile.py514 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()
H A Dwave.py30 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...]
H A Daifc.py81 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...]
H A D_pyio.py313 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(sel 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...]
H A Dmailbox.py652 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(), sto
1894 def tell(self): member in class:_ProxyFile
1931 def tell(self): member in class:_PartialFile
[all...]

Completed in 308 milliseconds

12