HomeSort by relevance Sort by last modified time
    Searched defs:Seek (Results 1 - 25 of 55) sorted by null

1 2 3

  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 62 bool FileWrapperInput::Seek(uint32_t pos) {
in_memory_wrapper_input.cpp 53 bool InMemoryWrapperInput::Seek(uint32_t pos) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 82 /// <see cref="IIntStream.Release"/> and <see cref="IIntStream.Seek"/>.
98 /// It's like Seek(last marker's input position).
107 /// the backward seek.
118 /// normally used to seek ahead in the input stream.
122 /// will use seek to move backwards such as when backtracking.
137 /// The index is 0..n-1. A seek to position i means that LA(1) will return
141 void Seek(int index);
ANTLRStringStream.cs 228 Seek(state.p);
250 public virtual void Seek(int index) {
255 // seek forward, consume until p hits index
BufferedTokenStream.cs 157 Seek(marker);
161 Seek(_lastMarker);
169 public virtual void Seek(int index) {
LegacyCommonTokenStream.cs 393 Seek(marker);
397 Seek(lastMarker);
405 public virtual void Seek(int index) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 80 * essentially calling release() and seek(). If there are markers
96 * the marker off. It's like seek(last marker's input position).
105 * rewind() except it releases resources without the backward seek.
115 * normally used to seek ahead in the input stream. No buffering is
116 * required to do this unless you know your stream will use seek to
132 * The index is 0..n-1. A seek to position i means that LA(1) will
137 void Seek( int index );
ANTLRStringStream.cs 261 Seek( state.p );
285 public virtual void Seek( int index )
292 // seek forward, consume until p hits index
BufferedTokenStream.cs 181 Seek(marker);
186 Seek(_lastMarker);
195 public virtual void Seek(int index)
LegacyCommonTokenStream.cs 450 Seek( marker );
455 Seek( lastMarker );
464 public virtual void Seek( int index )
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 78 void RingBuffer::Seek(int reader, int64 position) {
  /external/zlib/src/contrib/delphi/
ZLib.pas 62 stream will raise an exception. Using Seek to move the stream pointer
93 function Seek(Offset: Longint; Origin: Word): Longint; override;
101 is read-only and unidirectional; you can seek forward in the stream, but not
122 function Seek(Offset: Longint; Origin: Word): Longint; override;
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
493 FStrm.Seek(-FZRec.avail_in, 1);
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 141 public virtual void Seek(int index) {
142 // TODO: implement seek in dbg interface
143 // db.seek(index);
144 input.Seek(index);
DebugTreeNodeStream.cs 157 public virtual void Seek(int index) {
158 // TODO: implement seek in dbg interface
159 // db.seek(index);
160 input.Seek(index);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
LookaheadStream.cs 170 Seek(marker);
175 Seek(_lastMarker);
179 * Seek to a 0-indexed position within data buffer. Can't handle
180 * case where you seek beyond end of existing buffer. Normally used
181 * to seek backwards in the buffer. Does not force loading of nodes.
186 public virtual void Seek(int index) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
LookaheadStream.cs 204 Seek( marker );
214 * Seek to a 0-indexed position within data buffer. Can't handle
215 * case where you seek beyond end of existing buffer. Normally used
216 * to seek backwards in the buffer. Does not force loading of nodes.
221 public virtual void Seek( int index )
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 166 public virtual void Seek( int index )
168 // TODO: implement seek in dbg interface
169 // db.seek(index);
170 input.Seek( index );
DebugTreeNodeStream.cs 183 public virtual void Seek( int index )
185 // TODO: implement seek in dbg interface
186 // db.seek(index);
187 input.Seek( index );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 280 Seek( state.p );
306 public void Seek( int index )
313 // seek forward, consume until p hits index
SlimTokenStream.cs 353 Seek( marker );
358 Seek( lastMarker );
367 public void Seek( int index )
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
mutable-fst.h 154 void Seek(size_t a) { data_.base->Seek(a); }
  /external/v8/src/
unicode-inl.h 236 void InputBuffer<R, I, s>::Seek(unsigned position) {
  /external/webkit/Source/WebKit/win/
MemoryStream.cpp 124 HRESULT STDMETHODCALLTYPE MemoryStream::Seek(
  /external/skia/src/utils/win/
SkIStream.cpp 93 HRESULT STDMETHODCALLTYPE SkBaseIStream::Seek(LARGE_INTEGER liDistanceToMove
144 HRESULT STDMETHODCALLTYPE SkIStream::Seek(LARGE_INTEGER liDistanceToMove
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 407 Seek(marker);
411 Seek(lastMarker);
414 public virtual void Seek(int index) {
431 Seek(index);
435 * Seek back to previous index saved during last push() call.
441 Seek(ret);

Completed in 301 milliseconds

1 2 3