/frameworks/base/test-runner/src/android/test/ |
D | TouchUtils.java | 62 final float toY = size.y * 0.75f; in dragQuarterScreenDown() local 64 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenDown() 92 final float toY = size.y * 0.25f; in dragQuarterScreenUp() local 94 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenUp() 229 float toY = screenHeight - 1; in dragViewToBottom() local 231 drag(test, x, x, fromY, toY, stepCount); in dragViewToBottom() 472 float toY = 0; in dragViewToTop() local 474 drag(test, x, x, fromY, toY, stepCount); in dragViewToTop() 592 int toY) { in dragViewTo() argument 593 return dragViewTo((InstrumentationTestCase) test, v, gravity, toX, toY); in dragViewTo() [all …]
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
D | DefaultItemAnimator.java | 54 public int fromX, fromY, toX, toY; field in DefaultItemAnimator.MoveInfo 56 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) { in MoveInfo() argument 61 this.toY = toY; in MoveInfo() 67 public int fromX, fromY, toX, toY; field in DefaultItemAnimator.ChangeInfo 74 int fromX, int fromY, int toX, int toY) { in ChangeInfo() argument 79 this.toY = toY; in ChangeInfo() 90 ", toY=" + toY + in toString() 121 moveInfo.toX, moveInfo.toY); in runPendingAnimations() 248 int toX, int toY) { in animateMove() argument 254 int deltaY = toY - fromY; in animateMove() [all …]
|
D | RecyclerView.java | 8509 int toX, int toY); in animateMove() argument
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
D | armVCM4P2_BlockMatch_Integer.c | 101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; in armVCM4P2_BlockMatch_Integer() local 121 toY = searchRange; in armVCM4P2_BlockMatch_Integer() 140 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - BlockSize; in armVCM4P2_BlockMatch_Integer() 146 for (y = -fromY; y <= toY; y++) in armVCM4P2_BlockMatch_Integer()
|
D | armVCM4P2_BlockMatch_Half.c | 93 OMX_INT minSAD, fromX, toX, fromY, toY; in armVCM4P2_BlockMatch_Half() local 128 toY = 1; in armVCM4P2_BlockMatch_Half() 146 toY = 0; in armVCM4P2_BlockMatch_Half() 150 for (y = -fromY; y <= toY; y++) in armVCM4P2_BlockMatch_Half()
|
/frameworks/base/core/java/android/view/animation/ |
D | ScaleAnimation.java | 145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) { in ScaleAnimation() argument 150 mToY = toY; in ScaleAnimation() 171 public ScaleAnimation(float fromX, float toX, float fromY, float toY, in ScaleAnimation() argument 177 mToY = toY; in ScaleAnimation() 212 public ScaleAnimation(float fromX, float toX, float fromY, float toY, in ScaleAnimation() argument 218 mToY = toY; in ScaleAnimation()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | omxVCM4P10_BlockMatch_Integer.c | 110 OMX_INT fromX, toX, fromY, toY; in omxVCM4P10_BlockMatch_Integer() local 151 toY = nSearchRange; in omxVCM4P10_BlockMatch_Integer() 170 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - iBlockWidth; in omxVCM4P10_BlockMatch_Integer() 179 for (y = -fromY; y <= toY; y++) in omxVCM4P10_BlockMatch_Integer()
|
D | omxVCM4P10_BlockMatch_Half.c | 107 OMX_INT fromX, toX, fromY, toY; in omxVCM4P10_BlockMatch_Half() local 135 toY = 1; in omxVCM4P10_BlockMatch_Half() 144 for (y = -fromY; y <= toY; y++) in omxVCM4P10_BlockMatch_Half()
|
D | omxVCM4P10_BlockMatch_Quarter.c | 107 OMX_INT fromX, toX, fromY, toY; in omxVCM4P10_BlockMatch_Quarter() local 136 toY = 1; in omxVCM4P10_BlockMatch_Quarter() 145 for (y = -fromY; y <= toY; y++) in omxVCM4P10_BlockMatch_Quarter()
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
D | DefaultItemAnimatorTest.java | 340 final int toX, final int toY) throws Throwable { in animateMove() argument 345 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY); in animateMove() 353 final int fromX, final int fromY, final int toX, final int toY) throws Throwable { in animateChange() argument 358 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY); in animateChange()
|
D | RecyclerViewLayoutTest.java | 692 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, in drag() argument 700 float yStep = (toY - fromY) / stepCount; in drag()
|
D | RecyclerViewAnimationsTest.java | 176 int toX, int toY) { in testAddRemoveSamePass()
|