Searched defs:it1 (Results 1 - 25 of 34) sorted by relevance

12

/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/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/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/openfst/src/include/fst/
H A Dinterval-set.h204 typename vector<Interval>::const_iterator it1 = intervals_.begin(); local
210 while (it1 != intervals_.end() && it2 != iintervals->end()) {
211 if (it1->end <= it2->begin) {
212 ++it1;
213 } else if (it2->end <= it1->begin) {
217 interval.begin = max(it1->begin, it2->begin);
218 interval.end = min(it1->end, it2->end);
221 if (it1->end < it2->end)
222 ++it1;
276 typename vector<Interval>::const_iterator it1 local
296 typename vector<Interval>::const_iterator it1 = intervals_.begin(); local
345 typename vector<Interval>::const_iterator it1 = intervals_.begin(); local
[all...]
/external/ceres-solver/internal/ceres/
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/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/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/gmock/test/
H A Dgmock-spec-builders_test.cc1502 ExpectationSet::const_iterator it1 = es1.begin(); local
1503 ExpectationSet::const_iterator it2 = it1;
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.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/google-breakpad/src/testing/test/
H A Dgmock-spec-builders_test.cc1468 ExpectationSet::const_iterator it1 = es1.begin(); local
1469 ExpectationSet::const_iterator it2 = it1;
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/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc2044 struct itimerval it1, it2; local
2046 EXPECT_POISONED(it1.it_interval.tv_sec);
2047 EXPECT_POISONED(it1.it_interval.tv_usec);
2048 EXPECT_POISONED(it1.it_value.tv_sec);
2049 EXPECT_POISONED(it1.it_value.tv_usec);
2050 res = getitimer(ITIMER_VIRTUAL, &it1);
2052 EXPECT_NOT_POISONED(it1.it_interval.tv_sec);
2053 EXPECT_NOT_POISONED(it1.it_interval.tv_usec);
2054 EXPECT_NOT_POISONED(it1.it_value.tv_sec);
2055 EXPECT_NOT_POISONED(it1
[all...]
/external/guice/lib/build/
H A Dcglib-3.1.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/cglib/ net/sf/cglib/beans/ ...
H A Dspring-beans.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/springframework/beans/ org/springframework/beans/annotation/ ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
H A Dcglib-nodep-3.0.jarMETA-INF/MANIFEST.MF LICENSE NOTICE net/sf/cglib/beans/BeanCopier$BeanCopierKey.class BeanCopier. ...
H A Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/hsqldb/index/ org/hsqldb/jdbc/ org/ ...
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/v1/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 535 milliseconds

12