Lines Matching refs:script
78 case 0x0261: /* LATIN SMALL LETTER SCRIPT G */
983 // Read a script name if present.
990 // Got a word, map to script code and put it into the array.
991 int32_t script = u_getPropertyValueEnum(UCHAR_SCRIPT, word);
992 if (script >= 0 && script < USCRIPT_CODE_LIMIT) {
993 size_t index = script / 32;
994 uint32_t mask = 1 << (script % 32);
1029 UScriptCode script = uscript_getScript(c, &error);
1034 if (script < 0) {
1035 LOG_ERROR("got negative number for script code from ICU: %d", script);
1038 if (script >= USCRIPT_CODE_LIMIT) {
1041 size_t index = script / 32;
1042 uint32_t mask = 1 << (script % 32);