Home
last modified time | relevance | path

Searched refs:scriptStartsLength (Results 1 - 19 of 19) sorted by relevance

/third_party/icu/tools/unicode/c/genuca/
H A Dcollationbasedatabuilder.cpp91 scriptStartsLength(1) { in CollationBaseDataBuilder()
341 if(scriptStartsLength != 0 && scriptStarts[scriptStartsLength - 1] == p) { in addScriptStart()
343 scriptsIndex[script] = (uint16_t)(scriptStartsLength - 1); in addScriptStart()
345 U_ASSERT(scriptStartsLength == 0 || scriptStarts[scriptStartsLength - 1] <= p); in addScriptStart()
346 U_ASSERT(scriptStartsLength < UPRV_LENGTHOF(scriptStarts)); in addScriptStart()
347 scriptsIndex[script] = (uint16_t)scriptStartsLength; in addScriptStart()
348 scriptStarts[scriptStartsLength++] = (uint16_t)p; in addScriptStart()
355 U_ASSERT(scriptStartsLength < UPRV_LENGTHO in addScriptStart()
[all...]
H A Dcollationbasedatabuilder.h92 int32_t scriptStartsLength; member in CollationBaseDataBuilder
/third_party/icu/icu4c/source/i18n/
H A Dcollationdata.cpp137 if(p < scriptStarts[1] || scriptStarts[scriptStartsLength - 1] <= p) { in getGroupForPrimary()
240 U_ASSERT(scriptStartsLength >= 2); in makeReorderRanges()
244 int32_t highLimit = scriptStarts[scriptStartsLength - 1]; in makeReorderRanges()
319 for(int32_t i = 1; i < scriptStartsLength - 1; ++i) { in makeReorderRanges()
346 while(i < scriptStartsLength - 1) { in makeReorderRanges()
356 if(offset != 0 || i < scriptStartsLength - 1) { in makeReorderRanges()
359 if(i == scriptStartsLength - 1) { break; } in makeReorderRanges()
H A Dcollationdatareader.cpp373 data->scriptStartsLength = scriptsLength - (1 + data->numScripts + 16); in read()
374 if(data->scriptStartsLength <= 2 || in read()
375 CollationData::MAX_NUM_SCRIPT_RANGES < data->scriptStartsLength) { in read()
383 data->scriptStarts[data->scriptStartsLength - 1] == in read()
394 data->scriptStartsLength = baseData->scriptStartsLength; in read()
H A Dcollationdata.h48 /** C++ only, data reader check scriptStartsLength. */
61 numScripts(0), scriptsIndex(NULL), scriptStarts(NULL), scriptStartsLength(0), in CollationData()
236 int32_t scriptStartsLength; member
H A Dcollationdatawriter.cpp307 scripts.append(reinterpret_cast<const UChar *>(data.scriptStarts), data.scriptStartsLength); in write()
H A Dcollationdatabuilder.cpp1340 data.scriptStartsLength = base->scriptStartsLength; in build()
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationdata.cpp137 if(p < scriptStarts[1] || scriptStarts[scriptStartsLength - 1] <= p) { in getGroupForPrimary()
240 U_ASSERT(scriptStartsLength >= 2); in makeReorderRanges()
244 int32_t highLimit = scriptStarts[scriptStartsLength - 1]; in makeReorderRanges()
319 for(int32_t i = 1; i < scriptStartsLength - 1; ++i) { in makeReorderRanges()
346 while(i < scriptStartsLength - 1) { in makeReorderRanges()
356 if(offset != 0 || i < scriptStartsLength - 1) { in makeReorderRanges()
359 if(i == scriptStartsLength - 1) { break; } in makeReorderRanges()
H A Dcollationdatareader.cpp373 data->scriptStartsLength = scriptsLength - (1 + data->numScripts + 16); in read()
374 if(data->scriptStartsLength <= 2 || in read()
375 CollationData::MAX_NUM_SCRIPT_RANGES < data->scriptStartsLength) { in read()
383 data->scriptStarts[data->scriptStartsLength - 1] == in read()
394 data->scriptStartsLength = baseData->scriptStartsLength; in read()
H A Dcollationdata.h48 /** C++ only, data reader check scriptStartsLength. */
61 numScripts(0), scriptsIndex(nullptr), scriptStarts(nullptr), scriptStartsLength(0), in CollationData()
236 int32_t scriptStartsLength; member
H A Dcollationdatawriter.cpp307 scripts.append(reinterpret_cast<const char16_t *>(data.scriptStarts), data.scriptStartsLength); in write()
H A Dcollationdatabuilder.cpp1340 data.scriptStartsLength = base->scriptStartsLength; in build()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationdata.cpp137 if(p < scriptStarts[1] || scriptStarts[scriptStartsLength - 1] <= p) { in getGroupForPrimary()
240 U_ASSERT(scriptStartsLength >= 2); in makeReorderRanges()
244 int32_t highLimit = scriptStarts[scriptStartsLength - 1]; in makeReorderRanges()
319 for(int32_t i = 1; i < scriptStartsLength - 1; ++i) { in makeReorderRanges()
346 while(i < scriptStartsLength - 1) { in makeReorderRanges()
356 if(offset != 0 || i < scriptStartsLength - 1) { in makeReorderRanges()
359 if(i == scriptStartsLength - 1) { break; } in makeReorderRanges()
H A Dcollationdatareader.cpp373 data->scriptStartsLength = scriptsLength - (1 + data->numScripts + 16); in read()
374 if(data->scriptStartsLength <= 2 || in read()
375 CollationData::MAX_NUM_SCRIPT_RANGES < data->scriptStartsLength) { in read()
383 data->scriptStarts[data->scriptStartsLength - 1] == in read()
394 data->scriptStartsLength = baseData->scriptStartsLength; in read()
H A Dcollationdata.h51 /** C++ only, data reader check scriptStartsLength. */
65 numScripts(0), scriptsIndex(NULL), scriptStarts(NULL), scriptStartsLength(0), in CollationData()
240 int32_t scriptStartsLength; member
H A Dcollationdatawriter.cpp307 scripts.append(reinterpret_cast<const UChar *>(data.scriptStarts), data.scriptStartsLength); in write()
H A Dcollationdatabuilder.cpp1226 data.scriptStartsLength = base->scriptStartsLength; in build()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationDataReader.java415 int scriptStartsLength = scriptsLength - (1 + data.numScripts + 16); in read()
416 if(scriptStartsLength <= 2) { in read()
420 inChars.get(data.scriptStarts = new char[scriptStartsLength]); in read()
423 data.scriptStarts[scriptStartsLength - 1] == in read()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationDataReader.java416 int scriptStartsLength = scriptsLength - (1 + data.numScripts + 16); in read()
417 if(scriptStartsLength <= 2) { in read()
421 inChars.get(data.scriptStarts = new char[scriptStartsLength]); in read()
424 data.scriptStarts[scriptStartsLength - 1] == in read()

Completed in 18 milliseconds