Searched refs:packRangeInLong (Results 1 - 5 of 5) sorted by relevance
/frameworks/base/core/java/android/widget/ |
H A D | SpellChecker.java | 366 final Long key = Long.valueOf(TextUtils.packRangeInLong(start, end)); 490 final Long key = Long.valueOf(TextUtils.packRangeInLong(start, end));
|
H A D | Editor.java | 691 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 D | TextView.java | 8444 return TextUtils.packRangeInLong(min, max);
|
/frameworks/base/core/java/android/text/ |
H A D | Layout.java | 449 return TextUtils.packRangeInLong(0, -1); 459 if (top >= bottom) return TextUtils.packRangeInLong(0, -1); 460 return TextUtils.packRangeInLong(getLineForVertical(top), getLineForVertical(bottom));
|
H A D | TextUtils.java | 1702 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 162 milliseconds