Searched refs:horiz (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java234 boolean horiz = alignment == ALIGN_LEFT || alignment == ALIGN_RIGHT;
235 int dx = horiz ? (alignment == ALIGN_LEFT ? alignment_value - tab.getRight()
237 int dy = horiz ? 0 : (alignment == ALIGN_TOP ? alignment_value - tab.getBottom()
253 boolean horiz = alignment == ALIGN_LEFT || alignment == ALIGN_RIGHT;
254 int dx = horiz ? (alignment == ALIGN_LEFT ? tab.getWidth() : -tab.getWidth()) : 0;
255 int dy = horiz ? 0: (alignment == ALIGN_TOP ? tab.getHeight() : -tab.getHeight());
295 final boolean horiz = alignment == ALIGN_LEFT || alignment == ALIGN_RIGHT;
296 int dx = horiz ? (alignment == ALIGN_LEFT ? alignment_value - tab.getLeft()
298 int dy = horiz ? 0 : (alignment == ALIGN_TOP ? alignment_value - tab.getTop()
307 if (horiz) {
[all...]
/frameworks/base/core/java/android/text/
H A DLayout.java1030 public int getOffsetForHorizontal(int line, float horiz) { argument
1039 float bestdist = Math.abs(getPrimaryHorizontal(best) - horiz);
1054 if (getPrimaryHorizontal(adguess) * swap >= horiz * swap)
1066 float dist = Math.abs(getPrimaryHorizontal(low) - horiz);
1070 float other = Math.abs(getPrimaryHorizontal(aft) - horiz);
1084 float dist = Math.abs(getPrimaryHorizontal(here) - horiz);
1092 float dist = Math.abs(getPrimaryHorizontal(max) - horiz);
/frameworks/base/core/java/android/widget/
H A DTextView.java7892 protected void onScrollChanged(int horiz, int vert, int oldHoriz, int oldVert) { argument
7893 super.onScrollChanged(horiz, vert, oldHoriz, oldVert);

Completed in 106 milliseconds