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

  /external/icu/icu4c/source/i18n/
collationdata.h 69 return UTRIE2_GET32(trie, c);
  /external/icu/icu4c/source/test/cintltst/
trie2test.c 156 value2=UTRIE2_GET32(trie, start);
163 value2=utrie2_get32(trie, start);
252 value=UTRIE2_GET32(trie, -1);
253 value2=UTRIE2_GET32(trie, 0x110000);
260 value=utrie2_get32(trie, -1);
261 value2=utrie2_get32(trie, 0x110000);
503 value=utrie2_get32(trie, 1);
505 value2=utrie2_get32(trie, 1);
514 value2=utrie2_get32(trie, 1);
735 value=utrie2_get32(trie, 0xa1)
    [all...]
  /external/icu/icu4c/source/common/
utrie2.h 133 * Easier to use than UTRIE2_GET16() and UTRIE2_GET32() but slower.
142 utrie2_get32(const UTrie2 *trie, UChar32 c);
402 #define UTRIE2_GET32(trie, c) _UTRIE2_GET((trie), data32, 0, (c))
593 * Same as UTRIE2_GET32() if c is a BMP code point except for lead surrogates,
    [all...]
utrie2.cpp 62 utrie2_get32(const UTrie2 *trie, UChar32 c) { function
66 return UTRIE2_GET32(trie, c);

Completed in 683 milliseconds