OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fcdTrieIndex
(Results
1 - 5
of
5
) sorted by null
/external/icu4c/common/
normalizer2impl.h
571
unorm_getFCD16(const uint16_t *
fcdTrieIndex
, UChar c) {
572
return
fcdTrieIndex
[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(
fcdTrieIndex
, c)];
584
unorm_nextFCD16(const uint16_t *
fcdTrieIndex
, UChar32 fcdHighStart,
587
uint16_t fcd=
fcdTrieIndex
[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(
fcdTrieIndex
, c)];
594
fcd=
fcdTrieIndex
[_UTRIE2_INDEX_FROM_SUPP(
fcdTrieIndex
, c)];
614
unorm_prevFCD16(const uint16_t *
fcdTrieIndex
, UChar32 fcdHighStart,
619
fcd=
fcdTrieIndex
[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(fcdTrieIndex, c)]
[
all
...]
/external/icu4c/i18n/
ucol_elm.cpp
746
const uint16_t *
fcdTrieIndex
;
752
fcdTrieIndex
= unorm_getFCDTrieIndex(fcdHighStart, status);
768
fcd = unorm_getFCD16(
fcdTrieIndex
, c);
[
all
...]
usearch.cpp
39
static const uint16_t *
fcdTrieIndex
= NULL;
105
fcdTrieIndex
= NULL;
119
if (
fcdTrieIndex
== NULL) {
120
fcdTrieIndex
= unorm_getFCDTrieIndex(fcdHighStart, status);
140
uint16_t result = unorm_nextFCD16(
fcdTrieIndex
, fcdHighStart, temp, str + strlength);
[
all
...]
ucol.cpp
54
// this is static pointer to the normalizer
fcdTrieIndex
58
static const uint16_t *
fcdTrieIndex
=NULL;
74
fcdTrieIndex
= NULL;
88
if (
fcdTrieIndex
!= NULL) {
92
fcdTrieIndex
= unorm_getFCDTrieIndex(fcdHighStart, status);
[
all
...]
ucol_bld.cpp
848
const uint16_t *
fcdTrieIndex
= unorm_getFCDTrieIndex(fcdHighStart, status);
[
all
...]
Completed in 1462 milliseconds