HomeSort by relevance Sort by last modified time
    Searched refs:NativeCollation (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/libcore/icu/
CollationElementIteratorICU.java 55 NativeCollation.reset(address);
66 return NativeCollation.next(address);
77 return NativeCollation.previous(address);
90 return NativeCollation.getMaxExpansion(address, order);
99 NativeCollation.setText(address, source);
103 NativeCollation.setText(address, source.toString());
114 return NativeCollation.getOffset(address);
124 NativeCollation.setOffset(address, offset);
159 int iteratorAddress = NativeCollation.getCollationElementIterator(collatorAddress, source);
176 NativeCollation.closeElements(address)
    [all...]
RuleBasedCollatorICU.java 51 address = NativeCollation.openCollatorFromRules(rules, VALUE_OFF, VALUE_DEFAULT_STRENGTH);
55 address = NativeCollation.openCollator(locale.toString());
63 return new RuleBasedCollatorICU(NativeCollation.safeClone(address));
67 return NativeCollation.compare(address, source, target);
71 return NativeCollation.getAttribute(address, DECOMPOSITION_MODE);
75 NativeCollation.setAttribute(address, DECOMPOSITION_MODE, mode);
79 return NativeCollation.getAttribute(address, STRENGTH);
83 NativeCollation.setAttribute(address, STRENGTH, strength);
87 NativeCollation.setAttribute(address, type, value);
91 return NativeCollation.getAttribute(address, type)
    [all...]
NativeCollation.java 18 public final class NativeCollation {
19 private NativeCollation() {
  /libcore/luni/src/main/native/
libcore_icu_NativeCollation.cpp 10 #define LOG_TAG "NativeCollation"
178 NATIVE_METHOD(NativeCollation, closeCollator, "(I)V"),
179 NATIVE_METHOD(NativeCollation, closeElements, "(I)V"),
180 NATIVE_METHOD(NativeCollation, compare, "(ILjava/lang/String;Ljava/lang/String;)I"),
181 NATIVE_METHOD(NativeCollation, getAttribute, "(II)I"),
182 NATIVE_METHOD(NativeCollation, getCollationElementIterator, "(ILjava/lang/String;)I"),
183 NATIVE_METHOD(NativeCollation, getMaxExpansion, "(II)I"),
184 NATIVE_METHOD(NativeCollation, getOffset, "(I)I"),
185 NATIVE_METHOD(NativeCollation, getRules, "(I)Ljava/lang/String;"),
186 NATIVE_METHOD(NativeCollation, getSortKey, "(ILjava/lang/String;)[B")
    [all...]

Completed in 156 milliseconds