OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:invariantChars
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/test/cintltst/
cstrtest.c
165
const char
invariantChars
[]=
194
length=sizeof(
invariantChars
);
195
u_charsToUChars(
invariantChars
, us, length);
197
log_err("u_charsToUChars(
invariantChars
) failed\n");
201
if(strcmp(cs,
invariantChars
)!=0) {
245
} else if(length!=sizeof(
invariantChars
)-1 || strcmp(cs,
invariantChars
)!=0) {
250
length=ucnv_toUChars(cnv, us, LENGTHOF(us),
invariantChars
, -1, &errorCode);
252
log_err("ucnv_toUChars(
invariantChars
) failed - %s\n", u_errorName(errorCode));
254
log_err("ucnv_toUChars(
invariantChars
) failed\n")
[
all
...]
/external/icu4c/common/
uinvchar.c
132
static const uint32_t
invariantChars
[4]={
143
#define UCHAR_IS_INVARIANT(c) (((c)<=0x7f) && (
invariantChars
[(c)>>5]&((uint32_t)1<<((c)&0x1f)))!=0)
Completed in 154 milliseconds