Home
last modified time | relevance | path

Searched refs:utf8buf (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dspooftest.c450 char utf8buf[200]; in TestUSpoofCAPI() local
454 u_strToUTF8(utf8buf, sizeof(utf8buf), NULL, goodLatin, -1, &status); in TestUSpoofCAPI()
457 checkResults = uspoof_checkUTF8(sc, utf8buf, -1, &position, &status); in TestUSpoofCAPI()
462 u_strToUTF8(utf8buf, sizeof(utf8buf), NULL, goodCyrl, -1, &status); in TestUSpoofCAPI()
464 checkResults = uspoof_checkUTF8(sc, utf8buf, -1, &position, &status); in TestUSpoofCAPI()
468 u_strToUTF8(utf8buf, sizeof(utf8buf), NULL, scMixed, -1, &status); in TestUSpoofCAPI()
471 checkResults = uspoof_checkUTF8(sc, utf8buf, -1, &position, &status); in TestUSpoofCAPI()
485 char utf8buf[200]; in TestUSpoofCAPI() local
516 u_strToUTF8(utf8buf, sizeof(utf8buf), NULL, goodLatin, -1, &status); in TestUSpoofCAPI()
518 result1 = uspoof_checkUTF8(sc, utf8buf, -1, NULL, &status); in TestUSpoofCAPI()
[all …]
/external/oj-libjdwp/src/share/back/
Derror_messages.c63 jbyte utf8buf[MAX_MESSAGE_LEN+1]; in vprint_message() local
68 (void)vsnprintf((char*)utf8buf, MAX_MESSAGE_LEN, format, ap); in vprint_message()
69 utf8buf[MAX_MESSAGE_LEN] = 0; in vprint_message()
70 len = (int)strlen((char*)utf8buf); in vprint_message()
75 utf8buf, len, pbuf, MAX_MESSAGE_LEN); in vprint_message()
78 strncpy(pbuf, (char*)utf8buf, len); in vprint_message()