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

1234

/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
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dseek_unittest.py6 from telemetry.page.actions import seek namespace
21 action = seek.SeekAction(seconds=1, timeout_in_seconds=10)
30 action = seek.SeekAction(seconds=1, selector='#video_1',
43 action = seek.SeekAction(seconds=1, selector='all',
55 """Tests that wait_for_seeked timeouts if video does not seek."""
56 action = seek.SeekAction(seconds=1, selector='#video_1',
/external/flac/include/FLAC/
H A Dcallback.h116 /** Signature for the seek callback.
166 * If the seek requirement for an interface is optional, you can signify that
167 * a data sorce is not seekable by setting the \a seek field to \c NULL.
172 FLAC__IOCallback_Seek seek; member in struct:__anon21456
/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/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterSync.cpp64 void FileWriterSync::seek(long long position, ExceptionState& exceptionState) function in class:blink::FileWriterSync
H A DFileWriter.cpp129 void FileWriter::seek(long long position, ExceptionState& exceptionState) function in class:blink::FileWriter
/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/guava/guava/src/com/google/common/collect/
H A DBstOperations.java40 public static <K, N extends BstNode<K, N>> N seek( method in class:BstOperations
51 return seek(comparator, tree.childOrNull(side), key);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dbrowser.h26 void (*seek)(struct ui_browser *self, off_t offset, int whence); member in struct:ui_browser
/external/srec/portable/include/
H A DPFile.h140 ESR_ReturnCode(*seek)(struct PFile_t* self, long offset, int origin); member in struct:PFile_t
/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/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_newlib.cc65 OP(fdio, seek); \
125 int WRAP(seek)(int fd, off_t offset, int whence, off_t* new_offset) { function
313 CHECK_REAL(seek);
314 return REAL(seek)(fd, offset, whence, new_offset);
/external/chromium_org/third_party/cython/src/Cython/
H A DUtils.py206 f.seek(0)
226 f.seek(0)
264 def seek(self, pos): member in class:NormalisedNewlineStream
266 self.stream.seek(0)
290 f.seek(0)
/external/chromium_org/third_party/zlib/
H A Dgzguts.h107 /* seek request */
109 int seek; /* true if seek request pending */ member in struct:__anon16404
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_rwops.h47 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)

Completed in 447 milliseconds

1234