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

1 2

  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
AwTestTouchUtils.java 35 float toY, int stepCount, long downTime) {
38 float yStep = (toY - fromY) / stepCount;
60 * @param toY The relative y-coordinate of the end point of the drag.
65 final int fromY, final int toY, final int stepCount,
71 dragTo(view, fromX, toX, fromY, toY, stepCount, downTime);
72 dragEnd(view, toX, toY, downTime);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Half.c 78 OMX_INT minSAD, fromX, toX, fromY, toY;
113 toY = 1;
131 toY = 0;
135 for (y = -fromY; y <= toY; y++)
armVCM4P2_BlockMatch_Integer.c 86 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY;
106 toY = searchRange;
125 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - BlockSize;
131 for (y = -fromY; y <= toY; y++)
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 62 final float toY = size.y * 0.75f;
64 drag(test, x, x, fromY, toY, 4);
92 final float toY = size.y * 0.25f;
94 drag(test, x, x, fromY, toY, 4);
241 float toY = screenHeight - 1;
243 drag(test, x, x, fromY, toY, stepCount);
484 float toY = 0;
486 drag(test, x, x, fromY, toY, stepCount);
594 * @param toY Final location of the view after dragging
604 int toY) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_BlockMatch_Half.c 92 OMX_INT fromX, toX, fromY, toY;
120 toY = 1;
129 for (y = -fromY; y <= toY; y++)
omxVCM4P10_BlockMatch_Quarter.c 92 OMX_INT fromX, toX, fromY, toY;
121 toY = 1;
130 for (y = -fromY; y <= toY; y++)
omxVCM4P10_BlockMatch_Integer.c 95 OMX_INT fromX, toX, fromY, toY;
136 toY = nSearchRange;
155 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - iBlockWidth;
164 for (y = -fromY; y <= toY; y++)
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
TestTouchUtils.java 147 * @param toY The relative y-coordinate of the end point of the drag.
152 float toY, int stepCount, long downTime) {
155 float yStep = (toY - fromY) / stepCount;
186 * @param toY The relative y-coordinate of the end point of the drag.
190 int fromX, int toX, int fromY, int toY, int stepCount) {
192 int toLocation[] = getAbsoluteLocationFromRelative(view, toX, toY);
TouchCommon.java 48 * @param toY
54 float toY, int stepCount, long downTime) {
57 float yStep = (toY - fromY) / stepCount;
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 143 * @param toY Vertical scaling factor to apply at the end of the animation
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) {
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,
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,
218 mToY = toY;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathStringSource.cpp 230 float toY;
237 || !parseNumber(current, end, toY))
239 targetPoint = FloatPoint(toX, toY);
SVGPathBlender.cpp 59 // Transform toY to the coordinate mode of fromY
148 float toY = 0;
150 || !m_toSource->parseLineToVerticalSegment(toY))
153 m_consumer->lineToVertical(blendAnimatedDimensonalFloat(fromY, toY, BlendVertical), m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
155 m_toCurrentPoint.setY(m_toMode == AbsoluteCoordinates ? toY : m_toCurrentPoint.y() + toY);
SVGPathParser.cpp 104 float toY;
105 if (!m_source->parseLineToVerticalSegment(toY))
110 m_currentPoint.move(0, toY);
112 m_currentPoint.setY(toY);
115 m_consumer->lineToVertical(toY, m_mode);
  /packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java 534 int toY = coord[1];
545 toY += Math.round(toScale * tv.getPaddingTop());
546 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2;
550 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop()));
551 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2;
552 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
556 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
572 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
577 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY,
582 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight())
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 496 int toY = coord[1];
503 toY += Math.round(scale * tv.getPaddingTop());
504 toY -= dragView.getMeasuredHeight() * (1 - scale) / 2;
508 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2;
509 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
513 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
529 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale,
534 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY,
539 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight())
    [all...]
  /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);
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 618 final int fromY, final int toY) {
620 if (fromX == toX && fromY == toY) {
624 if (fromY != toY) {
628 return isInRange(mScrollView.getScrollY(), fromY, toY);
645 return toX == mScrollView.getScrollX() && toY == mScrollView.getScrollY();
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);
675 return toX == mScrollView.getScrollX() && toY == mScrollView.getScrollY();
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 222 float toY, int startDelay, int duration) {
226 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java 686 int fromY, int toY, int delay) {
687 if (fromX == toX && fromY == toY) {
697 mAnimatorTranslateY = ValueAnimator.ofInt(fromY, toY);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 423 int toY = y + height / 2;
424 gc.drawLine(x, fromY, x, toY);
    [all...]
  /external/zxing/core/
core.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 891 milliseconds

1 2