Home
last modified time | relevance | path

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

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