OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextForCodePoint
(Results
1 - 18
of
18
) sorted by null
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
CharsTrieTest.java
234
if( (result=trie.
nextForCodePoint
(0x4dff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
235
(result=trie.
nextForCodePoint
(0x10000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
236
(result=trie.
nextForCodePoint
(0x9999))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
237
(result=trie.
nextForCodePoint
(0x20000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
238
(result=trie.
nextForCodePoint
(0xdfff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
239
(result=trie.
nextForCodePoint
(0x10ffff))!=BytesTrie.Result.FINAL_VALUE || result!=trie.current() ||
242
errln("CharsTrie.
nextForCodePoint
() fails for "+data[0].s);
245
(result=trie.
nextForCodePoint
(0x10000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
246
(result=trie.
nextForCodePoint
(0x9999))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
247
(result=trie.
nextForCodePoint
(0x20002))!=BytesTrie.Result.FINAL_VALUE || result!=trie.current() |
[
all
...]
/external/icu/icu4c/source/test/intltest/
ucharstrietest.cpp
300
if( (result=trie->
nextForCodePoint
(0x4dff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
301
(result=trie->
nextForCodePoint
(0x10000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
302
(result=trie->
nextForCodePoint
(0x9999))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
303
(result=trie->
nextForCodePoint
(0x20000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
304
(result=trie->
nextForCodePoint
(0xdfff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
305
(result=trie->
nextForCodePoint
(0x10ffff))!=USTRINGTRIE_FINAL_VALUE || result!=trie->current() ||
308
errln("UCharsTrie.
nextForCodePoint
() fails for %s", data[0].s);
311
(result=trie->
nextForCodePoint
(0x10000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
312
(result=trie->
nextForCodePoint
(0x9999))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
313
(result=trie->
nextForCodePoint
(0x20002))!=USTRINGTRIE_FINAL_VALUE || result!=trie->current() |
[
all
...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
CharsTrieTest.java
230
if( (result=trie.
nextForCodePoint
(0x4dff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
231
(result=trie.
nextForCodePoint
(0x10000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
232
(result=trie.
nextForCodePoint
(0x9999))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
233
(result=trie.
nextForCodePoint
(0x20000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
234
(result=trie.
nextForCodePoint
(0xdfff))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
235
(result=trie.
nextForCodePoint
(0x10ffff))!=BytesTrie.Result.FINAL_VALUE || result!=trie.current() ||
238
errln("CharsTrie.
nextForCodePoint
() fails for "+data[0].s);
241
(result=trie.
nextForCodePoint
(0x10000))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
242
(result=trie.
nextForCodePoint
(0x9999))!=BytesTrie.Result.NO_VALUE || result!=trie.current() ||
243
(result=trie.
nextForCodePoint
(0x20002))!=BytesTrie.Result.FINAL_VALUE || result!=trie.current() |
[
all
...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
CharsDictionaryMatcher.java
58
result = uct.
nextForCodePoint
(c);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsDictionaryMatcher.java
57
result = uct.
nextForCodePoint
(c);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleFilteredSentenceBreakIterator.java
77
((r = backwardsTrie.
nextForCodePoint
(uch)).hasNext())) {// more in the trie
104
&& ((rfwd = forwardsPartialTrie.
nextForCodePoint
(uch)).hasNext())) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimpleFilteredSentenceBreakIterator.java
75
((r = backwardsTrie.
nextForCodePoint
(uch)).hasNext())) {// more in the trie
102
&& ((rfwd = forwardsPartialTrie.
nextForCodePoint
(uch)).hasNext())) {
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationIterator.java
673
BytesTrie.Result match = prefixes.
nextForCodePoint
(c);
760
match = suffixes.
nextForCodePoint
(c);
[
all
...]
/external/icu/icu4c/source/common/unicode/
ucharstrie.h
170
* Equivalent to reset().
nextForCodePoint
(cp).
192
UStringTrieResult
nextForCodePoint
(UChar32 cp);
/external/icu/icu4c/source/i18n/
collationiterator.cpp
458
UStringTrieResult match = prefixes.
nextForCodePoint
(c);
548
match = suffixes.
nextForCodePoint
(c);
612
suffixes.
nextForCodePoint
(nextCodePoint(errorCode));
630
if(prevCC < (fcd16 >> 8) && USTRINGTRIE_HAS_VALUE(match = suffixes.
nextForCodePoint
(c))) {
[
all
...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationIterator.java
671
BytesTrie.Result match = prefixes.
nextForCodePoint
(c);
758
match = suffixes.
nextForCodePoint
(c);
814
suffixes.
nextForCodePoint
(nextCodePoint());
[
all
...]
/external/icu/icu4c/source/common/
filteredbrk.cpp
279
USTRINGTRIE_HAS_NEXT(r=fData->fBackwardsTrie->
nextForCodePoint
(uch))) {// more in the trie
314
USTRINGTRIE_HAS_NEXT(rfwd=fData->fForwardsPartialTrie->
nextForCodePoint
(uch))) {
ucharstrie.cpp
51
UCharsTrie::
nextForCodePoint
(UChar32 cp) {
/external/icu/android_icu4j/src/main/java/android/icu/util/
CharsTrie.java
150
* Equivalent to reset().
nextForCodePoint
(cp).
195
public Result
nextForCodePoint
(int cp) {
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CharsTrie.java
158
* Equivalent to reset().
nextForCodePoint
(cp).
206
public Result
nextForCodePoint
(int cp) {
[
all
...]
/prebuilts/misc/common/icu4j/
icu4j.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar
Completed in 917 milliseconds