Searched defs:getHorizontal (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/
H A DLayout.java892 return getHorizontal(offset, trailing, clamped);
911 return getHorizontal(offset, !trailing, clamped);
914 private float getHorizontal(int offset, boolean primary) { method in class:Layout
918 private float getHorizontal(int offset, boolean trailing, boolean clamped) { method in class:Layout
921 return getHorizontal(offset, trailing, line, clamped);
924 private float getHorizontal(int offset, boolean trailing, int line, boolean clamped) { method in class:Layout
1179 float bestdist = Math.abs(getHorizontal(best, primary) - horiz);
1195 if (getHorizontal(adguess, primary) * swap >= horiz * swap)
1208 float dist = Math.abs(getHorizontal(low, primary) - horiz);
1210 float other = Math.abs(getHorizontal(af
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java4236 public float getHorizontal(@NonNull Layout layout, int offset) { method in class:Editor.HandleView
4289 return (int) (getHorizontal(layout, offset) - 0.5f);
4529 final float horizontal = getHorizontal(layout, offset);
4822 final float adjustedX = getHorizontal(layout, offset);
4842 final float adjustedX = getHorizontal(layout, offset);
4857 getHorizontal(layout, mPreviousOffset);
4894 final float horiz = getHorizontal(layout, offset);
4895 final float anotherHandleHoriz = getHorizontal(layout, anotherHandleOffset,
4897 final float currentHoriz = getHorizontal(layout, mPreviousOffset);
4942 public float getHorizontal( method in class:Editor.SelectionHandleView
4946 private float getHorizontal(@NonNull Layout layout, int offset, boolean startHandle) { method in class:Editor.SelectionHandleView
[all...]

Completed in 102 milliseconds