HomeSort by relevance Sort by last modified time
    Searched full:cca3 (Results 1 - 2 of 2) sorted by null

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
CompactArrayTest.java 102 CompactCharArray cca3 = (CompactCharArray)cca.clone(); local
106 logln("equals clone: " + cca.equals(cca3));
131 logln("modified equals clone: " + cca.equals(cca3));
133 cca3.setElementAt((char)0x405, (char)0xdf); // equivalent modification
134 logln("modified equals modified clone: " + cca.equals(cca3));
136 cca3.setElementAt((char)0x405, (char)0xee); // different modification
137 logln("different mod equals: " + cca.equals(cca3));
140 cca3.compact(true);
141 logln("different mod equals: " + cca.equals(cca3));
143 cca3.setElementAt((char)0x405, (char)0xee); // different modificatio
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
CompactArrayTest.java 98 CompactCharArray cca3 = (CompactCharArray)cca.clone(); local
102 logln("equals clone: " + cca.equals(cca3));
127 logln("modified equals clone: " + cca.equals(cca3));
129 cca3.setElementAt((char)0x405, (char)0xdf); // equivalent modification
130 logln("modified equals modified clone: " + cca.equals(cca3));
132 cca3.setElementAt((char)0x405, (char)0xee); // different modification
133 logln("different mod equals: " + cca.equals(cca3));
136 cca3.compact(true);
137 logln("different mod equals: " + cca.equals(cca3));
139 cca3.setElementAt((char)0x405, (char)0xee); // different modificatio
    [all...]

Completed in 655 milliseconds