Searched refs:packRangeInLong (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DSpellChecker.java363 final Long key = Long.valueOf(TextUtils.packRangeInLong(start, end));
487 final Long key = Long.valueOf(TextUtils.packRangeInLong(start, end));
H A DEditor.java662 return TextUtils.packRangeInLong(offset, offset + 2);
666 return TextUtils.packRangeInLong(offset, offset + 1);
672 return TextUtils.packRangeInLong(offset - 2, offset);
676 return TextUtils.packRangeInLong(offset - 1, offset);
678 return TextUtils.packRangeInLong(offset, offset);
821 return TextUtils.packRangeInLong(minOffset, maxOffset);
H A DTextView.java8069 return TextUtils.packRangeInLong(min, max);
/frameworks/base/core/java/android/text/
H A DLayout.java449 return TextUtils.packRangeInLong(0, -1);
459 if (top >= bottom) return TextUtils.packRangeInLong(0, -1);
460 return TextUtils.packRangeInLong(getLineForVertical(top), getLineForVertical(bottom));
H A DTextUtils.java1673 public static long packRangeInLong(int start, int end) { method in class:TextUtils
1678 * Get the start value from a range packed in a long by {@link #packRangeInLong(int, int)}
1680 * @see #packRangeInLong(int, int)
1688 * Get the end value from a range packed in a long by {@link #packRangeInLong(int, int)}
1690 * @see #packRangeInLong(int, int)

Completed in 102 milliseconds