HomeSort by relevance Sort by last modified time
    Searched refs:fromY (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
AwTestTouchUtils.java 34 private static void dragTo(View view, float fromX, float toX, float fromY,
37 float y = fromY;
38 float yStep = (toY - fromY) / stepCount;
59 * @param fromY The relative y-coordinate of the start point of the drag.
65 final int fromY, final int toY, final int stepCount,
70 long downTime = dragStart(view, fromX, fromY);
71 dragTo(view, fromX, toX, fromY, toY, stepCount, downTime);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Integer.c 101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY;
120 fromY = searchRange;
135 fromY = pCurrPointPos->y - pRefRect->y;
144 pDstMV->dy = -fromY;
146 for (y = -fromY; y <= toY; y++)
armVCM4P2_BlockMatch_Half.c 93 OMX_INT minSAD, fromX, toX, fromY, toY;
127 fromY = 1;
141 fromY = 0;
150 for (y = -fromY; y <= toY; y++)
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 61 final float fromY = size.y * 0.5f;
64 drag(test, x, x, fromY, toY, 4);
91 final float fromY = size.y * 0.5f;
94 drag(test, x, x, fromY, toY, 4);
228 float fromY = xy[1] + (viewHeight / 2.0f);
231 drag(test, x, x, fromY, toY, stepCount);
471 float fromY = xy[1] + (viewHeight / 2.0f);
474 drag(test, x, x, fromY, toY, stepCount);
565 final int fromY = xy[1];
569 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
ScaleTransformOperation.cpp 41 double fromY = fromOp ? fromOp->m_y : 1.0;
44 blink::blend(fromY, m_y, progress),
TranslateTransformOperation.cpp 38 Length fromY = fromOp ? fromOp->m_y : zeroLength;
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), blink::blend(fromZ, m_z, progress), m_type);
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
TestTouchUtils.java 146 * @param fromY The relative y-coordinate of the start point of the drag.
151 public static void dragTo(Instrumentation instrumentation, float fromX, float toX, float fromY,
154 float y = fromY;
155 float yStep = (toY - fromY) / stepCount;
185 * @param fromY The relative y-coordinate of the start point of the drag.
190 int fromX, int toX, int fromY, int toY, int stepCount) {
191 int fromLocation[] = getAbsoluteLocationFromRelative(view, fromX, fromY);
TouchCommon.java 47 * @param fromY
53 public void dragTo(float fromX, float toX, float fromY,
56 float y = fromY;
57 float yStep = (toY - fromY) / stepCount;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_BlockMatch_Integer.c 110 OMX_INT fromX, toX, fromY, toY;
150 fromY = nSearchRange;
165 fromY = pCurrPointPos->y - pRefRect->y;
174 pBestMV->dy = -fromY * 4;
179 for (y = -fromY; y <= toY; y++)
omxVCM4P10_BlockMatch_Half.c 107 OMX_INT fromX, toX, fromY, toY;
134 fromY = 1;
144 for (y = -fromY; y <= toY; y++)
omxVCM4P10_BlockMatch_Quarter.c 107 OMX_INT fromX, toX, fromY, toY;
135 fromY = 1;
145 for (y = -fromY; y <= toY; y++)
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 141 * @param fromY Vertical scaling factor to apply at the start of the
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) {
149 mFromY = fromY;
161 * @param fromY Vertical scaling factor to apply at the start of the
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY,
176 mFromY = fromY;
192 * @param fromY Vertical scaling factor to apply at the start of the
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY,
217 mFromY = fromY;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
SystemGesturesPointerEventListener.java 169 final float fromY = mDownY[i];
172 + " moved (" + fromX + "->" + x + "," + fromY + "->" + y + ") in " + elapsed);
173 if (fromY <= mSwipeStartThreshold
174 && y > fromY + mSwipeDistanceThreshold
178 if (fromY >= screenHeight - mSwipeStartThreshold
179 && y < fromY - mSwipeDistanceThreshold
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 54 public int fromX, fromY, toX, toY;
56 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) {
59 this.fromY = fromY;
67 public int fromX, fromY, toX, toY;
74 int fromX, int fromY, int toX, int toY) {
77 this.fromY = fromY;
88 ", fromY=" + fromY
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathBlender.cpp 59 // Transform toY to the coordinate mode of fromY
147 float fromY = 0;
149 if ((m_fromSource->hasMoreData() && !m_fromSource->parseLineToVerticalSegment(fromY))
153 m_consumer->lineToVertical(blendAnimatedDimensonalFloat(fromY, toY, BlendVertical), m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
154 m_fromCurrentPoint.setY(m_fromMode == AbsoluteCoordinates ? fromY : m_fromCurrentPoint.y() + fromY);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ViewportDataGrid.js 210 var fromY = 0;
212 fromY += nodes[i].nodeSelfHeight();
213 var toY = fromY + node.nodeSelfHeight();
216 if (scrollTop > fromY)
217 scrollTop = fromY;
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DefaultItemAnimatorTest.java 339 boolean animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY,
345 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY);
353 final int fromX, final int fromY, final int toX, final int toY) throws Throwable {
358 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
  /cts/tests/tests/view/src/android/view/animation/cts/
ScaleAnimationTest.java 152 public MyScaleAnimation(float fromX, float toX, float fromY, float toY,
154 super(fromX, toX, fromY, toY, pivotXValue, pivotYValue);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 202 private static void translateViews(List<Animator> animators, List<View> views, float fromY,
207 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY);
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 464 final int fromY = r.top;
466 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
519 final int fromY = r.top;
529 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale,
533 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY,
537 Rect from = new Rect(fromX, fromY, fromX +
538 view.getMeasuredWidth(), fromY + view.getMeasuredHeight());
  /packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java 542 final int fromY = r.top;
544 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
606 final int fromY = r.top;
616 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
620 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY,
624 Rect from = new Rect(fromX, fromY, fromX +
625 view.getMeasuredWidth(), fromY + view.getMeasuredHeight());
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 619 final int fromY, final int toY) {
621 if (fromX == toX && fromY == toY) {
625 if (fromY != toY) {
629 return isInRange(mScrollView.getScrollY(), fromY, toY);
ScrollViewTest.java 648 final int fromY, final int toY) {
650 if (fromX == toX && fromY == toY) {
654 if (fromY != toY) {
658 return isInRange(mScrollView.getScrollY(), fromY, toY);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java 687 int fromY, int toY, int delay) {
688 if (fromX == toX && fromY == toY) {
698 mAnimatorTranslateY = ValueAnimator.ofInt(fromY, toY);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 422 int fromY = y - height / 2;
424 gc.drawLine(x, fromY, x, toY);
    [all...]

Completed in 1867 milliseconds

1 2