Searched defs:Next (Results 26 - 50 of 315) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/R600/
H A DSIFixSGPRLiveRanges.cpp102 LiveRange::Segment &Next = LI.segments[i + 1]; local
103 Seg.end = Next.start;
H A DSILowerI1Copies.cpp82 MachineBasicBlock::iterator I, Next; local
83 for (I = MBB.begin(); I != MBB.end(); I = Next) {
84 Next = std::next(I);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp55 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; variable
74 Next->insert(cast<Instruction>(U));
92 std::swap(ToSimplify, Next);
93 Next->clear();
/external/chromium_org/base/files/
H A Ddir_reader_linux.h50 bool Next() { function in class:base::DirReaderLinux
H A Dfile_enumerator_posix.cc74 FilePath FileEnumerator::Next() { function in class:base::FileEnumerator
/external/chromium_org/base/metrics/
H A Dsample_map.cc52 for (; !iter->Done(); iter->Next()) {
71 void SampleMapIterator::Next() { function in class:base::SampleMapIterator
H A Dhistogram_samples.cc19 virtual void Next() OVERRIDE;
35 Next();
42 void SampleCountPickleIterator::Next() { function in class:base::__anon2386::SampleCountPickleIterator
111 it->Next()) {
H A Dsample_vector.cc73 iter->Next();
129 void SampleVectorIterator::Next() { function in class:SampleVectorIterator
/external/chromium_org/components/content_settings/core/browser/
H A Dcontent_settings_rule.cc32 Rule EmptyRuleIterator::Next() { function in class:content_settings::EmptyRuleIterator
58 Rule ConcatenationIterator::Next() { function in class:content_settings::ConcatenationIterator
63 const Rule& to_return = (*current_iterator)->Next();
/external/chromium_org/third_party/leveldatabase/src/table/
H A Diterator.cc49 virtual void Next() { assert(false); } function in class:leveldb::__anon12460::EmptyIterator
H A Diterator_wrapper.h42 void Next() { assert(iter_); iter_->Next(); Update(); } function in class:leveldb::IteratorWrapper
H A Dmerger.cc59 virtual void Next() { function in class:leveldb::__anon12461::MergingIterator
74 child->Next();
81 current_->Next();
H A Dtwo_level_iterator.cc31 virtual void Next();
112 void TwoLevelIterator::Next() { function in class:leveldb::__anon12464::TwoLevelIterator
114 data_iter_.Next();
132 index_iter_.Next();
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Divf_video_source.h70 virtual void Next() { function in class:libvpx_test::IVFVideoSource
H A Dwebm_video_source.h58 virtual void Next() { function in class:libvpx_test::WebMVideoSource
H A Ddecode_test_driver.h29 const vpx_image_t *Next() { function in class:libvpx_test::DxDataIterator
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_header_extension.cc163 RTPExtensionType RtpHeaderExtensionMap::Next(RTPExtensionType type) const { function in class:webrtc::RtpHeaderExtensionMap
/external/chromium_org/v8/src/base/utils/
H A Drandom-number-generator.cc86 return static_cast<int>((max * static_cast<int64_t>(Next(31))) >> 31);
90 int rnd = Next(31);
100 return ((static_cast<int64_t>(Next(26)) << 27) + Next(27)) /
107 static_cast<uint8_t*>(buffer)[n] = static_cast<uint8_t>(Next(8));
112 int RandomNumberGenerator::Next(int bits) { function in class:v8::base::RandomNumberGenerator
/external/libvpx/libvpx/test/
H A Divf_video_source.h70 virtual void Next() { function in class:libvpx_test::IVFVideoSource
H A Dy4m_video_source.h53 Next();
59 virtual void Next() { function in class:libvpx_test::Y4mVideoSource
/external/llvm/include/llvm/Support/
H A DArrayRecycler.h34 FreeList *Next; member in struct:llvm::ArrayRecycler::FreeList
51 Bucket[Idx] = Entry->Next;
61 Entry->Next = Bucket[Idx];
/external/webrtc/src/system_wrappers/source/
H A Dmap.cc94 MapItem* MapWrapper::Next(MapItem* item) const function in class:webrtc::MapWrapper
H A Dmap_no_stl.cc127 MapNoStlItem* MapNoStl::Next(MapNoStlItem* item) const function in class:webrtc::MapNoStl
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dleveldb_wrapper.cc50 void LevelDBWrapper::Iterator::Next() { function in class:sync_file_system::drive_backend::LevelDBWrapper::Iterator
53 db_iterator_->Next();
60 db_iterator_->Next();
131 db_iterator_->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

Completed in 3159 milliseconds

1234567891011>>