Home
last modified time | relevance | path

Searched refs:otherIter (Results 1 – 4 of 4) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
DAnnotations.java111 Iterator<Annotation> otherIter = other.annotations.values().iterator(); in compareTo() local
113 while (thisIter.hasNext() && otherIter.hasNext()) { in compareTo()
115 Annotation otherOne = otherIter.next(); in compareTo()
125 } else if (otherIter.hasNext()) { in compareTo()
DAnnotation.java105 Iterator<NameValuePair> otherIter = other.elements.values().iterator(); in compareTo() local
107 while (thisIter.hasNext() && otherIter.hasNext()) { in compareTo()
109 NameValuePair otherOne = otherIter.next(); in compareTo()
119 } else if (otherIter.hasNext()) { in compareTo()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTrie2.java301 Iterator<Trie2.Range> otherIter = OtherTrie.iterator(); in equals() local
303 if (otherIter.hasNext() == false) { in equals()
306 rangeFromOther = otherIter.next(); in equals()
311 if (otherIter.hasNext()) { in equals()
/external/icu/icu4c/source/i18n/
Dcoleitr.cpp363 const UTF16CollationIterator *otherIter = in operator =() local
365 if(otherIter != NULL) { in operator =()
366 newIter = new UTF16CollationIterator(*otherIter, string_.getBuffer()); in operator =()