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

/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DStringCharacterIteratorTest.java134 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2,
138 assertTrue("Range is equal", !it1.equals(it2));
142 assertTrue("Not equal", it1.equals(it3));
189 StringCharacterIterator it1 =
191 assertEquals("Wrong first char", 's', it1.first());
192 assertEquals("Wrong next char", 't', it1.next());
193 it1 = new StringCharacterIterator("testing", 2, 2, 2);
194 assertTrue("Not DONE", it1.first() == CharacterIterator.DONE);
209 StringCharacterIterator it1 =
211 assertEquals("Wrong begin index 2", 2, it1
[all...]
/external/oprofile/libpp/
H A Ddiff_container.cpp127 symbol_container::symbols_t::iterator it1 = pc1.begin_symbol(); local
132 while (it1 != end1 && it2 != end2) {
133 if (rough_less(*it1, *it2)) {
134 symbol_old(syms, *it1, choice);
135 ++it1;
136 } else if (rough_less(*it2, *it1)) {
140 symbol_diff(syms, *it1, total1, *it2, total2, choice);
141 ++it1;
146 for (; it1 != end1; ++it1)
[all...]
H A Dsample_container.cpp93 iterator it1 = samples_by_loc.lower_bound(&lower); local
96 return accumulate(it1, it2, count_array_t(), add_counts);
H A Darrange_profiles.cpp137 vector<profile_class>::const_iterator it1 = v.begin(); local
141 while (it1 != end1) {
142 if (it1->ptemplate.event != it2->ptemplate.event)
144 if (it1->ptemplate.count != it2->ptemplate.count)
147 ++it1;
/external/webkit/Source/WebCore/rendering/style/
H A DKeyframeList.cpp45 for (Vector<KeyframeValue>::const_iterator it1 = m_keyframes.begin(); it1 != m_keyframes.end(); ++it1) {
46 if (it1->key() != it2->key())
48 const RenderStyle& style1 = *it1->style();
/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/webkit/Source/WebCore/rendering/
H A DInlineIterator.h95 inline bool operator==(const InlineIterator& it1, const InlineIterator& it2) argument
97 return it1.m_pos == it2.m_pos && it1.m_obj == it2.m_obj;
100 inline bool operator!=(const InlineIterator& it1, const InlineIterator& it2) argument
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/
H A DLinkedHashMapTest.java462 Iterator it1 = s1.iterator();
464 for (i = 0; it1.hasNext(); i++) {
465 Map.Entry m = (Map.Entry) it1.next();
524 Iterator it1 = s1.iterator();
526 for (i = 0; it1.hasNext(); i++) {
527 Integer jj = (Integer) it1.next();
580 Iterator it1 = s1.iterator();
582 for (i = 0; it1.hasNext(); i++) {
583 Integer jj = (Integer) it1.next();
636 Iterator it1
[all...]
/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/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/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java1735 Iterator it1 = coll.iterator();
1736 while (it1.hasNext())
1738 Object o = it1.next();
1784 Iterator it1 = coll1.iterator();
1786 while (it1.hasNext())
1788 Object a = it1.next();
/external/webkit/Source/WebCore/inspector/front-end/
H A DDetailedHeapshotGridNodes.js498 WebInspector.HeapSnapshotIteratorsTuple = function(it1, it2)
500 this._it1 = it1;
/external/chromium/net/base/
H A Dcookie_monster.cc111 bool LRUCookieSorter(const CookieMonster::CookieMap::iterator& it1, argument
114 if (it1->second->LastAccessDate() != it2->second->LastAccessDate())
115 return it1->second->LastAccessDate() < it2->second->LastAccessDate();
120 return it1->second->CreationDate() < it2->second->CreationDate();
/external/chromium/testing/gmock/test/
H A Dgmock-spec-builders_test.cc1457 ExpectationSet::const_iterator it1 = es1.begin(); local
1458 ExpectationSet::const_iterator it2 = it1;
1460 EXPECT_TRUE(*it1 == e1 || *it2 == e1); // e1 must be in the set.
1461 EXPECT_TRUE(*it1 == e2 || *it2 == e2); // e2 must be in the set too.
/external/v8/test/cctest/
H A Dtest-debug.cc502 TestBreakLocationIterator it1(Debug::GetDebugInfo(shared));
503 it1.FindBreakLocationFromPosition(position);
504 CHECK_EQ(mode, it1.it()->rinfo()->rmode());
507 Code::GetCodeFromTargetAddress(it1.it()->rinfo()->target_address()));
509 CHECK(Debug::IsDebugBreakAtReturn(it1.it()->rinfo()));
/external/valgrind/tsan/
H A Dthread_sanitizer.cc6065 for (SampleMapMap::iterator it1 = samples_->begin();
6066 it1 != samples_->end(); ++it1) {
6067 string name = it1->first;
6068 SampleMap &m = it1->second;

Completed in 640 milliseconds