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

/frameworks/base/core/java/android/widget/
H A DSpellChecker.java366 final Long key = Long.valueOf(TextUtils.packRangeInLong(start, end));
490 final Long key = Long.valueOf(TextUtils.packRangeInLong(start, end));
H A DEditor.java691 return TextUtils.packRangeInLong(offset, offset + 2);
695 return TextUtils.packRangeInLong(offset, offset + 1);
701 return TextUtils.packRangeInLong(offset - 2, offset);
705 return TextUtils.packRangeInLong(offset - 1, offset);
707 return TextUtils.packRangeInLong(offset, offset);
850 return TextUtils.packRangeInLong(minOffset, maxOffset);
H A DTextView.java8444 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.java1702 public static long packRangeInLong(int start, int end) { method in class:TextUtils
1707 * Get the start value from a range packed in a long by {@link #packRangeInLong(int, int)}
1709 * @see #packRangeInLong(int, int)
1717 * Get the end value from a range packed in a long by {@link #packRangeInLong(int, int)}
1719 * @see #packRangeInLong(int, int)

Completed in 144 milliseconds