Searched refs:toY (Results 1 - 16 of 16) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_BlockMatch_Half.c93 OMX_INT minSAD, fromX, toX, fromY, toY; local
128 toY = 1;
146 toY = 0;
150 for (y = -fromY; y <= toY; y++)
H A DarmVCM4P2_BlockMatch_Integer.c101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; local
121 toY = searchRange;
140 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - BlockSize;
146 for (y = -fromY; y <= toY; y++)
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java68 final float toY = size.y * 0.75f;
70 drag(test, x, x, fromY, toY, 4);
98 final float toY = size.y * 0.25f;
100 drag(test, x, x, fromY, toY, 4);
235 float toY = screenHeight - 1;
237 drag(test, x, x, fromY, toY, stepCount);
478 float toY = 0;
480 drag(test, x, x, fromY, toY, stepCount);
588 * @param toY Final location of the view after dragging
598 int toY) {
597 dragViewTo(ActivityInstrumentationTestCase test, View v, int gravity, int toX, int toY) argument
614 dragViewTo(InstrumentationTestCase test, View v, int gravity, int toX, int toY) argument
695 dragViewToY(ActivityInstrumentationTestCase test, View v, int gravity, int toY) argument
711 dragViewToY(InstrumentationTestCase test, View v, int gravity, int toY) argument
742 drag(ActivityInstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
757 drag(InstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
H A DTouchUtils.java178 float toY = 0;
180 drag(inst, x, x, fromY, toY, stepCount);
217 int toY) {
226 int deltaY = fromY - toY;
229 drag(inst, fromX, toX, fromY, toY, calculateStepsForDistance(distance));
249 public static int dragViewToY(Instrumentation inst, View v, int gravity, int toY) { argument
257 int deltaY = fromY - toY;
259 drag(inst, fromX, fromX, fromY, toY, calculateStepsForDistance(deltaY));
266 float toY, int stepCount) {
273 float yStep = (toY
216 dragViewTo(Instrumentation inst, View v, int gravity, int toX, int toY) argument
265 drag(Instrumentation inst, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_BlockMatch_Half.c107 OMX_INT fromX, toX, fromY, toY; local
135 toY = 1;
144 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Quarter.c107 OMX_INT fromX, toX, fromY, toY; local
136 toY = 1;
145 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Integer.c110 OMX_INT fromX, toX, fromY, toY; local
151 toY = nSearchRange;
170 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - iBlockWidth;
179 for (y = -fromY; y <= toY; y++)
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSystemBarScrimViews.java87 int toY = 0;
92 toY = mNavBarScrimView.getMeasuredHeight();
96 .translationY(toY)
101 mNavBarScrimView.setTranslationY(toY);
/frameworks/base/core/java/android/view/animation/
H A DScaleAnimation.java143 * @param toY Vertical scaling factor to apply at the end of the animation
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) { argument
150 mToY = toY;
163 * @param toY Vertical scaling factor to apply at the end of the animation
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
177 mToY = toY;
194 * @param toY Vertical scaling factor to apply at the end of the animation
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
218 mToY = toY;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java55 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.MoveInfo
57 MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) { argument
62 this.toY = toY;
68 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.ChangeInfo
75 int fromX, int fromY, int toX, int toY) {
80 this.toY = toY;
91 ", toY=" + toY
74 ChangeInfo(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
250 animateMove(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
272 animateMoveImpl(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
312 animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
[all...]
H A DSimpleItemAnimator.java221 int toX, int toY);
220 animateMove(ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DLoggingItemAnimator.java154 int toX, int toY) {
156 return super.animateMove(holder, fromX, fromY, toX, toY);
161 RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) {
168 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
153 animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
160 animateChange(RecyclerView.ViewHolder oldHolder, RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
H A DDefaultItemAnimatorTest.java353 final int toX, final int toY) throws Throwable {
358 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY);
366 final int fromX, final int fromY, final int toX, final int toY) throws Throwable {
371 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
352 animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY, final int toX, final int toY) argument
364 animateChange(final RecyclerView.ViewHolder oldHolder, final RecyclerView.ViewHolder newHolder, final int fromX, final int fromY, final int toX, final int toY) argument
H A DRecyclerViewAnimationsTest.java758 int toX, int toY) {
H A DRecyclerViewLayoutTest.java2120 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, argument
2128 float yStep = (toY - fromY) / stepCount;
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java930 float toY;
940 toY = appRect.height() / 2 * (1 - 1 / scaleW) + appRect.top;
947 toY -= thumbHeightI * scaleW;
955 toY = appRect.top;
970 Animation translate = createCurvedMotion(fromX, toX, fromY, toY);
1012 Animation translate = createCurvedMotion(toX, fromX, toY, fromY);
1031 private Animation createCurvedMotion(float fromX, float toX, float fromY, float toY) { argument
1035 return new TranslateAnimation(fromX, toX, fromY, toY);
1037 final Path path = createCurvedPath(fromX, toX, fromY, toY);
1042 private Path createCurvedPath(float fromX, float toX, float fromY, float toY) { argument
[all...]

Completed in 368 milliseconds