Searched defs:it2 (Results 1 - 25 of 60) sorted by relevance

123

/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/istream.iterator.cons/
H A Ddefault.pass.cpp26 constexpr T it2; local
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
H A Ddefault.pass.cpp30 constexpr T it2; local
38 constexpr T it2; local
/external/libchrome/base/metrics/
H A Dsample_vector_unittest.cc220 scoped_ptr<SampleCountIterator> it2 = samples.Iterator(); local
223 for (i = 1; !it2->Done(); i++, it2->Next()) {
224 it2->Get(&min, &max, &count);
230 EXPECT_TRUE(it2->GetBucketIndex(&index));
/external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
H A Derase_iter.invalidation.pass.cpp25 typename C::iterator it2 = c.end() - 1; local
34 assert( it2 == it4);
35 assert( *it2 == *it4);
36 assert(&*it2 == &*it4);
44 typename C::iterator it2 = first - 1; local
53 assert( it2 == it4);
54 assert( *it2 == *it4);
55 assert(&*it2 == &*it4);
H A Dpop_back.invalidation.pass.cpp24 typename C::iterator it2 = c.end() - 2; local
33 assert( it2 == it4);
34 assert( *it2 == *it4);
35 assert(&*it2 == &*it4);
H A Dpop_front.invalidation.pass.cpp24 typename C::iterator it2 = c.end() - 1; local
33 assert( it2 == it4);
34 assert( *it2 == *it4);
35 assert(&*it2 == &*it4);
H A Derase_iter_iter.invalidation.pass.cpp28 typename C::iterator it2 = c.end() - 1; local
37 assert( it2 == it4);
38 assert( *it2 == *it4);
39 assert(&*it2 == &*it4);
48 typename C::iterator it2 = first - 1; local
57 assert( it2 == it4);
58 assert( *it2 == *it4);
59 assert(&*it2 == &*it4);
/external/smali/util/src/main/java/org/jf/util/
H A DCollectionUtils.java77 @Nonnull Iterable<? extends T> it2) {
78 Iterator<? extends T> elements2 = it2.iterator();
96 @Nonnull Iterable<? extends T> it2) {
97 Iterator<? extends T> elements2 = it2.iterator();
75 compareAsIterable(@onnull Comparator<? super T> comparator, @Nonnull Iterable<? extends T> it1, @Nonnull Iterable<? extends T> it2) argument
95 compareAsIterable(@onnull Iterable<? extends T> it1, @Nonnull Iterable<? extends T> it2) argument
/external/opencv3/modules/ml/test/
H A Dtest_save_load.cpp137 vector<float>::const_iterator it1 = test_resps1.begin(), it2 = test_resps2.begin(); local
138 for( ; it1 != test_resps1.end(); ++it1, ++it2 )
140 if( fabs(*it1 - *it2) > FLT_EPSILON )
/external/ceres-solver/internal/ceres/
H A Dschur_eliminator_impl.h529 BufferLayoutType::const_iterator it2 = it1; local
530 for (; it2 != buffer_layout.end(); ++it2) {
531 const int block2 = it2->first - num_eliminate_blocks_;
538 const int block2_size = bs->cols[it2->first].size;
543 buffer + it2->second, e_block_size, block2_size,
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-param-test_test.cc194 ParamGenerator<int>::iterator it2 = it; local
195 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
200 EXPECT_FALSE(*it == *it2);
201 it2 = it;
202 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
217 it2 = it;
219 ++it2;
220 EXPECT_TRUE(*it == *it2);
/external/gtest/test/
H A Dgtest-param-test_test.cc194 ParamGenerator<int>::iterator it2 = it; local
195 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
200 EXPECT_FALSE(*it == *it2);
201 it2 = it;
202 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
217 it2 = it;
219 ++it2;
220 EXPECT_TRUE(*it == *it2);
/external/libchrome/base/
H A Dtracked_objects_unittest.cc687 auto it2 = process_data.phased_snapshots.find(2); local
688 ASSERT_TRUE(it2 != process_data.phased_snapshots.end());
689 const ProcessDataPhaseSnapshot& process_data_phase2 = it2->second;
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc194 ParamGenerator<int>::iterator it2 = it; local
195 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
200 EXPECT_FALSE(*it == *it2);
201 it2 = it;
202 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
217 it2 = it;
219 ++it2;
220 EXPECT_TRUE(*it == *it2);
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-param-test_test.cc194 ParamGenerator<int>::iterator it2 = it; local
195 EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the "
200 EXPECT_FALSE(*it == *it2);
201 it2 = it;
202 EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the "
217 it2 = it;
219 ++it2;
220 EXPECT_TRUE(*it == *it2);
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc61 Rows::const_iterator it2 = region.rows_.begin(); local
63 if (it2 == region.rows_.end() ||
64 it1->first != it2->first ||
65 it1->second->top != it2->second->top ||
66 it1->second->bottom != it2->second->bottom ||
67 it1->second->spans != it2->second->spans) {
71 ++it2;
73 return it2 == region.rows_.end();
182 Rows::const_iterator it2 = region2.rows_.begin(); local
184 if (it1 == end1 || it2
231 RowSpanSet::const_iterator it2 = set2.begin(); local
[all...]
/external/gmock/test/
H A Dgmock-spec-builders_test.cc1503 ExpectationSet::const_iterator it2 = it1; local
1504 ++it2;
1505 EXPECT_TRUE(*it1 == e1 || *it2 == e1); // e1 must be in the set.
1506 EXPECT_TRUE(*it1 == e2 || *it2 == e2); // e2 must be in the set too.
/external/google-breakpad/src/common/windows/
H A Domap.cc444 EndpointIndexMap::iterator it2 = std::lower_bound( local
447 for (; it1 != it2; ++it1)
625 Mapping::const_iterator it2 = std::lower_bound( local
627 imax = it2 - map.begin();
/external/google-breakpad/src/testing/test/
H A Dgmock-spec-builders_test.cc1469 ExpectationSet::const_iterator it2 = it1; local
1470 ++it2;
1471 EXPECT_TRUE(*it1 == e1 || *it2 == e1); // e1 must be in the set.
1472 EXPECT_TRUE(*it1 == e2 || *it2 == e2); // e2 must be in the set too.
/external/opencv3/modules/core/include/opencv2/core/
H A Dpersistence.hpp1139 bool operator == (const FileNodeIterator& it1, const FileNodeIterator& it2) argument
1141 return it1.fs == it2.fs && it1.container == it2.container &&
1142 it1.reader.ptr == it2.reader.ptr && it1.remaining == it2.remaining;
1146 bool operator != (const FileNodeIterator& it1, const FileNodeIterator& it2) argument
1148 return !(it1 == it2);
1152 ptrdiff_t operator - (const FileNodeIterator& it1, const FileNodeIterator& it2) argument
1154 return it2.remaining - it1.remaining;
1158 bool operator < (const FileNodeIterator& it1, const FileNodeIterator& it2) argument
[all...]
H A Dmat.inl.hpp2671 bool operator == (const SparseMatConstIterator& it1, const SparseMatConstIterator& it2) argument
2673 return it1.m == it2.m && it1.ptr == it2.ptr;
2677 bool operator != (const SparseMatConstIterator& it1, const SparseMatConstIterator& it2) argument
2679 return !(it1 == it2);
/external/xmlrpcpp/src/
H A DXmlRpcValue.cpp171 ValueStruct::const_iterator it2=other._value.asStruct->begin(); local
174 const XmlRpcValue& v2 = it2->second;
178 it2++;
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp37 auto it2 = pSizeCache->m_GlyphMap.find(charcode); local
38 if (it2 != pSizeCache->m_GlyphMap.end())
39 return it2->second;
/external/libevent/
H A Dbuffer.c1431 struct evbuffer_ptr it, it2; local
1451 memcpy(&it2, &it, sizeof(it));
1452 extra_drain = evbuffer_strspn(&it2, "\r\n");
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_text.cpp1265 auto it2 = pSizeCache->m_GlyphMap.find(glyph_index); local
1266 if (it2 != pSizeCache->m_GlyphMap.end())
1267 return it2->second;
1336 auto it2 = pSizeCache->m_GlyphMap.find(glyph_index);
1337 if (it2 != pSizeCache->m_GlyphMap.end())
1338 return it2->second;

Completed in 872 milliseconds

123