HomeSort by relevance Sort by last modified time
    Searched defs:highLimit (Results 1 - 4 of 4) sorted by null

  /cts/tests/tests/text/src/android/text/cts/
SpannedTest.java 106 final int highLimit = spanned.length() + 1;
107 assertEquals(highLimit, spanned.nextSpanTransition(5, highLimit, QuoteSpan.class));
  /external/icu/icu4c/source/i18n/
collationdata.cpp 244 int32_t highLimit = scriptStarts[scriptStartsLength - 1];
245 U_ASSERT(highLimit == (Collation::TRAIL_WEIGHT_BYTE << 8));
299 highLimit = addHighScriptRange(table, index, highLimit);
329 if(lowStart > highLimit) {
330 if((lowStart - (skippedReserved & 0xff00)) <= highLimit) {
377 CollationData::addHighScriptRange(uint8_t table[], int32_t index, int32_t highLimit) const {
379 if((limit & 0xff) > (highLimit & 0xff)) {
380 highLimit -= 0x100;
383 highLimit = ((highLimit & 0xff00) - ((limit & 0xff00) - (start & 0xff00))) | (start & 0xff)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationData.java 329 int highLimit = scriptStarts[scriptStarts.length - 1];
330 assert(highLimit == (Collation.TRAIL_WEIGHT_BYTE << 8));
387 highLimit = addHighScriptRange(table, index, highLimit);
418 if(lowStart > highLimit) {
419 if((lowStart - (skippedReserved & 0xff00)) <= highLimit) {
464 private int addHighScriptRange(short[] table, int index, int highLimit) {
466 if((limit & 0xff) > (highLimit & 0xff)) {
467 highLimit -= 0x100;
470 highLimit = ((highLimit & 0xff00) - ((limit & 0xff00) - (start & 0xff00))) | (start & 0xff)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationData.java 327 int highLimit = scriptStarts[scriptStarts.length - 1];
328 assert(highLimit == (Collation.TRAIL_WEIGHT_BYTE << 8));
385 highLimit = addHighScriptRange(table, index, highLimit);
416 if(lowStart > highLimit) {
417 if((lowStart - (skippedReserved & 0xff00)) <= highLimit) {
462 private int addHighScriptRange(short[] table, int index, int highLimit) {
464 if((limit & 0xff) > (highLimit & 0xff)) {
465 highLimit -= 0x100;
468 highLimit = ((highLimit & 0xff00) - ((limit & 0xff00) - (start & 0xff00))) | (start & 0xff)
    [all...]

Completed in 973 milliseconds