Home
last modified time | relevance | path

Searched refs:thisIterator (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DRegularImmutableSortedSet.java96 Iterator<E> thisIterator = iterator(); in containsAll() local
102 while (thisIterator.hasNext()) { in containsAll()
104 int cmp = unsafeCompare(thisIterator.next(), target); in containsAll()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DNode.cpp1016 Node* thisIterator = this; in commonAncestor() local
1020 thisIterator = parent(*thisIterator); in commonAncestor()
1025 while (thisIterator) { in commonAncestor()
1026 if (thisIterator == otherIterator) in commonAncestor()
1027 return thisIterator; in commonAncestor()
1028 thisIterator = parent(*thisIterator); in commonAncestor()