Searched defs:Next (Results 276 - 300 of 315) sorted by last modified time

<<111213

/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dtokenizer_unittest.cc129 bool Next(const void** data, int* size) { function in class:google::protobuf::io::__anon14844::TestInputStream
139 return array_stream_.Next(data, size);
256 // Before Next() is called, the initial token should always be TYPE_START.
264 ASSERT_TRUE(tokenizer.Next());
277 EXPECT_FALSE(tokenizer.Next());
279 // After Next() returns false, the token should have type TYPE_END.
302 ASSERT_TRUE(tokenizer.Next());
305 ASSERT_TRUE(tokenizer.Next());
308 ASSERT_TRUE(tokenizer.Next());
311 ASSERT_TRUE(tokenizer.Next());
[all...]
H A Dzero_copy_stream_impl.cc89 bool FileInputStream::Next(const void** data, int* size) { function in class:google::protobuf::io::FileInputStream
90 return impl_.Next(data, size);
192 bool FileOutputStream::Next(void** data, int* size) { function in class:google::protobuf::io::FileOutputStream
193 return impl_.Next(data, size);
279 bool IstreamInputStream::Next(const void** data, int* size) { function in class:google::protobuf::io::IstreamInputStream
280 return impl_.Next(data, size);
323 bool OstreamOutputStream::Next(void** data, int* size) { function in class:google::protobuf::io::OstreamOutputStream
324 return impl_.Next(data, size);
359 bool ConcatenatingInputStream::Next(const void** data, int* size) { function in class:google::protobuf::io::ConcatenatingInputStream
361 if (streams_[0]->Next(dat
423 bool LimitingInputStream::Next(const void** data, int* size) { function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl_lite.cc66 bool ArrayInputStream::Next(const void** data, int* size) { function in class:google::protobuf::io::ArrayInputStream
82 << "BackUp() can only be called after a successful Next().";
119 bool ArrayOutputStream::Next(void** data, int* size) { function in class:google::protobuf::io::ArrayOutputStream
135 << "BackUp() can only be called after a successful Next().";
155 bool StringOutputStream::Next(void** data, int* size) { function in class:google::protobuf::io::StringOutputStream
223 bool CopyingInputStreamAdaptor::Next(const void** data, int* size) { function in class:google::protobuf::io::CopyingInputStreamAdaptor
259 << " BackUp() can only be called after Next().";
262 " to Next().";
333 bool CopyingOutputStreamAdaptor::Next(void** data, int* size) { function in class:google::protobuf::io::CopyingOutputStreamAdaptor
349 << " BackUp() can only be called after Next()
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dstring_generator.cc7 // Fetch strings using a Java-like Next()/HasNext() interface.
25 // Next() will return empty string (digits_ is empty).
79 const StringPiece& StringGenerator::Next() { function in class:re2::StringGenerator
/external/chromium_org/third_party/re2/util/
H A Drandom.cc11 int32 ACMRandom::Next() { function in class:re2::ACMRandom
31 return Next() % n;
/external/chromium_org/third_party/sqlite/src/contrib/
H A Dsqlitecon.tcl120 bind Sqlitecon <Down> {sqlitecon::Next %W}
121 bind Sqlitecon <Control-n> {sqlitecon::Next %W}
411 proc sqlitecon::Next w {
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlow_level_alloc.cc75 // Next two fields: in unallocated blocks: freelist skiplist data
361 static AllocList *Next(int i, AllocList *prev, LowLevelAlloc::Arena *arena) { function
362 RAW_CHECK(i < prev->levels, "too few levels in Next()");
366 "bad magic number in Next()");
368 "bad arena pointer in Next()");
447 while ((s = Next(i, before, arena)) != 0 && s->header.size < req_rnd) {
H A Dsysinfo.cc814 bool ProcMapsIterator::Next(uint64 *start, uint64 *end, char **flags, function in class:ProcMapsIterator
1111 while (it.Next(&start, &end, &flags, &offset, &inode, &filename)) {
1136 while (it.Next(&start, &end, &flags, &offset, &inode, &filename)) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpagemap.h114 void* Next(Number k) const { function in class:TCMalloc_PageMap1
309 void* Next(Number k) const { function in class:TCMalloc_PageMap1_LazyCommit
390 void* Next(Number k) const { function in class:TCMalloc_PageMap2
502 void* Next(Number k) const { function in class:TCMalloc_PageMap3
H A Dthread_cache.h212 void* Next() { function in class:tcmalloc::ThreadCache::FreeList
382 ASSERT(ptr != list->Next());
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_unittest.cc355 int32 Next() { function in class:testing::TesterThread::ACMRandom
519 r.Next();
521 const char c = static_cast<char>(r.Next());
529 r.Next();
533 const char expected = static_cast<char>(r.Next());
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlow_level_alloc.cc75 // Next two fields: in unallocated blocks: freelist skiplist data
361 static AllocList *Next(int i, AllocList *prev, LowLevelAlloc::Arena *arena) { function
362 RAW_CHECK(i < prev->levels, "too few levels in Next()");
366 "bad magic number in Next()");
368 "bad arena pointer in Next()");
447 while ((s = Next(i, before, arena)) != 0 && s->header.size < req_rnd) {
H A Dsysinfo.cc658 bool ProcMapsIterator::Next(uint64 *start, uint64 *end, char **flags, function in class:ProcMapsIterator
952 while (it.Next(&start, &end, &flags, &offset, &inode, &filename)) {
977 while (it.Next(&start, &end, &flags, &offset, &inode, &filename)) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpagemap.h108 void* Next(Number k) const { function in class:TCMalloc_PageMap1
187 void* Next(Number k) const { function in class:TCMalloc_PageMap2
299 void* Next(Number k) const { function in class:TCMalloc_PageMap3
H A Dthread_cache.h207 void* Next() { function in class:tcmalloc::ThreadCache::FreeList
355 ASSERT(ptr != list->Next());
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc355 int32 Next() { function in class:testing::TesterThread::ACMRandom
519 r.Next();
521 const char c = static_cast<char>(r.Next());
529 r.Next();
533 const char expected = static_cast<char>(r.Next());
/external/chromium_org/remoting/base/
H A Dcompound_buffer.cc208 bool CompoundBufferInputStream::Next(const void** data, int* size) { function in class:remoting::CompoundBufferInputStream
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall_iterator.cc12 uint32_t SyscallIterator::Next() { function in class:sandbox::SyscallIterator
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_file_util.cc9 base::FilePath FileSystemFileUtil::EmptyFileEnumerator::Next() { function in class:storage::FileSystemFileUtil::EmptyFileEnumerator
H A Dlocal_file_util.cc37 virtual base::FilePath Next() OVERRIDE;
49 base::FilePath LocalFileEnumerator::Next() { function in class:storage::LocalFileEnumerator
50 base::FilePath next = file_enum_.Next();
53 next = file_enum_.Next();
H A Dnative_file_util.cc86 virtual base::FilePath Next() OVERRIDE;
96 base::FilePath NativeFileEnumerator::Next() { function in class:storage::NativeFileEnumerator
97 base::FilePath rv = file_enum_.Next();
/external/chromium_org/google_apis/gcm/base/
H A Dsocket_stream.cc36 bool SocketInputStream::Next(const void** data, int* size) { function in class:gcm::SocketInputStream
129 Next(&unread_data_ptr, &unread_data_size);
227 bool SocketOutputStream::Next(void** data, int* size) { function in class:gcm::SocketOutputStream
/external/chromium_org/media/video/capture/win/
H A Dfilter_base_win.cc45 STDMETHOD(Next)(ULONG count, IPin** pins, ULONG* fetched) { function in class:media::FINAL
H A Dpin_base_win.cc45 STDMETHOD(Next)(ULONG count, AM_MEDIA_TYPE** types, ULONG* fetched) { function in class:media::FINAL
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_iterator_impl.cc48 leveldb::Status LevelDBIteratorImpl::Next() { function in class:content::LevelDBIteratorImpl
50 iterator_->Next();

Completed in 492 milliseconds

<<111213