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.cpp925 Node* thisIterator = this; in commonAncestor() local
929 thisIterator = parent(*thisIterator); in commonAncestor()
934 while (thisIterator) { in commonAncestor()
935 if (thisIterator == otherIterator) in commonAncestor()
936 return thisIterator; in commonAncestor()
937 thisIterator = parent(*thisIterator); in commonAncestor()