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

1 2

  /external/webkit/Source/WebCore/svg/
SVGPathStringSource.cpp 133 float toY;
134 if (!parseNumber(m_current, m_end, toX) || !parseNumber(m_current, m_end, toY))
136 targetPoint = FloatPoint(toX, toY);
143 float toY;
144 if (!parseNumber(m_current, m_end, toX) || !parseNumber(m_current, m_end, toY))
146 targetPoint = FloatPoint(toX, toY);
167 float toY;
173 || !parseNumber(m_current, m_end, toY))
177 targetPoint = FloatPoint(toX, toY);
186 float toY;
    [all...]
SVGPathBlender.cpp 56 // Transform toY to the coordinate mode of fromY
138 float toY;
140 || !m_toSource->parseLineToVerticalSegment(toY))
143 m_consumer->lineToVertical(blendAnimatedDimensonalFloat(fromY, toY, BlendVertical), m_isInFirstHalfOfAnimation ? m_fromMode : m_toMode);
145 m_toCurrentPoint.setY(m_toMode == AbsoluteCoordinates ? toY : m_toCurrentPoint.y() + toY);
SVGPathParser.cpp 105 float toY;
106 if (!m_source->parseLineToVerticalSegment(toY))
111 m_currentPoint.move(0, toY);
113 m_currentPoint.setY(toY);
116 m_consumer->lineToVertical(toY, m_mode);
  /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...]
  /packages/apps/Email/src/com/android/email/activity/
BannerController.java 93 private void slideBanner(int toY) {
99 PropertyValuesHolder.ofInt(PROP_SET_BANNER_Y, getBannerY(), toY) };
  /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++)
  /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;
  /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);
  /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/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 163 milliseconds

1 2