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

123

/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:__anon5400
/external/okhttp/src/main/java/libcore/io/
H A DBufferIterator.java29 public abstract void seek(int offset); method in class:BufferIterator
/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/webkit/Source/WebCore/fileapi/
H A DFileWriterSync.cpp65 void FileWriterSync::seek(long long position, ExceptionCode& ec) function in class:WebCore::FileWriterSync
H A DFileWriter.cpp101 void FileWriter::seek(long long position, ExceptionCode& ec) function in class:WebCore::FileWriter
/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBIterator.cpp67 void LevelDBIterator::seek(const Vector<char>& target) function in class:WebCore::LevelDBIterator
/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/util/ui/
H A Dbrowser.h23 void (*seek)(struct ui_browser *self, off_t offset, int whence); member in struct:ui_browser
/external/llvm/test/Scripts/
H A Delf-dump12 # Snarf all the data so we can seek.
20 def seek(self, pos): member in class:Reader
21 self.file.seek(pos)
88 f.seek(self.sh_offset[0])
100 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
123 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
180 f.seek(16) # Seek to end of e_ident.
209 f.seek(e_shoff[0] + index * e_shentsize[0])
214 f.seek(sections[e_shstrndx[0]].sh_offset[0])
221 f.seek(sectio
[all...]
H A Dmacho-dumpx12 # Snarf all the data so we can seek.
24 def seek(self, pos): member in class:Reader
25 self.file.seek(pos)
171 f.seek(stroff)
177 f.seek(symoff)
183 f.seek(prev_pos)
228 f.seek(indirectsymoff)
235 f.seek(prev_pos)
265 f.seek(reloc_offset)
274 f.seek(offse
[all...]
/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/libvpx/nestegg/include/nestegg/
H A Dnestegg.h95 /** User supplied seek callback.
96 @param offset Offset within the stream to seek to.
102 int (* seek)(int64_t offset, int whence, void * userdata); member in struct:__anon8154
173 /** Seek @a track to @a tstamp. Stream seek will terminate at the earliest

Completed in 378 milliseconds

123