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

1 2 3 4 5

  /art/compiler/linker/
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
file_output_stream.cc 32 off_t FileOutputStream::Seek(off_t offset, Whence whence) {
buffered_output_stream.cc 63 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
67 return out_->Seek(offset, whence);
  /external/lzma/CPP/7zip/Archive/Common/
InStreamWithCRC.cpp 39 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
45 return _stream->Seek(offset, seekOrigin, newPosition);
MultiStream.cpp 39 RINOK(s.Stream->Seek(localPos, STREAM_SEEK_SET, &s.LocalPos));
52 STDMETHODIMP CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
146 RINOK(outStream->Seek(_offsetPos, STREAM_SEEK_SET, NULL));
173 STDMETHODIMP COutMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 13 return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
21 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
30 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
  /external/bsdiff/
memory_file.cc 31 bool MemoryFile::Seek(off_t pos) {
file.cc 62 bool File::Seek(off_t pos) {
extents_file.cc 43 bool ExtentsFile::Seek(off_t pos) {
55 // after the seek.
96 if (!file_->Seek(ex.off + curr_ex_off) ||
  /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
  /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
  /external/lzma/CPP/Common/
C_FileIO.cpp 38 off_t curPos = Seek(0, SEEK_CUR);
39 off_t lengthTemp = Seek(0, SEEK_END);
40 Seek(curPos, SEEK_SET);
45 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
input_audio_file.cc 42 bool InputAudioFile::Seek(int samples) {
  /system/update_engine/payload_consumer/
file_descriptor.cc 65 off64_t EintrSafeFileDescriptor::Seek(off64_t offset, int whence) {
  /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 );

Completed in 441 milliseconds

1 2 3 4 5