Searched refs:Seek (Results 1 - 25 of 108) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIIntStream.cs82 /// <see cref="IIntStream.Release"/> and <see cref="IIntStream.Seek"/>.
98 /// It's like Seek(last marker's input position).
141 void Seek(int index); method in interface:Antlr.Runtime.IIntStream
H A DANTLRStringStream.cs228 Seek(state.p);
250 public virtual void Seek(int index) { method in class:Antlr.Runtime.ANTLRStringStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIIntStream.cs137 void Seek( int index ); method in interface:Antlr.Runtime.IIntStream
H A DANTLRStringStream.cs261 Seek( state.p );
285 public virtual void Seek( int index ) method in class:Antlr.Runtime.ANTLRStringStream
/external/lzma/CPP/7zip/Common/
H A DOffsetStream.cpp12 return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
20 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, function in class:COffsetOutStream
26 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
H A DOffsetStream.h21 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DLockedStream.cpp11 RINOK(_stream->Seek(startPos, STREAM_SEEK_SET, NULL));
H A DLimitedStreams.h45 HRESULT SeekToPhys() { return _stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
60 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
62 HRESULT SeekToStart() { return Seek(0, STREAM_SEEK_SET, NULL); }
79 HRESULT SeekToPhys() { return Stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
97 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DFileStreams.cpp137 bool result = File.Seek(alignedPos, FILE_BEGIN, realNewPosition);
166 bool result = File.Seek(VirtPos, FILE_BEGIN, realNewPosition);
243 STDMETHODIMP CInFileStream::Seek(Int64 offset, UInt32 seekOrigin, function in class:CInFileStream
270 bool result = File.Seek(offset, seekOrigin, realNewPosition);
282 off_t res = File.Seek(offset, seekOrigin);
332 STDMETHODIMP COutFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) function in class:COutFileStream
339 bool result = File.Seek(offset, seekOrigin, realNewPosition);
346 off_t res = File.Seek(offset, seekOrigin);
360 if (!File.Seek(0, FILE_CURRENT, currentPos))
364 result = result && File.Seek(currentPo
[all...]
/external/lzma/CPP/Common/
H A DC_FileIO.cpp34 off_t curPos = Seek(0, SEEK_CUR);
35 off_t lengthTemp = Seek(0, SEEK_END);
36 Seek(curPos, SEEK_SET);
41 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const function in class:NC::NFile::NIO::CFileBase
H A DC_FileIO.h26 off_t Seek(off_t distanceToMove, int moveMethod) const;
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.h36 RINOK(s.Stream->Seek(0, STREAM_SEEK_CUR, &s.LocalPos));
47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
80 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
H A DInStreamWithCRC.cpp35 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) function in class:CInStreamWithCRC
41 return _stream->Seek(offset, seekOrigin, newPosition);
H A DMultiStream.cpp39 RINOK(s.Stream->Seek(localPos, STREAM_SEEK_SET, &s.LocalPos));
52 STDMETHODIMP CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) function in class:CMultiStream
143 RINOK(outStream->Seek(_offsetPos, STREAM_SEEK_SET, NULL));
170 STDMETHODIMP COutMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DLookaheadStream.cs170 Seek(marker);
175 Seek(_lastMarker);
179 * Seek to a 0-indexed position within data buffer. Can't handle
186 public virtual void Seek(int index) { method in class:Antlr.Runtime.Misc.LookaheadStream
/external/lzma/CPP/7zip/
H A DIStream.h39 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
44 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
/external/gptfdisk/
H A Ddiskio.h69 int Seek(uint64_t sector);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DLookaheadStream.cs204 Seek( marker );
214 * Seek to a 0-indexed position within data buffer. Can't handle
221 public virtual void Seek( int index ) method in class:Antlr.Runtime.Misc.LookaheadStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTokenStream.cs141 public virtual void Seek(int index) { method in class:Antlr.Runtime.Debug.DebugTokenStream
144 input.Seek(index);
H A DDebugTreeNodeStream.cs157 public virtual void Seek(int index) { method in class:Antlr.Runtime.Debug.DebugTreeNodeStream
160 input.Seek(index);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTreeNodeStream.cs176 Seek(index);
179 /** Seek back to previous index saved during last push() call.
184 Seek(ret);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeNodeStream.cs204 Seek( index );
207 /** Seek back to previous index saved during last push() call.
213 Seek( ret );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTokenStream.cs166 public virtual void Seek( int index ) method in class:Antlr.Runtime.Debug.DebugTokenStream
170 input.Seek( index );
H A DDebugTreeNodeStream.cs183 public virtual void Seek( int index ) method in class:Antlr.Runtime.Debug.DebugTreeNodeStream
187 input.Seek( index );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimStringStream.cs280 Seek( state.p );
306 public void Seek( int index ) method in class:Antlr.Runtime.SlimStringStream

Completed in 386 milliseconds

12345