Searched defs:Seek (Results 26 - 50 of 100) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLegacyCommonTokenStream.cs450 Seek( marker );
455 Seek( lastMarker );
464 public virtual void Seek( int index ) method in class:Antlr.Runtime.LegacyCommonTokenStream
H A DBufferedTokenStream.cs181 Seek(marker);
186 Seek(_lastMarker);
195 public virtual void Seek(int index) method in class:Antlr.Runtime.BufferedTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
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
H A DSlimTokenStream.cs353 Seek( marker );
358 Seek( lastMarker );
367 public void Seek( int index ) method in class:Antlr.Runtime.FastTokenStream
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dleveldb_wrapper.cc44 void LevelDBWrapper::Iterator::Seek(const std::string& target) { function in class:sync_file_system::drive_backend::LevelDBWrapper::Iterator
46 db_iterator_->Seek(target);
/external/chromium_org/media/base/
H A Dseekable_buffer.cc99 bool SeekableBuffer::Seek(int32 offset) { function in class:media::SeekableBuffer
/external/chromium_org/net/base/
H A Dfile_stream_context.cc117 void FileStream::Context::Seek(base::File::Whence whence, function in class:net::FileStream::Context
/external/chromium_org/net/spdy/
H A Dspdy_frame_builder.cc53 bool SpdyFrameBuilder::Seek(size_t length) { function in class:net::SpdyFrameBuilder
160 Seek(data_len);
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dmerger.cc51 virtual void Seek(const Slice& target) { function in class:leveldb::__anon12461::MergingIterator
53 children_[i].Seek(target);
71 child->Seek(key());
97 child->Seek(key());
H A Dtwo_level_iterator.cc28 virtual void Seek(const Slice& target);
91 void TwoLevelIterator::Seek(const Slice& target) { function in class:leveldb::__anon12464::TwoLevelIterator
92 index_iter_.Seek(target);
94 if (data_iter_.iter() != NULL) data_iter_.Seek(target);
/external/lzma/CPP/7zip/Common/
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/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmutable-fst.h154 void Seek(size_t a) { data_.base->Seek(a); } function in class:fst::MutableArcIterator
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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/Tree/
H A DBufferedTreeNodeStream.cs483 Seek( marker );
488 Seek( lastMarker );
491 public virtual void Seek( int index ) method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
512 Seek( index );
516 * Seek back to previous index saved during last push() call.
523 Seek( ret );
/external/chromium_org/android_webview/browser/net/
H A Dandroid_stream_reader_url_request_job.cc71 int Seek(const net::HttpByteRange& byte_range) { function in class:InputStreamReaderWrapper
72 return input_stream_reader_->Seek(byte_range);
193 base::Bind(&InputStreamReaderWrapper::Seek,
274 // Seek or ReadRawData operation running in the background is not permitted.
290 // Seek or ReadRawData operation running in the background is not permitted.
/external/chromium_org/base/files/
H A Dfile_posix.cc278 int64 File::Seek(Whence whence, int64 offset) { function in class:base::File
H A Dfile_win.cc124 int64 File::Seek(Whence whence, int64 offset) { function in class:base::File
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.cc145 leveldb::Status LevelDBTransaction::DataIterator::Seek( function in class:content::LevelDBTransaction::DataIterator
227 leveldb::Status LevelDBTransaction::TransactionIterator::Seek( function in class:content::LevelDBTransaction::TransactionIterator
229 leveldb::Status s = data_iterator_->Seek(target);
231 s = db_iterator_->Seek(target);
254 non_current->Seek(Key());
290 s = non_current->Seek(Key());
349 data_iterator_->Seek(db_iterator_->Key());
358 data_iterator_->Seek(db_iterator_->Key());
/external/chromium_org/media/filters/
H A Dpipeline_integration_test_base.cc177 bool PipelineIntegrationTestBase::Seek(base::TimeDelta seek_time) { function in class:media::PipelineIntegrationTestBase
181 pipeline_->Seek(seek_time, QuitOnStatusCB(PIPELINE_OK));
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_handle.cc56 Error KernelHandle::Seek(off_t offset, int whence, off_t* out_offset) { function in class:nacl_io::KernelHandle
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_iter.cc84 virtual void Seek(const Slice& target);
274 void DBIter::Seek(const Slice& target) { function in class:leveldb::__anon12441::DBIter
280 iter_->Seek(saved_key_);
H A Dmemtable.cc56 virtual void Seek(const Slice& k) { iter_.Seek(EncodeKey(&tmp_, k)); } function in class:leveldb::MemTableIterator
111 iter.Seek(memkey.data());
120 // sequence number since the Seek() call above should have skipped

Completed in 1146 milliseconds

1234