Searched defs:seek (Results 1 - 25 of 83) sorted by relevance

1234

/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DSeekableInputStream.java22 * This will not seek past the end of the file. If the current position
23 * is already at or past the end of the file, this doesn't seek at all
26 * equivalent of <code>seek(length())</code> and the return value will
30 * the return value is <code>0</code>. It doesn't seek backward
36 * bytes would seek past the end of the file,
39 * @throws IOException might be thrown by {@link #seek(long)}
53 seek(pos + n);
80 public abstract void seek(long pos) throws IOException; method in class:SeekableInputStream
H A DSeekableFileInputStream.java97 * Calls {@link RandomAccessFile#seek(long) randomAccessFile.seek(long)}.
99 public void seek(long pos) throws IOException { method in class:SeekableFileInputStream
100 randomAccessFile.seek(pos);
H A DSeekableXZInputStream.java60 * that the decompressor will only need to seek to certain uncompressed
161 * True when <code>seek(long)</code> has been called but the actual
168 * calling <code>seek(long)</code>.
314 in.seek(0);
336 in.seek(pos - DecoderUtil.STREAM_HEADER_SIZE);
367 in.seek(pos - streamFooter.backwardSize);
403 in.seek(pos);
671 seek();
678 seek();
772 * very fast. The actual seek i
785 public void seek(long pos) throws IOException { method in class:SeekableXZInputStream
824 private void seek() throws IOException { method in class:SeekableXZInputStream
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as151 seek(state.p);
171 public function seek(index:int):void { function
176 // seek forward, consume until p hits index
H A DCommonTokenStream.as318 seek(marker);
322 seek(lastMarker);
325 public function seek(index:int):void { function
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java61 * essentially calling release() and seek(). If there are markers
75 * the marker off. It's like seek(last marker's input position).
82 * rewind() except it releases resources without the backward seek.
90 * normally used to seek ahead in the input stream. No buffering is
91 * required to do this unless you know your stream will use seek to
105 * The index is 0..n-1. A seek to position i means that LA(1) will
109 void seek(int index); method in interface:IntStream
H A DANTLRStringStream.java174 seek(state.p);
194 public void seek(int index) { method in class:ANTLRStringStream
199 // seek forward, consume until p hits index
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/chromium-trace/catapult/telemetry/telemetry/internal/actions/
H A Dseek_unittest.py6 from telemetry.internal.actions import seek namespace
25 action = seek.SeekAction(seconds=1, timeout_in_seconds=5)
35 action = seek.SeekAction(seconds=1, selector='#video_1',
49 action = seek.SeekAction(seconds=1, selector='all',
62 """Tests that wait_for_seeked timeouts if video does not seek."""
63 action = seek.SeekAction(seconds=1, selector='#video_1',
/external/flac/include/FLAC/
H A Dcallback.h117 /** Signature for the seek callback.
167 * If the seek requirement for an interface is optional, you can signify that
168 * a data sorce is not seekable by setting the \a seek field to \c NULL.
173 FLAC__IOCallback_Seek seek; member in struct:__anon6486
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as293 seek(marker);
297 seek(lastMarker);
300 public function seek(index:int):void { function
315 seek(index);
323 seek(ret);
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DANTLRStringStream.pm176 $self->seek($state->get_p);
195 sub seek { subroutine
204 # seek forward, consume until p hits index
H A DCommonTokenStream.pm315 $self->seek($self->last_marker);
318 $self->seek($marker);
322 sub seek { subroutine
/external/autotest/client/site_tests/video_YouTubePage/files/
H A Dvideo_YouTubePageCommon.js44 function seek(time) { function
108 window.__seek = seek;
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3intstream.h142 * essentially calling release() and seek(). If there are markers
157 * rewind() except it releases resources without the backward seek.
162 * normally used to seek ahead in the input stream. No buffering is
163 * required to do this unless you know your stream will use seek to
177 void (*seek) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER index); member in struct:ANTLR3_INT_STREAM_struct
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
159 * case where you seek beyond end of existing buffer. Normally used
160 * to seek backwards in the buffer. Does not force loading of nodes.
162 public void seek(int index) { p = index; } function in class:FastQueue
/external/smali/smalidea/src/main/java/org/jf/smalidea/
H A DPsiBuilderTokenStream.java150 @Override public void seek(int index) { method in class:PsiBuilderTokenStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTokenStream.java127 public void seek(int index) { method in class:DebugTokenStream
128 // TODO: implement seek in dbg interface
129 // db.seek(index);
130 input.seek(index);
H A DDebugTreeNodeStream.java115 public void seek(int index) { method in class:DebugTreeNodeStream
116 // TODO: implement seek in dbg interface
117 // db.seek(index);
118 input.seek(index);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java141 seek(marker); // assume marker is top
146 seek(lastMarker); // rewind but do not release marker
150 * case where you seek beyond end of existing buffer. Normally used
151 * to seek backwards in the buffer. Does not force loading of nodes.
155 public void seek(int index) { p = index; } method in class:LookaheadStream
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb134 === seek
136 <tt>stream.seek(position)</tt> moves the stream cursor to an absolute position
137 within the stream, basically like typical ruby <tt>IO#seek</tt> style methods.
138 However, unlike <tt>IO#seek</tt>, ANTLR streams currently always use absolute
211 # :method: seek( position )
213 abstract :seek
616 def seek( index ) method in class:ANTLR3.that.StringStream
879 seek( marker )
892 seek( pos )
911 # note: seek doe
914 def seek( index ) method in class:ANTLR3.that.CommonTokenStream
[all...]
/external/toybox/toys/posix/
H A Dgrep.c110 struct arg_list *seek, fseek; local
113 for (seek = TT.e; seek; seek = seek->next) {
117 if ((i ? strcasecmp : strcmp)(seek->arg, line)) s = line;
118 } else if (!*seek->arg) {
119 seek = &fseek;
123 if (toys.optflags & FLAG_i) s = strnstr(line, seek->arg);
124 else s = strstr(line, seek
[all...]
/external/ltp/testcases/kernel/syscalls/fcntl/
H A Dfcntl14.c776 void run_test(int file_flag, int file_mode, int seek, int start, int end) argument
790 if (seek) {
791 if (lseek(fd, seek, 0) < 0)
/external/pdfium/third_party/zlib_v128/
H A Dgzguts.h192 /* seek request */
194 int seek; /* true if seek request pending */ member in struct:__anon16035

Completed in 349 milliseconds

1234