HomeSort by relevance Sort by last modified time
    Searched refs:scriptStartsLength (Results 1 - 7 of 7) sorted by null

  /external/icu/icu4c/source/i18n/
collationdata.cpp 137 if(p < scriptStarts[1] || scriptStarts[scriptStartsLength - 1] <= p) {
240 U_ASSERT(scriptStartsLength >= 2);
244 int32_t highLimit = scriptStarts[scriptStartsLength - 1];
319 for(int32_t i = 1; i < scriptStartsLength - 1; ++i) {
346 while(i < scriptStartsLength - 1) {
356 if(offset != 0 || i < scriptStartsLength - 1) {
359 if(i == scriptStartsLength - 1) { break; }
collationdatareader.cpp 373 data->scriptStartsLength = scriptsLength - (1 + data->numScripts + 16);
374 if(data->scriptStartsLength <= 2 ||
375 CollationData::MAX_NUM_SCRIPT_RANGES < data->scriptStartsLength) {
383 data->scriptStarts[data->scriptStartsLength - 1] ==
394 data->scriptStartsLength = baseData->scriptStartsLength;
collationdata.h 51 /** C++ only, data reader check scriptStartsLength. */
65 numScripts(0), scriptsIndex(NULL), scriptStarts(NULL), scriptStartsLength(0),
240 int32_t scriptStartsLength;
collationdatawriter.cpp 307 scripts.append(reinterpret_cast<const UChar *>(data.scriptStarts), data.scriptStartsLength);
collationdatabuilder.cpp     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationDataReader.java 416 int scriptStartsLength = scriptsLength - (1 + data.numScripts + 16);
417 if(scriptStartsLength <= 2) {
421 inChars.get(data.scriptStarts = new char[scriptStartsLength]);
424 data.scriptStarts[scriptStartsLength - 1] ==
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationDataReader.java 415 int scriptStartsLength = scriptsLength - (1 + data.numScripts + 16);
416 if(scriptStartsLength <= 2) {
420 inChars.get(data.scriptStarts = new char[scriptStartsLength]);
423 data.scriptStarts[scriptStartsLength - 1] ==

Completed in 560 milliseconds