Searched defs:Seek (Results 1 - 25 of 50) sorted by relevance

12

/external/lzma/CPP/7zip/Archive/Common/
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/
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
H A DBufferedTokenStream.cs157 Seek(marker);
161 Seek(_lastMarker);
169 public virtual void Seek(int index) { method in class:Antlr.Runtime.BufferedTokenStream
H A DLegacyCommonTokenStream.cs393 Seek(marker);
397 Seek(lastMarker);
405 public virtual void Seek(int index) { method in class:Antlr.Runtime.LegacyCommonTokenStream
/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
H A DLegacyCommonTokenStream.cs450 Seek( marker );
455 Seek( lastMarker );
464 public virtual void Seek( int index ) method in class:Antlr.Runtime.LegacyCommonTokenStream
/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 DLimitedStreams.cpp48 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) function in class:CLimitedInStream
99 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) function in class:CClusterInStream
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...]
H A DStreamObjects.cpp27 STDMETHODIMP CBufInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) function in class:CBufInStream
209 STDMETHODIMP CCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) function in class:CCachedInStream
/external/zlib/src/contrib/delphi/
H A DZLib.pas62 stream will raise an exception. Using Seek to move the stream pointer
93 function Seek(Offset: Longint; Origin: Word): Longint; override; function
122 function Seek(Offset: Longint; Origin: Word): Longint; override; function
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/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/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/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
/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.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/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
H A DSlimTokenStream.cs353 Seek( marker );
358 Seek( lastMarker );
367 public void Seek( int index ) method in class:Antlr.Runtime.FastTokenStream
/external/gptfdisk/
H A Ddiskio-unix.cc270 // Seek to the specified sector. Returns 1 on success, 0 on failure.
272 int DiskIO::Seek(uint64_t sector) { function in class:DiskIO
289 } // DiskIO::Seek()
H A Ddiskio-windows.cc189 // Seek to the specified sector. Returns 1 on success, 0 on failure.
190 int DiskIO::Seek(uint64_t sector) { function in class:DiskIO
209 } // DiskIO::Seek()

Completed in 454 milliseconds

12