Home
last modified time | relevance | path

Searched refs:UTRIE2_GET16 (Results 1 – 8 of 8) sorted by relevance

/external/icu4c/common/
Dubidi_props.c131 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getClass()
137 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isMirrored()
143 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getMirror()
176 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isBidiControl()
182 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_isJoinControl()
188 uint16_t props=UTRIE2_GET16(&bdp->trie, c); in ubidi_getJoiningType()
Ducase.c133 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_tolower()
150 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_toupper()
167 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_totitle()
228 props=UTRIE2_GET16(&csp->trie, c); in ucase_addCaseClosure()
397 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_getType()
404 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_getTypeOrIgnorable()
420 uint16_t props=UTRIE2_GET16(&csp->trie, c); in getDotType()
436 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_isCaseSensitive()
781 uint16_t props=UTRIE2_GET16(&csp->trie, c); in ucase_toFullLower()
925 uint16_t props=UTRIE2_GET16(&csp->trie, c); in toUpperOrTitle()
[all …]
Duchar.c42 #define GET_PROPS(c, result) ((result)=UTRIE2_GET16(&propsTrie, c));
500 vecIndex=UTRIE2_GET16(&propsVectorsTrie, c); in u_getUnicodeProperties()
Dnormalizer2impl.h217 uint16_t getNorm16(UChar32 c) const { return UTRIE2_GET16(normTrie, c); } in getNorm16()
244 uint16_t getFCD16(UChar32 c) const { return UTRIE2_GET16(fcdTrie(), c); } in getFCD16()
Dutrie2.h389 #define UTRIE2_GET16(trie, c) _UTRIE2_GET((trie), index, (trie)->indexLength, (c)) macro
Duprops.cpp309 return UTRIE2_GET16(trie, c); in getFCD16()
Dutrie2.cpp58 return UTRIE2_GET16(trie, c); in utrie2_get32()
/external/icu4c/test/cintltst/
Dtrie2test.c154 value2=UTRIE2_GET16(trie, start); in testTrieGetters()
249 value=UTRIE2_GET16(trie, -1); in testTrieGetters()
250 value2=UTRIE2_GET16(trie, 0x110000); in testTrieGetters()