Home
last modified time | relevance | path

Searched refs:lastCode (Results 1 – 6 of 6) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/draft/
DCharacterListCompressor.java194 int lastCode = 0; in getValueTypePairsFromStrRangeList() local
201 if (lastCode < first) { in getValueTypePairsFromStrRangeList()
202 addPair(result, first - lastCode - 1, 0); in getValueTypePairsFromStrRangeList()
203 } else if (lastCode > first) { in getValueTypePairsFromStrRangeList()
204 addPair(result, lastCode - first - 1, 1); in getValueTypePairsFromStrRangeList()
205 } else if (lastCode == first) { in getValueTypePairsFromStrRangeList()
208 lastCode = first; in getValueTypePairsFromStrRangeList()
219 lastCode += rangesize; in getValueTypePairsFromStrRangeList()
222 lastCode = last; in getValueTypePairsFromStrRangeList()
231 int lastCode = 0; in getStrRangeListFromValueTypePairs() local
[all …]
/external/icu/icu4c/source/test/cintltst/
Dcldrtest.c1472 const char* lastCode = "RHD"; in TestAvailableIsoCodes() local
1498 u_charsToUChars(lastCode, isoCode, (int32_t)uprv_strlen(zzzCode) + 1); in TestAvailableIsoCodes()
1500 log_data_err("FAIL: ISO code (%s) is not found.\n", lastCode); in TestAvailableIsoCodes()
1507 log_data_err("FAIL: ISO code (%s) was available in time range >1970-01-01.\n", lastCode); in TestAvailableIsoCodes()
1511 log_data_err("FAIL: ISO code (%s) was available in time range >1975.\n", lastCode); in TestAvailableIsoCodes()
1515 log_err("FAIL: ISO code (%s) was not available in time range >1981.\n", lastCode); in TestAvailableIsoCodes()
1520 log_err("FAIL: ISO code (%s) was not available in time range <1970.\n", lastCode); in TestAvailableIsoCodes()
1524 log_data_err("FAIL: ISO code (%s) was available in time range <1975.\n", lastCode); in TestAvailableIsoCodes()
1528 log_data_err("FAIL: ISO code (%s) was available in time range <1981.\n", lastCode); in TestAvailableIsoCodes()
1533 log_data_err("FAIL: ISO code (%s) was available in time range 1975-1978.\n", lastCode); in TestAvailableIsoCodes()
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py610 lastCode = startCode
622 orderedBegin = lastCode
626 subRanges.append((orderedBegin, lastCode))
630 lastCode = code
633 subRanges.append((orderedBegin, lastCode))
634 assert lastCode == endCode
781 lastCode = charCodes[0]
783 startCode = [lastCode]
785 if charCode == lastCode + 1:
786 lastCode = charCode
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DIso639Data.java474 String lastCode = null; in getData() local
529 lastCode = result.toString(); in getData()
532 String old = toHeirarchyTemp.get(lastCode); in getData()
533 … toHeirarchyTemp.put(lastCode, old == null || old.length() == 0 ? result.toString().trim() in getData()
/external/harfbuzz_ng/src/
Dhb-ot-cmap-table.hh703 hb_codepoint_t lastCode = HB_MAP_VALUE_INVALID; in copy() local
713 if (lastCode == HB_MAP_VALUE_INVALID) in copy()
714 lastCode = curEntry; in copy()
715 else if (lastCode + count != curEntry) in copy()
718 rec.startUnicodeValue = lastCode; in copy()
722 lastCode = curEntry; in copy()
728 if (lastCode != HB_MAP_VALUE_INVALID) in copy()
731 rec.startUnicodeValue = lastCode; in copy()
/external/cldr/tools/java/org/unicode/cldr/tool/
DSubdivisionNode.java311 String lastCode = null; in SubdivisionSet() local
347 TO_COUNTRY_CODE.put(lastCode, target); in SubdivisionSet()
356 addName(lastCode, lang, value); in SubdivisionSet()
384 lastCode = value; in SubdivisionSet()