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

1 2 3 4 5 6

  /art/compiler/
file_output_stream.cc 32 off_t FileOutputStream::Seek(off_t offset, Whence whence) {
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
buffered_output_stream.cc 52 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
56 return out_->Seek(offset, whence);
  /external/lzma/CPP/7zip/Archive/Common/
InStreamWithCRC.cpp 35 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
41 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)
143 RINOK(outStream->Seek(_offsetPos, STREAM_SEEK_SET, NULL));
170 STDMETHODIMP COutMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 12 return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
20 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin,
26 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
LimitedStreams.cpp 48 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
99 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
  /external/chromium_org/third_party/ots/test/
file-stream.h 30 bool Seek(off_t position) {
  /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 );