/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
StringCharacterIteratorTest.java | 134 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local 138 assertTrue("Range is equal", !it1.equals(it2)); 142 assertTrue("Not equal", it1.equals(it3)); 189 StringCharacterIterator it1 = local 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 = local 211 assertEquals("Wrong begin index 2", 2, it1.getBeginIndex()) 228 StringCharacterIterator it1 = local 290 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local 336 StringCharacterIterator it1 = local 446 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local 459 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local 489 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local 501 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local 514 StringCharacterIterator it1 = new StringCharacterIterator("testing", 2, local [all...] |
/external/oprofile/libpp/ |
diff_container.cpp | 127 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...] |
sample_container.cpp | 93 iterator it1 = samples_by_loc.lower_bound(&lower); local 96 return accumulate(it1, it2, count_array_t(), add_counts);
|
arrange_profiles.cpp | 137 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/ |
KeyframeList.cpp | 45 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/ |
RouteList.java | 78 ListIterator<Route> it1 = that.listIterator(); local 81 Route route1 = (Route) it1.next();
|
SIPObjectList.java | 87 Iterator<GenericObject> it1 = this.listIterator(); local 89 while (it1.hasNext()) { 90 GenericObject outerObj = (GenericObject) it1.next();
|
SIPHeaderList.java | 430 for (Iterator<HDR> it1 = this.hlist.iterator(); it1.hasNext() 432 SIPHeader sipHeader1 = (SIPHeader) it1.next();
|
/external/webkit/Source/WebCore/rendering/ |
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/ |
LinkedHashMapTest.java | 462 Iterator it1 = s1.iterator(); local 464 for (i = 0; it1.hasNext(); i++) { 465 Map.Entry m = (Map.Entry) it1.next(); 524 Iterator it1 = s1.iterator(); local 526 for (i = 0; it1.hasNext(); i++) { 527 Integer jj = (Integer) it1.next(); 580 Iterator it1 = s1.iterator(); local 582 for (i = 0; it1.hasNext(); i++) { 583 Integer jj = (Integer) it1.next(); 636 Iterator it1 = s1.iterator() local [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
LinkedHashMapTest.java | 525 Iterator it1 = s1.iterator(); local 527 for (i = 0; it1.hasNext(); i++) { 528 Map.Entry m = (Map.Entry) it1.next(); 587 Iterator it1 = s1.iterator(); local 589 for (i = 0; it1.hasNext(); i++) { 590 Integer jj = (Integer) it1.next(); 643 Iterator it1 = s1.iterator(); local 645 for (i = 0; it1.hasNext(); i++) { 646 Integer jj = (Integer) it1.next(); 699 Iterator it1 = s1.iterator() local [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertificateFactory1Test.java | 311 Iterator it1 = certFs[0].getCertPathEncodings(); local 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();
|
/libcore/luni/src/test/java/libcore/java/text/ |
BreakIteratorTest.java | 47 BreakIterator it1 = BreakIterator.getWordInstance(Locale.CANADA_FRENCH); local 48 assertTrue("Incorrect BreakIterator", it1 != BreakIterator.getWordInstance());
|
/libcore/luni/src/test/java/tests/security/cert/ |
CertificateFactory1Test.java | 299 Iterator<String> it1 = certFs[0].getCertPathEncodings(); local 301 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext()); 302 while (it1.hasNext()) { 304 String s1 = it1.next(); 315 it1 = certFs[0].getCertPathEncodings(); 317 assertEquals("Incorrect encodings", it1.hasNext(), it2.hasNext()); 318 while (it1.hasNext()) { 320 String s1 = it1.next();
|
/external/nist-sip/java/gov/nist/core/ |
GenericObjectList.java | 330 Iterator it1 = this.listIterator(); 332 while (it1.hasNext()) { 333 GenericObject outerObj = (GenericObject) it1.next();
|
/libcore/luni/src/main/java/java/util/ |
AbstractList.java | 491 Iterator<?> it1 = iterator(), it2 = list.iterator(); local 492 while (it1.hasNext()) { 493 Object e1 = it1.next(), e2 = it2.next();
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
PKIXNameConstraintValidator.java | 1735 Iterator it1 = coll.iterator(); local 1784 Iterator it1 = coll1.iterator(); local [all...] |
/external/chromium/net/base/ |
cookie_monster.cc | 111 bool LRUCookieSorter(const CookieMonster::CookieMap::iterator& it1, 114 if (it1->second->LastAccessDate() != it2->second->LastAccessDate()) 115 return it1->second->LastAccessDate() < it2->second->LastAccessDate(); 120 return it1->second->CreationDate() < it2->second->CreationDate(); [all...] |
/external/chromium/testing/gmock/test/ |
gmock-spec-builders_test.cc | 1457 ExpectationSet::const_iterator it1 = es1.begin(); local [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
DetailedHeapshotGridNodes.js | 498 WebInspector.HeapSnapshotIteratorsTuple = function(it1, it2) 500 this._it1 = it1;
|
/external/v8/test/cctest/ |
test-debug.cc | 502 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())); [all...] |
/external/valgrind/tsan/ |
thread_sanitizer.cc | [all...] |
/prebuilt/common/jfreechart/ |
jcommon-1.0.12.jar | |