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

1 2 3 4

  /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) {
  /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 );
  /external/chromium_org/android_webview/browser/net/
input_stream_reader.cc 25 int InputStreamReader::Seek(const net::HttpByteRange& byte_range) {
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_iterator_impl.cc 42 leveldb::Status LevelDBIteratorImpl::Seek(const base::StringPiece& target) {
43 iterator_->Seek(MakeSlice(target));
  /external/chromium_org/net/base/
file_stream.cc 46 int FileStream::Seek(base::File::Whence whence,
52 context_->Seek(whence, offset, callback);
file_stream_context.cc 117 void FileStream::Context::Seek(base::File::Whence whence,
mock_file_stream.cc 36 int MockFileStream::Seek(base::File::Whence whence, int64 offset,
42 return FileStream::Seek(whence, offset, wrapped_callback);
  /external/chromium_org/third_party/ots/include/
ots-memory-stream.h 31 virtual bool Seek(off_t position) {
85 bool Seek(off_t position) {
  /external/lzma/CPP/Common/
C_FileIO.cpp 34 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
  /external/chromium_org/media/filters/
ffmpeg_glue_unittest.cc 62 int64 Seek(int64 offset, int whence) {
63 return glue_->format_context()->pb->seek(protocol_.get(), offset, whence);
135 // Test a variety of seek operations.
136 TEST_F(FFmpegGlueTest, Seek) {
148 EXPECT_EQ(AVERROR(EIO), Seek(-16, SEEK_SET));
149 EXPECT_EQ(8, Seek(16, SEEK_SET));
168 EXPECT_EQ(AVERROR(EIO), Seek(8, SEEK_CUR));
169 EXPECT_EQ(AVERROR(EIO), Seek(8, SEEK_CUR));
170 EXPECT_EQ(16, Seek(8, SEEK_CUR));
189 EXPECT_EQ(AVERROR(EIO), Seek(-8, SEEK_END))
    [all...]
  /external/chromium_org/net/spdy/
spdy_frame_reader.cc 176 bool SpdyFrameReader::Seek(size_t size) {
  /external/chromium_org/third_party/leveldatabase/src/table/
iterator.cc 46 virtual void Seek(const Slice& target) { }
iterator_wrapper.h 44 void Seek(const Slice& k) { assert(iter_); iter_->Seek(k); Update(); }
  /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) {

Completed in 1210 milliseconds

1 2 3 4