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

123

/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dseek.js11 seek(mediaElements[i], seekTime, logSeekTime);
15 function seek(element, seekTime, logSeekTime) { function
19 throw new Error('Can not seek non HTML5 media elements.');
58 throw new Error('Cannot seek in network state: ' + element.networkState);
H A Dseek_unittest.py6 from telemetry.page.actions import seek namespace
24 action = seek.SeekAction(data)
34 action = seek.SeekAction(data)
47 action = seek.SeekAction(data)
58 """Tests that wait_for_seeked timeouts if video does not seek."""
63 action = seek.SeekAction(data)
71 """Tests that seek action fails with no seek time."""
73 action = seek.SeekAction(data)
/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/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:__anon17682
/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.cpp65 void FileWriterSync::seek(long long position, ExceptionState& es) function in class:WebCore::FileWriterSync
H A DFileWriter.cpp129 void FileWriter::seek(long long position, ExceptionState& es) function in class:WebCore::FileWriter
/external/marisa-trie/lib/marisa/
H A Dmapper.cc88 temp.seek(offset, whence);
112 temp.seek(offset, whence);
135 void Mapper::seek(long offset, int whence) { function in class:marisa::Mapper
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dmapper.cc91 temp.seek(offset, whence);
116 temp.seek(offset, whence);
139 void Mapper::seek(long offset, int whence) { function in class:marisa_alpha::Mapper
/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/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
H A DSkiaSharedBufferStream.cpp90 bool SkiaSharedBufferStream::seek(size_t position) function in class:WebCore::SkiaSharedBufferStream
98 return this->seek(m_offset + offset);
/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/util/ui/
H A Dbrowser.h23 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...]

Completed in 1332 milliseconds

123