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

1 2 3

  /frameworks/base/core/java/android/transition/
ChangeScroll.java 70 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y);
77 if (startY != endY) {
79 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
Explode.java 88 float endY = view.getTranslationY();
91 float startY = endY + mTempLoc[1];
94 startX, startY, endX, endY, sDecelerate);
109 float endY = startY;
115 endY += interruptedPosition[1] - bounds.top;
120 endY += mTempLoc[1];
123 viewPosX, viewPosY, startX, startY, endX, endY, sAccelerate);
PatternPathMotion.java 110 float endY = pos[1];
115 if (startX == endX && startY == endY) {
121 float dy = endY - startY;
132 public Path getPath(float startX, float startY, float endX, float endY) {
134 float dy = endY - startY;
Slide.java 229 float endY = view.getTranslationY();
234 startX, startY, endX, endY, sDecelerate);
247 float endY = mSlideCalculator.getGoneY(sceneRoot, view);
250 startX, startY, endX, endY, sAccelerate);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEMorphology.h 69 int endY;
FETurbulence.h 109 int endY;
  /external/chromium_org/third_party/skia/src/core/
SkTileGrid.cpp 89 endY = divide_ceil(adjusted.bottom(), fInfo.fTileInterval.height());
98 endY = SkPin32(endY, startY + 1, fYTiles);
100 const int tilesHit = (endX - startX) * (endY - startY);
120 for (int y = startY; y < endY; y++) {
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test5DetailFragment.java 40 int endY;
103 mPointerEvent.endY));
119 mPointerEvent.endX = mPointerEvent.endY = -1;
149 mPointerEvent.endY = (int)(event.getY() + offsetInScreen[1]);
TestGenericDetailFragment.java 36 int endY;
99 * format: "startX,startY:endX,endY" where each line represent data for a pointer if
110 mPointerEvents[x].endY));
130 mPointerEvents[x].endX = mPointerEvents[x].endY = -1;
164 mPointerEvents[getPointerId(event)].endY =
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RasterShape.cpp 129 int endY = y + 1;
130 for (; endY < maxY; endY++) {
131 if (intervalAt(endY).isEmpty() || intervalAt(endY) != extent)
134 path.addRect(FloatRect(extent.x1(), y, extent.width(), endY - y));
135 y = endY - 1;
  /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/droiddriver/src/com/google/android/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);
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 110 float endY = mKeyframeData[endBase + Y_OFFSET];
113 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));
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 56 float endY = mActivity.mStartY + mActivity.mDeltaY;
57 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
69 assertTrue( y <= endY);
76 float endY = mActivity.mStartY + mActivity.mDeltaY;
77 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
181 float endY = mActivity.mStartY + mActivity.mDeltaY;
182 float[] values = {startY, endY};
195 assertTrue( y <= endY);
215 float endY = mActivity.mStartY + mActivity.mDeltaY;
217 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
    [all...]
ValueAnimatorTest.java 119 float endY = mActivity.mStartY + mActivity.mDeltaY;
120 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
129 assertEquals(y, endY);
219 float endY = mActivity.mStartY + mActivity.mDeltaY;
220 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
AnimatorSetTest.java 150 float endY = mActivity.mStartY + mActivity.mDeltaY;
151 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
AnimatorTest.java 111 float endY = mActivity.mStartY + mActivity.mDeltaY;
112 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
121 assertEquals(y, endY);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 88 float endY = getHeight() - 50f;
92 ValueAnimator bounceAnim = ObjectAnimator.ofFloat(newBall, "y", startY, endY);
107 ValueAnimator stretchAnim1 = ObjectAnimator.ofFloat(newBall, "y", endY,
108 endY + 25f);
119 ValueAnimator bounceBackAnim = ObjectAnimator.ofFloat(newBall, "y", endY,
  /external/chromium_org/third_party/skia/src/utils/
SkTextureCompressor_Blitter.h 341 const int endY = SkMin32(j + BlockDim, clip.bottom());
343 for (int y = startY; y < endY; ++y) {
  /frameworks/base/libs/hwui/font/
Font.cpp 225 uint32_t endY = startY + (glyph->mBitmapHeight * srcStride);
229 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY;
455 uint32_t endY = startY + skiaGlyph.fHeight;
470 glyph->mBitmapMaxV = endY / (float) cacheHeight;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp 655 float endY = perpendicularSlope * endX + c;
659 secondPoint.set(halfWidth + endX, halfHeight - endY);
661 firstPoint.set(halfWidth - endX, halfHeight + endY);
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
TiledVertexGrid.java 195 final int endY = startY + verticalSlop + vertTileCount;
209 for (int tileY = startY; tileY < endY && tileY < mTilesPerColumn; tileY++) {

Completed in 1745 milliseconds

1 2 3