Home | History | Annotate | Download | only in dumpce

Lines Matching defs:codepoint

114     int   count; // number of codepoint
163 const UChar *codepoint = iter->iteratordata_.string;
170 serialize(f, codepoint, iter->iteratordata_.endp - codepoint);
171 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
172 iter->iteratordata_.endp - codepoint, sortkey, 64);
175 serialize(f, codepoint);
176 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
180 serialize(stdout, codepoint);
380 UChar32 codepoint = 0;
381 while (codepoint <= UCHAR_MAX_VALUE) {
382 if (u_isdefined(codepoint)) {
384 UTF16_APPEND_CHAR_UNSAFE(str, strlen, codepoint);
393 codepoint ++;
875 UChar32 codepoint;
876 U16_NEXT(element.ch, i, element.count, codepoint);
877 int32_t temp = u_charName(codepoint, U_UNICODE_CHAR_NAME, str, 128,
899 * Checks if codepoint belongs to scripts
902 * @param codepoint to test
903 * @return TRUE if codepoint belongs to scripts
906 UChar32 codepoint)
911 if ((codepoint >= 0x2E80 && codepoint <= 0x2EE4) ||
912 (codepoint >= 0x2A672 && codepoint <= 0x2A6D6)) {
917 else if (uscript_getScript(codepoint, &error) == script[i]) {
940 UChar32 codepoint;
941 U16_NEXT(scriptelem.ch, i, scriptelem.count, codepoint);
943 if (checkInScripts(script, scriptcount, codepoint)) {
959 UChar32 codepoint = 0;
1010 codepoint = strItem.char32At(i);
1011 UTF16_APPEND_CHAR_UNSAFE(scriptelem[count].ch, scriptelem[count].count, codepoint);
1015 codepoint = usetiter -> getCodepoint();
1017 UTF16_APPEND_CHAR_UNSAFE(scriptelem[count].ch, scriptelem[count].count, codepoint);
1039 UChar32 codepoint = 0;
1041 while (codepoint <= UCHAR_MAX_VALUE) {
1042 if (checkInScripts(script, scriptcount, codepoint)) {
1045 scriptelem[count].count, codepoint);
1050 fprintf(stdout, "Error determining codepoint in script\n");
1053 codepoint ++;
1414 fprintf(OUTPUT_, "\n<tr><th>Codepoint</th><th>P</th><th>S</th><th>T</th><th>Q</th><th>Name</th></tr>\n");