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

  /libcore/luni/src/main/java/libcore/icu/
CollationElementIteratorICU.java 46 NativeCollation.reset(address);
57 return NativeCollation.next(address);
68 return NativeCollation.previous(address);
81 return NativeCollation.getMaxExpansion(address, order);
90 NativeCollation.setText(address, source);
94 NativeCollation.setText(address, source.toString());
105 return NativeCollation.getOffset(address);
115 NativeCollation.setOffset(address, offset);
150 long iteratorAddress = NativeCollation.getCollationElementIterator(collatorAddress, source);
167 NativeCollation.closeElements(address)
    [all...]
NativeCollation.java 20 public final class NativeCollation {
21 private NativeCollation() {
RuleBasedCollatorICU.java 51 address = NativeCollation.openCollatorFromRules(rules, VALUE_OFF, VALUE_DEFAULT_STRENGTH);
55 address = NativeCollation.openCollator(locale);
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...]

Completed in 54 milliseconds