OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NativeCollation
(Results
1 - 3
of
3
) 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
...]
NativeCollation.java
18
public final class
NativeCollation
{
19
private
NativeCollation
() {
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
...]
Completed in 68 milliseconds