Searched refs:it1 (Results 1 - 25 of 59) sorted by relevance

123

/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
H A Dp1-cxx11.cpp51 T it1; local
52 if (it1->end < it1->end) {
61 T it1; local
62 if (it1->end < it1->end) {
H A Dp1.cpp71 T it1; local
72 if (it1->end < it1->end) {
81 T it1; local
82 if (it1->end < it1->end) {
/external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
H A Derase_iter.invalidation.pass.cpp24 typename C::iterator it1 = first + 1; local
31 assert( it1 == it3);
32 assert( *it1 == *it3);
33 assert(&*it1 == &*it3);
43 typename C::iterator it1 = c.begin(); local
50 assert( it1 == it3);
51 assert( *it1 == *it3);
52 assert(&*it1 == &*it3);
H A Dpop_back.invalidation.pass.cpp23 typename C::iterator it1 = c.begin(); local
30 assert( it1 == it3);
31 assert( *it1 == *it3);
32 assert(&*it1 == &*it3);
H A Dpop_front.invalidation.pass.cpp23 typename C::iterator it1 = c.begin() + 1; local
30 assert( it1 == it3);
31 assert( *it1 == *it3);
32 assert(&*it1 == &*it3);
H A Derase_iter_iter.invalidation.pass.cpp27 typename C::iterator it1 = last; local
34 assert( it1 == it3);
35 assert( *it1 == *it3);
36 assert(&*it1 == &*it3);
47 typename C::iterator it1 = c.begin(); local
54 assert( it1 == it3);
55 assert( *it1 == *it3);
56 assert(&*it1 == &*it3);
/external/ceres-solver/internal/ceres/
H A Dsingle_linkage_clustering.cc59 for (HashSet<int>::const_iterator it1 = vertices.begin();
60 it1 != vertices.end();
61 ++it1) {
62 const int vertex1 = *it1;
H A Dvisibility_based_preconditioner.cc509 for (HashSet<int>::const_iterator it1 = vertices.begin();
510 it1 != vertices.end();
511 ++it1) {
512 const int cluster1 = *it1;
H A Dschur_eliminator_impl.h509 BufferLayoutType::const_iterator it1 = buffer_layout.begin(); local
520 for (; it1 != buffer_layout.end(); ++it1) {
521 const int block1 = it1->first - num_eliminate_blocks_;
522 const int block1_size = bs->cols[it1->first].size;
525 buffer + it1->second, e_block_size, block1_size,
529 BufferLayoutType::const_iterator it2 = it1;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DRouteList.java78 ListIterator<Route> it1 = that.listIterator();
81 Route route1 = (Route) it1.next();
H A DSIPObjectList.java87 Iterator<GenericObject> it1 = this.listIterator();
89 while (it1.hasNext()) {
90 GenericObject outerObj = (GenericObject) it1.next();
H A DSIPHeaderList.java430 for (Iterator<HDR> it1 = this.hlist.iterator(); it1.hasNext()
432 SIPHeader sipHeader1 = (SIPHeader) it1.next();
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc60 Rows::const_iterator it1 = rows_.begin(); local
62 while (it1 != 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) {
70 ++it1;
180 Rows::const_iterator it1 = region1.rows_.begin(); local
184 if (it1 == end1 || it2 == end2)
187 while (it1 !
229 RowSpanSet::const_iterator it1 = set1.begin(); local
[all...]
/external/v8/test/cctest/
H A Dtest-types.cc120 for (TypeIterator it1 = T.types.begin(); it1 != T.types.end(); ++it1) {
122 Type* type1 = *it1;
131 for (TypeIterator it1 = T.types.begin(); it1 != T.types.end(); ++it1) {
133 Type* type1 = *it1;
142 for (TypeIterator it1 = T.types.begin(); it1 !
[all...]
/external/opencv3/modules/ml/test/
H A Dtest_gbttest.cpp232 vector<float>::const_iterator it1 = test_resps1.begin(), it2 = test_resps2.begin();
233 for( ; it1 != test_resps1.end(); ++it1, ++it2 )
235 if( fabs(*it1 - *it2) > FLT_EPSILON )
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/google-breakpad/src/common/windows/
H A Domap.cc439 EndpointIndexMap::iterator it1 = std::lower_bound( local
447 for (; it1 != it2; ++it1)
448 it1->index = Min(i, it1->index);
610 EndpointIndexMap::const_iterator it1 = std::lower_bound( local
612 if (it1 == eim.end()) {
616 if (it1 != eim.begin() && query_range.rva < it1->endpoint)
617 --it1;
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DCollectionUtils.java76 @Nonnull Iterable<? extends T> it1,
79 for (T element1: it1) {
95 public static <T extends Comparable<? super T>> int compareAsIterable(@Nonnull Iterable<? extends T> it1, argument
98 for (T element1: it1) {
75 compareAsIterable(@onnull Comparator<? super T> comparator, @Nonnull Iterable<? extends T> it1, @Nonnull Iterable<? extends T> it2) argument
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateFactory1Test.java311 Iterator it1 = certFs[0].getCertPathEncodings();
313 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
314 while (it1.hasNext()) {
316 String s1 = (String) it1.next();
327 it1 = certFs[0].getCertPathEncodings();
329 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext());
330 while (it1.hasNext()) {
332 String s1 = (String) it1.next();
/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, cons argument
[all...]
/external/nist-sip/java/gov/nist/core/
H A DGenericObjectList.java330 Iterator it1 = this.listIterator();
332 while (it1.hasNext()) {
333 GenericObject outerObj = (GenericObject) it1.next();
/external/webrtc/webrtc/p2p/base/
H A Dfaketransportcontroller.h287 for (std::vector<int>::const_iterator it1 = srtp_ciphers_.begin();
288 it1 != srtp_ciphers_.end(); ++it1) {
291 if (*it1 == *it2) {
292 chosen_crypto_suite_ = *it1;
/external/opencv3/modules/calib3d/src/
H A Dcirclesgrid.cpp496 for (Vertices::const_iterator it1 = vertices.begin(); it1 != vertices.end(); it1++)
498 distanceMatrix.at<int> ((int)it1->first, (int)it1->first) = 0;
499 for (Neighbors::const_iterator it2 = it1->second.neighbors.begin(); it2 != it1->second.neighbors.end(); it2++)
501 CV_Assert( it1->first != *it2 );
502 distanceMatrix.at<int> ((int)it1->first, (int)*it2) = edgeWeight;
506 for (Vertices::const_iterator it1
[all...]
/external/libchrome/base/
H A Dtracked_objects_unittest.cc546 auto it1 = process_data.phased_snapshots.find(1); local
547 ASSERT_TRUE(it1 != process_data.phased_snapshots.end());
548 const ProcessDataPhaseSnapshot& process_data_phase1 = it1->second;
663 auto it1 = process_data.phased_snapshots.find(1); local
664 ASSERT_TRUE(it1 != process_data.phased_snapshots.end());
665 const ProcessDataPhaseSnapshot& process_data_phase1 = it1->second;
768 auto it1 = process_data.phased_snapshots.find(1); local
769 ASSERT_TRUE(it1 != process_data.phased_snapshots.end());
770 const ProcessDataPhaseSnapshot& process_data_phase1 = it1->second;
807 auto it1 local
[all...]
/external/xmlrpcpp/src/
H A DXmlRpcValue.cpp170 ValueStruct::const_iterator it1=_value.asStruct->begin();
172 while (it1 != _value.asStruct->end()) {
173 const XmlRpcValue& v1 = it1->second;
177 it1++;

Completed in 973 milliseconds

123