Searched refs:new_it (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Dtypo-correction-cxx11.cpp56 auto new_it = new_annotations.find(5); local
57 auto &new_anotation = new_it.second; // expected-note {{'new_anotation' declared here}}
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dpayload_splitter.cc84 PacketList::iterator new_it; local
85 for (new_it = new_packets.begin(); new_it != new_packets.end(); ++new_it) {
86 size_t payload_length = (*new_it)->payload_length;
93 while (new_it != new_packets.end()) {
95 assert(!(*new_it)->payload);
96 delete (*new_it);
97 new_it = new_packets.erase(new_it);
[all...]
/external/libcxx/src/experimental/filesystem/
H A Ddirectory_iterator.cpp321 __dir_stream new_it(curr_it.__entry_.path(), __imp_->__options_, m_ec);
322 if (new_it.good()) {
323 __imp_->__stack_.push(_VSTD::move(new_it));
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_dictionary.cpp213 auto new_it = m_Map.find(newkey);
214 if (new_it == old_it)
/external/protobuf/src/google/protobuf/
H A Drepeated_field_reflection_unittest.cc335 MessageIterator new_it = old_it++; local
336 EXPECT_FALSE(old_it == new_it);
343 old_it = new_it;
349 for (index = 0; new_it != rf_foreign_message.end(); ++new_it, ++index) {
350 EXPECT_EQ(message.repeated_foreign_message(index).c(), new_it->c());
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader.cc1149 RuleByNumber::const_iterator new_it = new_rules.registers_.begin(); local
1150 while (old_it != registers_.end() && new_it != new_rules.registers_.end()) {
1151 if (old_it->first < new_it->first) {
1162 } else if (old_it->first > new_it->first) {
1163 // NEW_RULES has entry for new_it->first, but this RuleMap
1170 if (*old_it->second != *new_it->second &&
1171 !new_it->second->Handle(handler, address, new_it->first))
1173 new_it++, old_it++;
1185 assert(new_it
[all...]
/external/v8/src/
H A Dobjects-debug.cc1527 RelocIterator new_it(new_code, mask);
1538 while (!new_it.done()) {
1539 RelocInfo* rinfo = new_it.rinfo();
1543 new_it.next();
1548 CHECK_EQ(new_it.done(), old_it.done());
1552 while (!old_it.done() && !new_it.done()) {
1556 Code::GetCodeFromTargetAddress(new_it.rinfo()->target_address());
1565 new_it.next();
1569 CHECK_EQ(new_it.done(), old_it.done());

Completed in 344 milliseconds