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

/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java242 boolean horiz = alignment == ALIGN_LEFT || alignment == ALIGN_RIGHT;
243 int dx = horiz ? (alignment == ALIGN_LEFT ? alignment_value - tab.getRight()
245 int dy = horiz ? 0 : (alignment == ALIGN_TOP ? alignment_value - tab.getBottom()
261 boolean horiz = alignment == ALIGN_LEFT || alignment == ALIGN_RIGHT;
262 int dx = horiz ? (alignment == ALIGN_LEFT ? tab.getWidth() : -tab.getWidth()) : 0;
263 int dy = horiz ? 0: (alignment == ALIGN_TOP ? tab.getHeight() : -tab.getHeight());
303 final boolean horiz = alignment == ALIGN_LEFT || alignment == ALIGN_RIGHT;
304 int dx = horiz ? (alignment == ALIGN_LEFT ? alignment_value - tab.getLeft()
306 int dy = horiz ? 0 : (alignment == ALIGN_TOP ? alignment_value - tab.getTop()
315 if (horiz) {
[all...]
/frameworks/base/media/java/android/media/
H A DMediaCodec.java3331 int horiz = readInt(info, sizeIsLong);
3333 if (horiz != vert || horiz != (ix == 0 ? 1 : 2)) {
3335 + horiz + "x" + vert + " on plane " + ix);
3340 + (xOffset / horiz) * colInc + (yOffset / vert) * rowInc);
3342 + (mHeight / vert - 1) * rowInc + (mWidth / horiz - 1) * colInc);
/frameworks/base/core/java/android/text/
H A DLayout.java1131 public int getOffsetForHorizontal(int line, float horiz) { argument
1141 float bestdist = Math.abs(getPrimaryHorizontal(best) - horiz);
1156 if (getPrimaryHorizontal(adguess) * swap >= horiz * swap)
1168 float dist = Math.abs(getPrimaryHorizontal(low) - horiz);
1172 float other = Math.abs(getPrimaryHorizontal(aft) - horiz);
1186 float dist = Math.abs(getPrimaryHorizontal(here) - horiz);
1194 float dist = Math.abs(getPrimaryHorizontal(max) - horiz);
/frameworks/base/core/java/android/widget/
H A DTextView.java9242 protected void onScrollChanged(int horiz, int vert, int oldHoriz, int oldVert) { argument
9243 super.onScrollChanged(horiz, vert, oldHoriz, oldVert);

Completed in 130 milliseconds