Home
last modified time | relevance | path

Searched refs:it1 (Results 1 – 10 of 10) sorted by relevance

/external/webkit/WebCore/rendering/style/
DKeyframeList.cpp45 …for (Vector<KeyframeValue>::const_iterator it1 = m_keyframes.begin(); it1 != m_keyframes.end(); ++ in operator ==() local
46 if (it1->m_key != it2->m_key) in operator ==()
48 const RenderStyle& style1 = *it1->m_style; in operator ==()
/external/nist-sip/java/gov/nist/javax/sip/header/
DSIPObjectList.java87 Iterator<GenericObject> it1 = this.listIterator(); in mergeObjects() local
89 while (it1.hasNext()) { in mergeObjects()
90 GenericObject outerObj = (GenericObject) it1.next(); in mergeObjects()
DRouteList.java78 ListIterator<Route> it1 = that.listIterator(); in equals() local
81 Route route1 = (Route) it1.next(); in equals()
DSIPHeaderList.java430 for (Iterator<HDR> it1 = this.hlist.iterator(); it1.hasNext() in match()
432 SIPHeader sipHeader1 = (SIPHeader) it1.next(); in match()
/external/webkit/WebCore/rendering/
DInlineIterator.h64 inline bool operator==(const InlineIterator& it1, const InlineIterator& it2)
66 return it1.pos == it2.pos && it1.obj == it2.obj;
69 inline bool operator!=(const InlineIterator& it1, const InlineIterator& it2)
71 return it1.pos != it2.pos || it1.obj != it2.obj;
/external/nist-sip/java/gov/nist/core/
DGenericObjectList.java330 Iterator it1 = this.listIterator(); in mergeObjects()
332 while (it1.hasNext()) { in mergeObjects()
333 GenericObject outerObj = (GenericObject) it1.next(); in mergeObjects()
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
DPKIXNameConstraintValidator.java1735 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/openssl/crypto/conf/
Dssleay.cnf6 in\#it1 =10
/external/chromium/net/base/
Dcookie_monster.cc570 static bool LRUCookieSorter(const CookieMonster::CookieMap::iterator& it1, in LRUCookieSorter() argument
573 if (it1->second->LastAccessDate() != it2->second->LastAccessDate()) in LRUCookieSorter()
574 return it1->second->LastAccessDate() < it2->second->LastAccessDate(); in LRUCookieSorter()
579 return it1->second->CreationDate() < it2->second->CreationDate(); in LRUCookieSorter()
/external/v8/test/cctest/
Dtest-debug.cc478 TestBreakLocationIterator it1(Debug::GetDebugInfo(shared)); in CheckDebugBreakFunction() local
479 it1.FindBreakLocationFromPosition(position); in CheckDebugBreakFunction()
480 CHECK_EQ(mode, it1.it()->rinfo()->rmode()); in CheckDebugBreakFunction()
483 Code::GetCodeFromTargetAddress(it1.it()->rinfo()->target_address())); in CheckDebugBreakFunction()
485 CHECK(Debug::IsDebugBreakAtReturn(it1.it()->rinfo())); in CheckDebugBreakFunction()