/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
D | StringCharacterIteratorTest.java | 134 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, in test_equalsLjava_lang_Object() local 138 assertTrue("Range is equal", !it1.equals(it2)); in test_equalsLjava_lang_Object() 142 assertTrue("Not equal", it1.equals(it3)); in test_equalsLjava_lang_Object() 189 StringCharacterIterator it1 = in test_first() local 191 assertEquals("Wrong first char", 's', it1.first()); in test_first() 192 assertEquals("Wrong next char", 't', it1.next()); in test_first() 193 it1 = new StringCharacterIterator("testing", 2, 2, 2); in test_first() 194 assertTrue("Not DONE", it1.first() == CharacterIterator.DONE); in test_first() 209 StringCharacterIterator it1 = in test_getBeginIndex() local 211 assertEquals("Wrong begin index 2", 2, it1.getBeginIndex()); in test_getBeginIndex() [all …]
|
/external/oprofile/libpp/ |
D | diff_container.cpp | 127 symbol_container::symbols_t::iterator it1 = pc1.begin_symbol(); in get_symbols() local 132 while (it1 != end1 && it2 != end2) { in get_symbols() 133 if (rough_less(*it1, *it2)) { in get_symbols() 134 symbol_old(syms, *it1, choice); in get_symbols() 135 ++it1; in get_symbols() 136 } else if (rough_less(*it2, *it1)) { in get_symbols() 140 symbol_diff(syms, *it1, total1, *it2, total2, choice); in get_symbols() 141 ++it1; in get_symbols() 146 for (; it1 != end1; ++it1) in get_symbols() 147 symbol_old(syms, *it1, choice); in get_symbols()
|
D | sample_container.cpp | 93 iterator it1 = samples_by_loc.lower_bound(&lower); in accumulate_samples() local 96 return accumulate(it1, it2, count_array_t(), add_counts); in accumulate_samples()
|
D | arrange_profiles.cpp | 137 vector<profile_class>::const_iterator it1 = v.begin(); in matches() local 141 while (it1 != end1) { in matches() 142 if (it1->ptemplate.event != it2->ptemplate.event) in matches() 144 if (it1->ptemplate.count != it2->ptemplate.count) in matches() 147 ++it1; in matches()
|
/external/webkit/Source/WebCore/rendering/style/ |
D | KeyframeList.cpp | 45 …for (Vector<KeyframeValue>::const_iterator it1 = m_keyframes.begin(); it1 != m_keyframes.end(); ++… in operator ==() local 46 if (it1->key() != it2->key()) in operator ==() 48 const RenderStyle& style1 = *it1->style(); in operator ==()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | SIPObjectList.java | 87 Iterator<GenericObject> it1 = this.listIterator(); in mergeObjects() local 89 while (it1.hasNext()) { in mergeObjects() 90 GenericObject outerObj = (GenericObject) it1.next(); in mergeObjects()
|
D | RouteList.java | 78 ListIterator<Route> it1 = that.listIterator(); in equals() local 81 Route route1 = (Route) it1.next(); in equals()
|
D | SIPHeaderList.java | 430 for (Iterator<HDR> it1 = this.hlist.iterator(); it1.hasNext() in match() 432 SIPHeader sipHeader1 = (SIPHeader) it1.next(); in match()
|
/external/webkit/Source/WebCore/rendering/ |
D | InlineIterator.h | 95 inline bool operator==(const InlineIterator& it1, const InlineIterator& it2) 97 return it1.m_pos == it2.m_pos && it1.m_obj == it2.m_obj; 100 inline bool operator!=(const InlineIterator& it1, const InlineIterator& it2) 102 return it1.m_pos != it2.m_pos || it1.m_obj != it2.m_obj;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | LinkedHashMapTest.java | 462 Iterator it1 = s1.iterator(); in test_ordered_entrySet() local 464 for (i = 0; it1.hasNext(); i++) { in test_ordered_entrySet() 465 Map.Entry m = (Map.Entry) it1.next(); in test_ordered_entrySet() 524 Iterator it1 = s1.iterator(); in test_ordered_keySet() local 526 for (i = 0; it1.hasNext(); i++) { in test_ordered_keySet() 527 Integer jj = (Integer) it1.next(); in test_ordered_keySet() 580 Iterator it1 = s1.iterator(); in test_ordered_values() local 582 for (i = 0; it1.hasNext(); i++) { in test_ordered_values() 583 Integer jj = (Integer) it1.next(); in test_ordered_values() 636 Iterator it1 = s1.iterator(); in test_remove_eldest() local [all …]
|
/external/chromium/chrome/browser/importer/ |
D | safari_importer_unittest.mm | 53 history::URLRow& it1 = history_items[0]; 54 EXPECT_EQ(it1.url(), GURL("http://www.firsthistoryitem.com/")); 55 EXPECT_EQ(it1.title(), UTF8ToUTF16("First History Item Title")); 56 EXPECT_EQ(it1.visit_count(), 1); 57 EXPECT_EQ(it1.hidden(), 0); 58 EXPECT_EQ(it1.typed_count(), 0); 59 EXPECT_EQ(it1.last_visit().ToDoubleT(),
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
D | CertificateFactory1Test.java | 311 Iterator it1 = certFs[0].getCertPathEncodings(); in testCertificateFactory09() local 313 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext()); in testCertificateFactory09() 314 while (it1.hasNext()) { in testCertificateFactory09() 316 String s1 = (String) it1.next(); in testCertificateFactory09() 327 it1 = certFs[0].getCertPathEncodings(); in testCertificateFactory09() 329 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext()); in testCertificateFactory09() 330 while (it1.hasNext()) { in testCertificateFactory09() 332 String s1 = (String) it1.next(); in testCertificateFactory09()
|
/external/nist-sip/java/gov/nist/core/ |
D | GenericObjectList.java | 330 Iterator it1 = this.listIterator(); in mergeObjects() 332 while (it1.hasNext()) { in mergeObjects() 333 GenericObject outerObj = (GenericObject) it1.next(); in mergeObjects()
|
/external/openssl/crypto/conf/ |
D | ssleay.cnf | 6 in\#it1 =10
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXNameConstraintValidator.java | 1735 Iterator it1 = coll.iterator(); in hashCollection() local 1736 while (it1.hasNext()) in hashCollection() 1738 Object o = it1.next(); in hashCollection() 1784 Iterator it1 = coll1.iterator(); in collectionsAreEqual() local 1786 while (it1.hasNext()) in collectionsAreEqual() 1788 Object a = it1.next(); in collectionsAreEqual()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | DetailedHeapshotGridNodes.js | 498 WebInspector.HeapSnapshotIteratorsTuple = function(it1, it2) argument 500 this._it1 = it1;
|
/external/chromium/net/base/ |
D | cookie_monster.cc | 111 bool LRUCookieSorter(const CookieMonster::CookieMap::iterator& it1, in LRUCookieSorter() argument 114 if (it1->second->LastAccessDate() != it2->second->LastAccessDate()) in LRUCookieSorter() 115 return it1->second->LastAccessDate() < it2->second->LastAccessDate(); in LRUCookieSorter() 120 return it1->second->CreationDate() < it2->second->CreationDate(); in LRUCookieSorter()
|
/external/chromium/testing/gmock/test/ |
D | gmock-spec-builders_test.cc | 1457 ExpectationSet::const_iterator it1 = es1.begin(); in TEST() local 1458 ExpectationSet::const_iterator it2 = it1; in TEST() 1460 EXPECT_TRUE(*it1 == e1 || *it2 == e1); // e1 must be in the set. in TEST() 1461 EXPECT_TRUE(*it1 == e2 || *it2 == e2); // e2 must be in the set too. in TEST()
|
/external/v8/test/cctest/ |
D | test-debug.cc | 502 TestBreakLocationIterator it1(Debug::GetDebugInfo(shared)); in CheckDebugBreakFunction() local 503 it1.FindBreakLocationFromPosition(position); in CheckDebugBreakFunction() 504 CHECK_EQ(mode, it1.it()->rinfo()->rmode()); in CheckDebugBreakFunction() 507 Code::GetCodeFromTargetAddress(it1.it()->rinfo()->target_address())); in CheckDebugBreakFunction() 509 CHECK(Debug::IsDebugBreakAtReturn(it1.it()->rinfo())); in CheckDebugBreakFunction()
|
/external/valgrind/tsan/ |
D | thread_sanitizer.cc | 6065 for (SampleMapMap::iterator it1 = samples_->begin(); in ShowSamples() local 6066 it1 != samples_->end(); ++it1) { in ShowSamples() 6067 string name = it1->first; in ShowSamples() 6068 SampleMap &m = it1->second; in ShowSamples()
|