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

  /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);
  /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;
  /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);
  /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 619 final int fromY, final int toY) {
621 if (fromX == toX && fromY == toY) {
625 if (fromY != toY) {
629 return isInRange(mScrollView.getScrollY(), fromY, toY);
646 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();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ViewportDataGrid.js 213 var toY = fromY + node.nodeSelfHeight();
218 else if (scrollTop + this._scrollContainer.offsetHeight < toY)
219 scrollTop = toY - this._scrollContainer.offsetHeight;
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 1887 milliseconds