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

123

/external/flac/include/FLAC/
H A Dcallback.h130 /** Signature for the tell callback.
174 FLAC__IOCallback_Tell tell; member in struct:__anon7209
/external/python/cpython2/Lib/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:
/external/python/cpython2/Lib/
H A Dchunk.py41 read, close, seek, tell, isatty.
72 self.offset = self.file.tell()
117 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.py216 def tell(self): member in class:Tokenizer
501 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
207 self._data_pos = file.tell()
276 def tell(self): member in class:Au_read
389 def tell(self): member in class:Au_write
461 self._form_length_pos = self._file.tell()
H A Dtempfile.py536 if max_size and file.tell() > max_size:
546 newfile.seek(file.tell(), 0)
618 def tell(self): member in class:SpooledTemporaryFile
619 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
115 available through the tell() method, set through the
189 def tell(self): member in class:Wave_read
248 # "tell" data chunk how much was read
284 _file -- the open file with methods write(), close(), tell(), seek()
418 def tell(self): member in class:Wave_write
481 self._form_length_pos = self._file.tell()
[all...]
/external/python/cpython3/Lib/
H A Dchunk.py41 read, close, seek, tell, isatty.
72 self.offset = self.file.tell()
117 def tell(self): member in class:Chunk
H A D_compression.py150 def tell(self): member in class:DecompressReader
H A Dlzma.py255 def tell(self): member in class:LZMAFile
259 return self._buffer.tell()
H A Dbz2.py280 def tell(self): member in class:BZ2File
285 return self._buffer.tell()
H A Dsre_parse.py285 def tell(self): member in class:Tokenizer
292 return error(msg, self.string, self.tell() - offset)
413 start = source.tell()
508 here = source.tell() - 1
522 source.tell() - here)
534 source.tell() - here)
570 here = source.tell()
605 source.tell() - here)
615 source.tell() - here + len(this))
618 source.tell()
[all...]
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
217 self._data_pos = file.tell()
286 def tell(self): member in class:Au_read
413 def tell(self): member in class:Au_write
493 self._form_length_pos = 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
195 def tell(self): member in class:Wave_read
270 _file -- the open file with methods write(), close(), tell(), seek()
410 def tell(self): member in class:Wave_write
466 self._form_length_pos = self._file.tell()
476 self._data_length_pos = self._file.tell()
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_imghdr.py22 def tell(self): member in class:UnseekableIO
61 pos = stream.tell()
66 self.assertEqual(stream.tell(), pos)
H A Daudiotests.py10 def tell(self): member in class:UnseekableIO
233 self.assertEqual(f.tell(), 0)
236 pos0 = f.tell()
239 pos2 = f.tell()
/external/python/cpython2/Tools/framer/
H A Dexample.py80 def tell(self): member in class:cStringIO.InputType
/external/python/cpython3/Lib/test/
H A Dtest_imghdr.py26 def tell(self): member in class:UnseekableIO
70 pos = stream.tell()
75 self.assertEqual(stream.tell(), pos)
H A Daudiotests.py8 def tell(self): member in class:UnseekableIO
281 self.assertEqual(f.tell(), 0)
284 pos0 = f.tell()
287 pos2 = f.tell()
/external/libopus/celt/tests/
H A Dtest_unit_entropy.c170 unsigned *tell; local
177 tell=(unsigned *)malloc((sz+1)*sizeof(*tell));
180 tell[0]=ec_tell_frac(&enc);
187 tell[j+1]=ec_tell_frac(&enc);
206 if(ec_tell_frac(&dec)!=tell[0]){
209 0,ec_tell_frac(&dec),tell[0],seed);
219 if(ec_tell_frac(&dec)!=tell[j+1]){
222 j+1,ec_tell_frac(&dec),tell[j+1],seed);
225 free(tell);
232 unsigned *tell; local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A Draw_ostream.h83 /// tell - Return the current offset with the file.
84 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); } function in class:llvm::raw_ostream
/external/tensorflow/tensorflow/python/lib/io/
H A Dfile_io.py123 length = self.size() - self.tell()
165 offset += self.tell()
192 def tell(self): member in class:FileIO
/external/ImageMagick/MagickCore/
H A Dnt-base.h253 # define tell _telli64 macro
255 # define tell _tell macro

Completed in 575 milliseconds

123