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

1 2 3 4 5

  /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
  /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
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
file_wrapper_input.h 42 virtual bool Seek(uint32_t pos);
in_memory_wrapper_input.h 42 virtual bool Seek(uint32_t pos);
wrapper_input.h 44 virtual bool Seek(uint32_t pos) = 0;
bitcode_wrapperer.h 164 bool Seek(uint32_t pos);
  /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) {
  /frameworks/compile/libbcc/bcinfo/Wrap/
in_memory_wrapper_input.cpp 53 bool InMemoryWrapperInput::Seek(uint32_t pos) {
file_wrapper_input.cpp 62 bool FileWrapperInput::Seek(uint32_t pos) {
bitcode_wrapperer.cpp 97 bool BitcodeWrapperer::Seek(uint32_t pos) {
98 if (infile_ != NULL && infile_->Seek(pos)) {
257 Seek(0);
371 Seek(infile_bc_offset_) &&
383 return !error_ && Seek(infile_bc_offset_) &&
  /frameworks/ex/variablespeed/jni/
ring_buffer.h 54 void Seek(int reader, int64 position);
  /external/chromium/net/base/
file_stream.h 60 // error code is returned. It is not valid to call Seek while a Read call
62 int64 Seek(Whence whence, int64 offset);
file_stream_unittest.cc 58 // Seek to the beginning of the file and read.
60 ASSERT_EQ(0, read_stream.Seek(FROM_BEGIN, 0));
74 ASSERT_EQ(0, write_stream.Seek(FROM_BEGIN, 0));
90 int64 new_offset = stream.Seek(FROM_BEGIN, 5);
210 int64 new_offset = stream.Seek(FROM_BEGIN, kOffset);
246 int64 new_offset = stream.Seek(FROM_BEGIN, kOffset);
280 int64 new_offset = stream.Seek(FROM_BEGIN, kOffset);
283 new_offset = stream.Seek(FROM_CURRENT, kOffset);
286 new_offset = stream.Seek(FROM_CURRENT, -kOffset);
291 new_offset = stream.Seek(FROM_END, -kTestDataLen)
    [all...]
  /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/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/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
  /external/skia/include/utils/win/
SkIStream.h 69 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove
100 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove
  /external/skia/legacy/include/utils/win/
SkIStream.h 69 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove
100 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove
  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBIterator.cpp 67 void LevelDBIterator::seek(const Vector<char>& target) function in class:WebCore::LevelDBIterator
69 m_iterator->Seek(makeSlice(target));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeNodeStream.cs 176 Seek(index);
179 /** Seek back to previous index saved during last push() call.
184 Seek(ret);

Completed in 1526 milliseconds

1 2 3 4 5