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

  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationData.java 199 return index == 0 ? 0 : (long)scriptStarts[index] << 16;
213 long limit = scriptStarts[index + 1];
223 if(p < scriptStarts[1] || scriptStarts[scriptStarts.length - 1] <= p) {
227 while(p >= scriptStarts[index + 1]) { ++index; }
308 short[] table = new short[scriptStarts.length - 1]; // C++: uint8_t[]
325 assert(scriptStarts.length >= 2);
326 assert(scriptStarts[0] == 0);
327 int lowStart = scriptStarts[1]
    [all...]
CollationDataReader.java 421 inChars.get(data.scriptStarts = new char[scriptStartsLength]);
422 if(!(data.scriptStarts[0] == 0 &&
423 data.scriptStarts[1] == ((Collation.MERGE_SEPARATOR_BYTE + 1) << 8) &&
424 data.scriptStarts[scriptStartsLength - 1] ==
433 data.scriptStarts = baseData.scriptStarts;
CollationDataBuilder.java 318 data.scriptStarts = base.scriptStarts;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationData.java 197 return index == 0 ? 0 : (long)scriptStarts[index] << 16;
211 long limit = scriptStarts[index + 1];
221 if(p < scriptStarts[1] || scriptStarts[scriptStarts.length - 1] <= p) {
225 while(p >= scriptStarts[index + 1]) { ++index; }
306 short[] table = new short[scriptStarts.length - 1]; // C++: uint8_t[]
323 assert(scriptStarts.length >= 2);
324 assert(scriptStarts[0] == 0);
325 int lowStart = scriptStarts[1]
    [all...]
CollationDataReader.java 420 inChars.get(data.scriptStarts = new char[scriptStartsLength]);
421 if(!(data.scriptStarts[0] == 0 &&
422 data.scriptStarts[1] == ((Collation.MERGE_SEPARATOR_BYTE + 1) << 8) &&
423 data.scriptStarts[scriptStartsLength - 1] ==
432 data.scriptStarts = baseData.scriptStarts;
CollationDataBuilder.java 317 data.scriptStarts = base.scriptStarts;
    [all...]
  /external/icu/icu4c/source/i18n/
collationdata.cpp 121 return index == 0 ? 0 : (uint32_t)scriptStarts[index] << 16;
130 uint32_t limit = scriptStarts[index + 1];
137 if(p < scriptStarts[1] || scriptStarts[scriptStartsLength - 1] <= p) {
141 while(p >= scriptStarts[index + 1]) { ++index; }
241 U_ASSERT(scriptStarts[0] == 0);
242 int32_t lowStart = scriptStarts[1];
244 int32_t highLimit = scriptStarts[scriptStartsLength - 1];
272 int32_t start = scriptStarts[index];
322 int32_t start = scriptStarts[i]
    [all...]
collationdatareader.cpp 380 data->scriptStarts = scripts + 1 + data->numScripts + 16;
381 if(!(data->scriptStarts[0] == 0 &&
382 data->scriptStarts[1] == ((Collation::MERGE_SEPARATOR_BYTE + 1) << 8) &&
383 data->scriptStarts[data->scriptStartsLength - 1] ==
393 data->scriptStarts = baseData->scriptStarts;
collationdata.h 65 numScripts(0), scriptsIndex(NULL), scriptStarts(NULL), scriptStartsLength(0),
225 * It maps from a UScriptCode or a special reorder code to an entry in scriptStarts.
239 const uint16_t *scriptStarts;
collationdatawriter.cpp 307 scripts.append(reinterpret_cast<const UChar *>(data.scriptStarts), data.scriptStartsLength);
collationdatabuilder.cpp     [all...]
  /libcore/ojluni/src/main/java/java/lang/
Character.java     [all...]

Completed in 275 milliseconds