Searched refs:seek (Results 126 - 150 of 387) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DParser.as45 input.seek(0); // rewind the input
H A DCommonTokenStream.as318 seek(marker);
322 seek(lastMarker);
325 public function seek(index:int):void { function
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DParser.js14 this.input.seek(0); // rewind the input
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTokenStream.h76 - (void) seek:(NSInteger)index;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTokenStream.h76 - (void) seek:(NSInteger)index;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTokenStream.h76 - (void) seek:(NSInteger)index;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTokenStream.h87 - (void) seek:(NSInteger)index;
H A DANTLRStringStream.h78 // seek and rewind in the stream
83 - (void) seek:(NSInteger) index;
/external/autotest/client/common_lib/cros/fake_device_server/
H A Dcommon_util_unittest.py29 json_file.seek(0)
/external/autotest/client/cros/image_comparison/
H A Dpublisher.py99 f.seek(0)
/external/autotest/client/site_tests/power_AudioDetector/
H A Dpower_AudioDetector.py91 dbus_log.seek(0)
/external/blktrace/btt/
H A DMakefile17 misc.o output.o proc.o seek.o trace.o trace_complete.o trace_im.o \
/external/llvm/utils/
H A Dsort_includes.py80 f.seek(0)
/external/skia/include/core/
H A DSkStream.h116 * If an attempt is made to seek past the end of the stream, the position will be set
119 virtual bool seek(size_t /*position*/) { return false; } function in class:SkStream
151 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
158 bool seek(size_t position) override = 0;
279 bool seek(size_t position) override;
338 bool seek(size_t position) override;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBufferedTokenStream.java94 seek(marker);
98 seek(lastMarker);
106 public void seek(int index) { p = index; } method in class:BufferedTokenStream
H A DLegacyCommonTokenStream.java339 seek(marker);
343 seek(lastMarker);
351 public void seek(int index) { method in class:LegacyCommonTokenStream
/external/autotest/client/cros/
H A Downership.py364 data_file.fo.seek(0)
376 err.fo.seek(0)
380 sig.fo.seek(0)
/external/python/cpython2/Lib/
H A Ddumbdbm.py124 f.seek(pos)
134 f.seek(0, 2)
148 f.seek(pos)
H A Dwave.py8 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
100 _file -- the open file with methods read(), close(), and seek()
229 self._data_chunk.seek(0, 0)
232 self._data_chunk.seek(pos, 0)
284 _file -- the open file with methods write(), close(), tell(), seek()
497 self._file.seek(self._form_length_pos, 0)
499 self._file.seek(sel
[all...]
H A Dmailbox.py210 buffer.seek(0)
657 self._file.seek(0, 2)
670 self._file.seek(start)
743 self._file.seek(0, 2)
772 self._file.seek(start)
782 self._file.seek(start)
791 self._file.seek(start)
842 self._file.seek(0)
891 self._file.seek(0)
913 self._file.seek(
1908 def seek(self, offset, whence=0): member in class:_ProxyFile
1945 def seek(self, offset, whence=0): member in class:_PartialFile
[all...]
H A D_pyio.py61 current seek position). In text mode, if encoding is not specified the
307 def seek(self, pos, whence=0): member in class:IOBase
320 self._unsupported("seek")
324 return self.seek(0, 1)
374 If False, seek(), tell() and truncate() will raise IOError.
375 This method may need to do a test seek().
700 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
701 new_position = self.raw.seek(pos, whence)
703 raise IOError("seek() returned an invalid position")
720 # XXX: Should seek() b
855 def seek(self, pos, whence=0): member in class:BytesIO
1051 def seek(self, pos, whence=0): member in class:BufferedReader
1150 def seek(self, pos, whence=0): member in class:BufferedWriter
1249 def seek(self, pos, whence=0): member in class:BufferedRandom
1791 def seek(self, cookie, whence=0): member in class:TextIOWrapper
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_cpickle.py34 f.seek(0)
92 f.seek(0)
150 f.seek(0)
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py410 stream.seek(-2,1)
444 stream.seek(-2,1)
475 stream.seek(-2,1)
501 stream.seek(-2,1)
529 stream.seek(-2,1)
555 stream.seek(-1,1)
579 stream.seek(-1,1)
603 stream.seek(-2,1)
633 stream.seek(pos,0)
665 stream.seek(po
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontreenodestream.c73 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(ctn
[all...]
/external/emma/core/java12/com/vladium/emma/data/
H A DDataFactory.java432 raf.seek (FILE_HEADER_LENGTH);
475 raf.seek (position);
566 // raf.seek (FILE_HEADER_LENGTH);
604 raf.seek (FILE_HEADER_LENGTH);
635 raf.seek (position);
668 if (truncate) raf.seek (0);
741 raf.seek (marker);

Completed in 594 milliseconds

1234567891011>>