Home
last modified time | relevance | path

Searched refs:otherIsRoot (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DRuleBasedCollator.java1410 boolean otherIsRoot = o.data.base == null; in equals()
1411 assert(!thisIsRoot || !otherIsRoot); // otherwise their data pointers should be == in equals()
1412 if(thisIsRoot != otherIsRoot) { return false; } in equals()
1416 (otherIsRoot || otherRules.length() != 0)) { in equals()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRuleBasedCollator.java1373 boolean otherIsRoot = o.data.base == null; in equals()
1374 assert(!thisIsRoot || !otherIsRoot); // otherwise their data pointers should be == in equals()
1375 if(thisIsRoot != otherIsRoot) { return false; } in equals()
1379 (otherIsRoot || otherRules.length() != 0)) { in equals()
/external/icu/icu4c/source/i18n/
Drulebasedcollator.cpp248 UBool otherIsRoot = o.data->base == NULL; variable
249 U_ASSERT(!thisIsRoot || !otherIsRoot); // otherwise their data pointers should be ==
250 if(thisIsRoot != otherIsRoot) { return FALSE; }
252 (otherIsRoot || !o.tailoring->rules.isEmpty())) {