HomeSort by relevance Sort by last modified time
    Searched defs:it2 (Results 101 - 125 of 262) sorted by null

1 2 3 45 6 7 8 91011

  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObjectList.java 88 Iterator<GenericObject> it2 = mergeList.listIterator(); local
91 while (it2.hasNext()) {
92 Object innerObj = it2.next();
  /frameworks/base/cmds/statsd/src/subscriber/
SubscriberReporter.cpp 91 auto it2 = it1->second.find(subscriberId); local
92 if (it2 == it1->second.end()) {
97 sendBroadcastLocked(it2->second, configKey, subscription, cookies, dimKey);
  /system/chre/util/tests/
array_queue_test.cc 305 ArrayQueue<int, 4>::iterator it2; local
306 it2 = it;
307 EXPECT_EQ(it, it2);
318 auto it1 = q.begin(), it2 = q.end(); local
319 std::swap(it1, it2);
321 EXPECT_EQ(it2, q.begin());
  /external/Microsoft-GSL/tests/
span_tests.cpp 990 span<int>::iterator it2; variable
991 CHECK(it1 == it2);
997 span<int>::const_iterator it2; variable
998 CHECK(it1 == it2);
1029 auto it2 = it + 1; variable
1042 CHECK(it != it2);
1043 CHECK(it2 != it);
1045 CHECK(it2 != s.end());
1047 CHECK(it2 != cit);
1048 CHECK(cit != it2);
    [all...]
  /external/libcxx/test/libcxx/debug/containers/
db_sequence_container_iterators.pass.cpp 126 iterator it1, it2, it3; local
130 it2 = ++C.begin();
135 CHECK_DEBUG_THROWS( C.erase(it2) );
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 426 final Iterator<String> it2 = cf.generateCertPath(certs).getEncodings(); local
428 assertEquals(p.getName(), it1.hasNext(), it2.hasNext());
434 assertEquals(p.getName(), encoding, it2.next());
443 it2.remove();
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 50 BreakIterator it2 = BreakIterator.getWordInstance(new Locale("bad locale")); local
51 assertTrue("Incorrect BreakIterator", it2 != BreakIterator.getWordInstance());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/debug/containers/
db_sequence_container_iterators.pass.cpp 69 iterator it1, it2, it3; local
73 it2 = ++C.begin();
78 CHECK_DEBUG_THROWS( C.erase(it2) );
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
IdentityHashMap2Test.java 290 Iterator it2 = map2.keySet().iterator(); local
291 Integer remove3 = (Integer) it2.next();
297 it2.hasNext();
298 it2.remove();
299 assertTrue("Wrong result 2", it2.next().equals(next));
  /art/compiler/debug/
elf_debug_line_writer.h 206 auto it2 = files_map.find(full_path); local
207 if (it2 == files_map.end()) {
217 file_index = it2->second;
  /art/libartbase/base/
hash_set_test.cc 249 auto it2 = std_set.find(s); local
250 ASSERT_EQ(it1 == hash_set.end(), it2 == std_set.end());
252 ASSERT_EQ(*it1, *it2);
254 std_set.erase(it2);
  /art/runtime/
fault_handler.cc 259 auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler); local
260 if (it2 != other_handlers_.end()) {
261 other_handlers_.erase(it2);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java 259 Iterator<String> it2 = permutations.iterator(); local
260 while (it2.hasNext()) {
261 String possible = it2.next();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java 263 Iterator<String> it2 = permutations.iterator(); local
264 while (it2.hasNext()) {
265 String possible = it2.next();
  /external/pdfium/core/fpdfapi/render/
cpdf_type3cache.cpp 104 auto it2 = pSizeCache->m_GlyphMap.find(charcode); local
105 if (it2 != pSizeCache->m_GlyphMap.end())
106 return it2->second.get();
  /external/pdfium/core/fxge/
cfx_facecache.cpp 276 auto it2 = pSizeCache->find(glyph_index);
277 if (it2 != pSizeCache->end())
278 return it2->second.get();
353 auto it2 = pSizeCache->find(glyph_index); local
354 if (it2 != pSizeCache->end())
355 return it2->second.get();
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 194 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/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/
weighted_quantiles_summary.h 137 auto it2 = other_entries.cbegin(); local
140 while (it1 != base_entries.cend() && it2 != other_entries.cend()) {
141 if (kCompFn(it1->value, it2->value)) { // value1 < value2
146 it1->max_rank + it2->PrevMaxRank());
150 } else if (kCompFn(it2->value, it1->value)) { // value1 > value2
153 entries_.emplace_back(it2->value, it2->weight,
154 it2->min_rank + next_min_rank1,
155 it2->max_rank + it1->PrevMaxRank());
157 next_min_rank2 = it2->NextMinRank()
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
flatset_test.cc 415 NASet::iterator it2 = set.find(NA(2)); local
419 EXPECT_TRUE(it2 != set.end());
421 EXPECT_FALSE(it2 == set.end());
422 EXPECT_TRUE(it1 != it2);
423 EXPECT_FALSE(it1 == it2);
427 EXPECT_EQ(*it2, NA(2));
429 EXPECT_EQ(it2->value, 2);
433 NASet::iterator copy_it2 = it2;
442 EXPECT_TRUE(copy_it2 != it2);
454 EXPECT_EQ(*it2, NA(2))
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region.cc 61 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 == end2
231 RowSpanSet::const_iterator it2 = set2.begin(); local
    [all...]
  /frameworks/ml/nn/common/operations/
LSTMTest.cpp 121 auto it2 = output_shapes.begin(); local
124 OperandType X##OpndTy(Type::TENSOR_FLOAT32, *it2++); \
144 it2 = output_shapes.begin();
146 #define ReserveOutput(X) X##_.insert(X##_.end(), multiAll(*it2++), 0.f);
    [all...]
SVDFTest.cpp 223 auto it2 = output_shapes.begin(); local
226 OperandType X##OpndTy(Type::TENSOR_FLOAT32, *it2++); \
242 it2 = output_shapes.begin();
244 #define ReserveOutput(X) X##_.insert(X##_.end(), multiAll(*it2++), 0.f);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
StringCharacterIteratorTest.java 136 StringCharacterIterator it2 = new StringCharacterIterator("xxstinx", 2, local
138 assertTrue("Range is equal", !it1.equals(it2));
461 StringCharacterIterator it2 = new StringCharacterIterator("xxstinx", 2, local
463 assertTrue("Hash is equal", it1.hashCode() != it2.hashCode());
  /external/google-breakpad/src/common/windows/
omap.cc 444 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/gtest/test/
gtest-param-test_test.cc 194 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);
    [all...]

Completed in 679 milliseconds

1 2 3 45 6 7 8 91011