HomeSort by relevance Sort by last modified time
    Searched defs:endY (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
ScaleToAction.java 23 private float endX, endY;
31 target.setScale(startX + (endX - startX) * percent, startY + (endY - startY) * percent);
36 endY = y;
41 endY = scale;
53 return endY;
57 this.endY = y;
MoveToAction.java 25 private float endX, endY;
34 target.setPosition(startX + (endX - startX) * percent, startY + (endY - startY) * percent, alignment);
44 endY = y;
49 endY = y;
62 return endY;
66 endY = y;
  /external/skia/tools/VisualBench/
VisualInteractiveModule.cpp 59 int endY = startY - (int)(fMeasurements[i] * kPixelPerMS + 0.5); // round to nearest value
61 SkIntToScalar(x), SkIntToScalar(endY), paint);
  /frameworks/base/core/java/android/transition/
ChangeScroll.java 68 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y);
75 if (startY != endY) {
77 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
Explode.java 87 float endY = view.getTranslationY();
90 float startY = endY + mTempLoc[1];
93 startX, startY, endX, endY, sDecelerate, this);
108 float endY = startY;
114 endY += interruptedPosition[1] - bounds.top;
119 endY += mTempLoc[1];
122 viewPosX, viewPosY, startX, startY, endX, endY, sAccelerate, this);
PatternPathMotion.java 108 float endY = pos[1];
113 if (startX == endX && startY == endY) {
119 float dy = endY - startY;
130 public Path getPath(float startX, float startY, float endX, float endY) {
132 double dy = endY - startY;
Slide.java 240 float endY = view.getTranslationY();
245 startX, startY, endX, endY, sDecelerate, this);
258 float endY = mSlideCalculator.getGoneY(sceneRoot, view, mSlideFraction);
261 startX, startY, endX, endY, sAccelerate, this);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
TiledDrawable.java 50 float endX = x + width - remainingX, endY = y + height - remainingY;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PathInterpolatorBuilder.java 148 float endY = mY[endIndex];
149 return startY + (fraction * (endY - startY));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
FreePathInterpolator.java 128 float endY = mY[endIndex];
129 return startY + (fraction * (endY - startY));
  /frameworks/support/compat/gingerbread/android/support/v4/view/animation/
PathInterpolatorGingerbread.java 93 final float endY = mY[endIndex];
95 return startY + (fraction * (endY - startY));
  /packages/apps/PhoneCommon/src/com/android/phone/common/compat/
PathInterpolatorCompat.java 100 final float endY = mY[endIndex];
102 return startY + (fraction * (endY - startY));
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
GestureDescriptionTest.java 163 int endY = 150;
168 path.lineTo(x, endY);
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 74 float endY = -mRandom.nextInt(mAnimationRange);
75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2));
79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 74 float endY = -mRandom.nextInt(mAnimationRange);
75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2));
79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
AnimatedNotificationDisplayActivity.java 74 float endY = -mRandom.nextInt(mAnimationRange);
75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2));
79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
  /external/deqp/framework/common/
tcuImageCompare.cpp 105 const int endY = (acceptOutOfBoundsAsAnyValue) ? (height - maxPositionDeviation.y()) : (height);
114 for (int y = beginY; y < endY; y++)
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/actions/
SwipeAction.java 158 int endY;
165 endY = adjustedTop;
171 endY = adjustedbottom;
177 endY = elementRect.centerY();
183 endY = elementRect.centerY();
190 double yStep = ((double) (endY - startY)) / steps;
206 Events.touchUp(injector, downTime, endX, endY);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/distancefield/
DistanceFieldGenerator.java 207 final int endY = Math.min(height - 1, centerY + delta);
211 for (int y = startY; y <= endY; ++y)
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/voxel/
VoxelWorld.java 168 int endY = Math.min(voxelsY, iy + iheight);
172 for (iy = startY; iy < endY; iy++) {
  /external/opencv3/modules/imgproc/src/
filterengine.hpp 271 int endY;
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 111 float endY = mKeyframeData[endBase + Y_OFFSET];
114 float y = interpolate(intervalFraction, startY, endY);
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 229 float endY = mY[endIndex];
230 return startY + (fraction * (endY - startY));
  /frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
FadeAndShortSlide.java 235 float endY = view.getTranslationY();
238 left, top, startX, startY, endX, endY, sDecelerate, this);
267 float endY = mSlideCalculator.getGoneY(this, sceneRoot, view, position);
269 startValues, left, top, startX, startY, endX, endY, sDecelerate /* sAccelerate */,
  /packages/apps/Camera2/jni/
jpegutil.h 202 // The line is defined by (startX, startY) -> (endX, endY), computed via the
209 int endY;
210 transform_.Map(output_width - 1, y, &endX, &endY);
212 // Clamp (startX, startY) and (endX, endY) to the valid bounds of the plane.
216 endY = min(endY, plane_.height - 1);
220 endY = max(endY, 0);
226 int dy = sgn(endY - startY);
230 // The index into plane_.data of (endX, endY)
    [all...]

Completed in 725 milliseconds

1 2 3 4 5