HomeSort by relevance Sort by last modified time
    Searched refs:it2 (Results 51 - 75 of 140) sorted by null

1 23 4 5 6

  /external/llvm/lib/MC/
MCMachOStreamer.cpp 439 for (MCSectionData::iterator it2 = it->begin(),
440 ie2 = it->end(); it2 != ie2; ++it2) {
441 if (MCSymbolData *SD = DefiningSymbolMap.lookup(it2))
443 it2->setAtom(CurrentAtom);
  /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));
HashtableTest.java 499 Iterator it2 = map2.keySet().iterator(); local
500 Integer remove3 = (Integer) it2.next();
506 it2.hasNext();
507 it2.remove();
508 assertTrue("Wrong result 2", it2.next().equals(next));
HashMapTest.java 385 Iterator it2 = map2.keySet().iterator(); local
386 Integer remove3 = (Integer) it2.next();
392 it2.hasNext();
393 it2.remove();
394 assertTrue("Wrong result 2", it2.next().equals(next));
IdentityHashMapTest.java 280 Iterator it2 = map2.keySet().iterator(); local
281 Integer remove3 = (Integer) it2.next();
287 it2.hasNext();
288 it2.remove();
289 assertTrue("Wrong result 2", it2.next().equals(next));
    [all...]
  /external/chromium_org/ui/display/chromeos/
display_configurator.cc 305 for (ContentProtections::const_iterator it2 = it->second.begin();
306 it2 != it->second.end();
307 ++it2) {
308 protections[it2->first] |= it2->second;
386 for (ContentProtections::const_iterator it2 = it->second.begin();
387 it2 != it->second.end();
388 ++it2) {
389 if (it->first == client_id && it2->first == display_id)
391 protections[it2->first] |= it2->second
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineIterator.h 112 inline bool operator==(const InlineIterator& it1, const InlineIterator& it2)
114 return it1.offset() == it2.offset() && it1.object() == it2.object();
117 inline bool operator!=(const InlineIterator& it1, const InlineIterator& it2)
119 return it1.offset() != it2.offset() || it1.object() != it2.object();
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 331 Iterator it2 = mergeList.listIterator(); local
334 while (it2.hasNext()) {
335 Object innerObj = it2.next();
  /external/ceres-solver/internal/ceres/
visibility_based_preconditioner.cc 515 for (HashSet<int>::const_iterator it2 = neighbors.begin();
516 it2 != neighbors.end();
517 ++it2) {
518 const int cluster2 = *it2;
schur_eliminator_impl.h 529 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/chromium_org/chrome/browser/extensions/
extension_web_ui.cc 284 for (base::ListValue::const_iterator it2 = url_list->begin();
285 it2 != url_list->end(); ++it2) {
287 if (!(*it2)->GetAsString(&override))
  /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());
BreakIteratorTest.java 182 BreakIterator it2 = BreakIterator.getCharacterInstance(Locale.CHINA); local
183 assertEquals(it, it2);
  /art/runtime/
fault_handler.cc 193 auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler); local
194 if (it2 != other_handlers_.end()) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 225 Iterator it2 = permitted.iterator(); local
226 while (it2.hasNext())
228 String _permitted = (String)it2.next();
290 Iterator it2 = permitted.iterator(); local
291 while (it2.hasNext())
293 byte[] _permitted = (byte[])it2.next();
1792 Iterator it2 = coll2.iterator(); local
    [all...]
  /external/chromium_org/net/disk_cache/simple/
simple_index.cc 70 EntrySet::const_iterator it2 = entry_set_.find(hash2); local
71 DCHECK(it2 != entry_set_.end());
72 return it1->second.GetLastUsedTime() < it2->second.GetLastUsedTime();
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_log.cc 595 for (std::set<std::string>::const_iterator it2 = it->second.begin();
596 it2 != it->second.end();
597 ++it2) {
598 action->mutable_args()->AppendString(*it2);
  /external/deqp/modules/glshared/
glsFboUtil.cpp 94 for (const FormatKey* it2 = it->second.begin(); it2 != it->second.end(); it2++)
95 db.addFormat(formatKeyInfo(*it2), it->first);
  /external/oprofile/pp/
opreport.cpp 552 list<inverted_profile>::iterator it2 = iprofiles2.begin(); local
555 for (; it2 != end2; ++it2)
556 populate_for_image(pc2, *it2,
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 401 final Iterator<String> it2 = cf.generateCertPath(certs).getEncodings(); local
403 assertEquals(p.getName(), it1.hasNext(), it2.hasNext());
409 assertEquals(p.getName(), encoding, it2.next());
418 it2.remove();
  /external/chromium_org/sync/engine/
model_type_sync_proxy_impl.cc 246 EntityMap::iterator it2 = entities_.find(client_tag_hash); local
247 it2->second->UpdateDesiredEncryptionKey(
  /libcore/luni/src/main/java/java/util/
AbstractList.java 491 Iterator<?> it1 = iterator(), it2 = list.iterator(); local
493 Object e1 = it1.next(), e2 = it2.next();
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework_unittest.cc 473 for (PacketsIt it1 = original.begin(), it2 = jittered.begin();
474 it1 != original.end() && it2 != jittered.end(); ++it1, ++it2) {
475 EXPECT_EQ(it1->header().sequenceNumber, it2->header().sequenceNumber);
476 jitter_us.Push(it2->send_time_us() - it1->send_time_us());
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_window_manager_chromeos.cc 616 TransientWindowToVisibility::iterator it2 = local
618 if (it2 == transient_window_to_visibility_.end() || it2->second)
  /art/compiler/optimizing/
code_generator.cc 348 auto it2 = table.DexToPcBegin(); local
356 CHECK(it2 == table.DexToPcEnd());

Completed in 1896 milliseconds

1 23 4 5 6