Home
last modified time | relevance | path

Searched refs:offsetY (Results 1 – 15 of 15) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DTiledTexture.java114 public int offsetY; field in TiledTexture.Tile
139 int y = BORDER_SIZE - offsetY; in onGetBitmap()
211 tile.offsetY = y; in TiledTexture()
286 src.offset(t.offsetX, t.offsetY); in drawMixed()
288 src.offset(BORDER_SIZE - t.offsetX, BORDER_SIZE - t.offsetY); in drawMixed()
305 src.offset(t.offsetX, t.offsetY); in draw()
307 src.offset(BORDER_SIZE - t.offsetX, BORDER_SIZE - t.offsetY); in draw()
328 src.offset(t.offsetX, t.offsetY); in draw()
331 src.offset(BORDER_SIZE - t.offsetX, BORDER_SIZE - t.offsetY); in draw()
/packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
DFloatingActionButtonController.java103 public void align(int align, int offsetX, int offsetY, boolean animate) { in align() argument
114 .translationY(offsetY) in align()
120 mFloatingActionButtonContainer.setTranslationY(offsetY); in align()
/packages/apps/InCallUI/src/com/android/incallui/
DCallCardFragment.java861 int offsetY = 0; in updateFabPosition() local
863 offsetY = mFloatingActionButtonVerticalOffset; in updateFabPosition()
865 offsetY -= mSecondaryCallInfo.getHeight(); in updateFabPosition()
873 offsetY, in updateFabPosition()
/packages/apps/Launcher2/src/com/android/launcher2/
DDeleteDropTarget.java277 int offsetY = (int) (-from.top * vp); in createFlingToTrashAnimatorListener() local
278 int offsetX = (int) (offsetY / (vel.y / vel.x)); in createFlingToTrashAnimatorListener()
279 final float y2 = from.top + offsetY; // intermediate t/l in createFlingToTrashAnimatorListener()
DDragView.java74 final float offsetY = res.getDimensionPixelSize(R.dimen.dragViewOffsetY); in DragView() local
91 final int deltaY = (int) ((value * offsetY) - mOffsetY); in DragView()
DFolderIcon.java481 float offsetY = mParams.transY + (mParams.scale * mIntrinsicIconSize) / 2;
484 center[1] = (int) Math.round(offsetY);
DAppsCustomizePagedView.java532 float offsetY = getResources().getDimensionPixelSize(R.dimen.dragViewOffsetY); in onClick() local
535 ValueAnimator tyuAnim = LauncherAnimUtils.ofFloat(p, "translationY", offsetY); in onClick()
/packages/apps/Launcher3/src/com/android/launcher3/
DDeleteDropTarget.java391 int offsetY = (int) (-from.top * vp); in createFlingToTrashAnimatorListener() local
392 int offsetX = (int) (offsetY / (vel.y / vel.x)); in createFlingToTrashAnimatorListener()
393 final float y2 = from.top + offsetY; // intermediate t/l in createFlingToTrashAnimatorListener()
DDragView.java74 final float offsetY = res.getDimensionPixelSize(R.dimen.dragViewOffsetY); in DragView() local
91 final int deltaY = (int) ((value * offsetY) - mOffsetY); in DragView()
DPagedView.java936 int offsetY = getViewportOffsetY(); in onLayout() local
939 mViewport.offset(offsetX, offsetY); in onLayout()
963 childTop = offsetY; in onLayout()
965 childTop = offsetY + getPaddingTop() + mInsets.top; in onLayout()
DFolderIcon.java540 float offsetY = mParams.transY + (mParams.scale * mIntrinsicIconSize) / 2;
543 center[1] = (int) Math.round(offsetY);
DAppsCustomizePagedView.java457 float offsetY = getResources().getDimensionPixelSize(R.dimen.dragViewOffsetY); in onClick() local
460 ValueAnimator tyuAnim = LauncherAnimUtils.ofFloat(p, "translationY", offsetY); in onClick()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DBitmapTileProvider.java88 int offsetY = -y; in getTile() local
89 canvas.drawBitmap(mipmap, offsetX, offsetY, null); in getTile()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationContainer.java980 final int offsetY = mOffsetY; in removeViewAtAdapterIndex() local
988 mOffsetY = offsetY; in removeViewAtAdapterIndex()
/packages/apps/Gallery/src/com/android/camera/
DGalleryPicker.java622 int heightPadding, int offsetX, int offsetY, in placeImage() argument
628 int yPos = (row * (imageHeight + heightPadding)) - offsetY; in placeImage()