HomeSort by relevance Sort by last modified time
    Searched defs:endY (Results 1 - 25 of 60) 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);
Slide.java 193 float endY = view.getTranslationY();
198 startX, startY, endX, endY, sDecelerate);
211 float endY = mSlideCalculator.getGoneY(sceneRoot, view);
214 startX, startY, endX, endY, sAccelerate);
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;
ChangeBounds.java 330 int endY = (Integer) endValues.values.get(PROPNAME_WINDOW_Y);
332 if (startX != endX || startY != endY) {
343 startY - tempLocation[1], endX - tempLocation[0], endY - tempLocation[1]);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEMorphology.h 69 int endY;
FETurbulence.h 109 int endY;
  /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;
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 145 float endY = mActivity.mStartY + mActivity.mDeltaY;
146 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);
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);
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/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/wearable/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));
  /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));
  /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,
  /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 638 float endY = perpendicularSlope * endX + c;
642 secondPoint.set(halfWidth + endX, halfHeight - endY);
644 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++) {
  /frameworks/base/libs/hwui/
FontRenderer.cpp 285 uint32_t endY = startY + glyph.fHeight;
312 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
322 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
330 row = (endY + TEXTURE_BORDER_SIZE - 1) * cacheWidth + startX - TEXTURE_BORDER_SIZE;
345 uint8_t* dstEnd = &cacheBuffer[cacheTexture->getOffset(startX, endY - 1)];
368 for (cacheY = startY; cacheY < endY; cacheY++) {
386 row = (endY + TEXTURE_BORDER_SIZE - 1) * cacheWidth + startX - TEXTURE_BORDER_SIZE;
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 220 final float endY = mVert.convertToPoint(totalData);
229 mPathStroke.lineTo(endX, endY);
230 mPathFill.lineTo(endX, endY);
233 lastY = endY;

Completed in 1343 milliseconds

1 2 3