Lines Matching refs:yoff

1064      * @param yoff A vertical offset from the anchor in pixels
1068 public void showAsDropDown(View anchor, int xoff, int yoff) {
1069 showAsDropDown(anchor, xoff, yoff, DEFAULT_ANCHORED_GRAVITY);
1087 * @param yoff A vertical offset from the anchor in pixels
1092 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
1099 registerForScrollChanged(anchor, xoff, yoff, gravity);
1107 final boolean aboveAnchor = findDropDownPosition(anchor, p, xoff, yoff, gravity);
1390 * @param yoff vertical offset used to adjust for background padding
1395 int yoff, int gravity) {
1399 yoff -= anchorHeight;
1404 p.y = mDrawingLocation[1] + anchorHeight + yoff;
1422 final int screenY = mScreenLocation[1] + anchorHeight + yoff;
1433 scrollY + mPopupHeight + anchorHeight + yoff);
1441 p.y = mDrawingLocation[1] + anchorHeight + yoff;
1450 onTop = (displayFrame.bottom - mScreenLocation[1] - anchorHeight - yoff) <
1451 (mScreenLocation[1] - yoff - displayFrame.top);
1454 p.y = root.getHeight() - mDrawingLocation[1] + yoff;
1456 p.y = mDrawingLocation[1] + anchorHeight + yoff;
1473 final int popupTop = mScreenLocation[1] + yoff - mPopupHeight;
1842 * @param yoff y offset from the view's bottom edge
1846 public void update(View anchor, int xoff, int yoff, int width, int height) {
1847 update(anchor, true, xoff, yoff, true, width, height);
1850 private void update(View anchor, boolean updateLocation, int xoff, int yoff,
1858 final boolean needsUpdate = updateLocation && (mAnchorXoff != xoff || mAnchorYoff != yoff);
1860 registerForScrollChanged(anchor, xoff, yoff, mAnchoredGravity);
1864 mAnchorYoff = yoff;
1885 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff, mAnchoredGravity));
1915 private void registerForScrollChanged(View anchor, int xoff, int yoff, int gravity) {
1926 mAnchorYoff = yoff;