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

1 2 3

  /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);
166 float endY = mActivity.mStartY + mActivity.mDeltaY;
167 float[] values = {startY, endY};
180 assertTrue( y <= endY);
200 float endY = mActivity.mStartY + mActivity.mDeltaY;
202 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 145 float endY = mActivity.mStartY + mActivity.mDeltaY;
146 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
AnimatorTest.java 109 float endY = mActivity.mStartY + mActivity.mDeltaY;
110 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
119 assertEquals(y, endY);
PropertyValuesHolderTest.java 286 public void assertResults(float[] yArray,float startY, float endY) {
290 assertTrue(y <= endY);
  /external/replicaisland/tools/
ExtractPoints.js 81 edge.endY = lastPoint.anchor[1];
83 var normalX = -(edge.endY - edge.startY);
103 totalY += edge.endY;
106 var height = edge.endY - edge.startY;
109 edge.centerY = edge.endY - (height / 2);
149 edge.endY -= tile.yOffset;
173 edge.endY = tileSizeY - edge.endY;
178 Math.floor(edge.endY) + ":" + edge.normalX + "," + edge.normalY +
  /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 =
  /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/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 213 int endY = rect.maxY();
214 if (endY > size.height())
215 endY = size.height();
216 int numRows = endY - originY;
295 int endY = destPoint.y() + sourceRect.maxY();
296 ASSERT(endY <= size.height());
297 int numRows = endY - destY;
  /frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java 234 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps,
236 drag(vt, startX, endX, startY, endY, steps, startime, duration, new LinearInterpolator());
243 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps,
248 int distY = endY - startY;
256 addMotionEvent(vt, endX, endY, startime + duration, MotionEvent.ACTION_UP);
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiDevice.java 422 * @param endY
427 public boolean swipe(int startX, int startY, int endX, int endY, int steps) {
428 Tracer.trace(startX, startY, endX, endY, steps);
430 .swipe(startX, startY, endX, endY, steps);
442 * @param endY Y-axis value for the ending coordinate
448 public boolean drag(int startX, int startY, int endX, int endY, int steps) {
449 Tracer.trace(startX, startY, endX, endY, steps);
451 .swipe(startX, startY, endX, endY, steps, true);
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 327 private void moveView(View view, float startX, float endX, float startY, float endY,
339 if (startY != endY) {
340 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, startY, endY);
346 TranslateAnimation translator = new TranslateAnimation(startX, endX, startY, endY);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 219 final float endY = mVert.convertToPoint(totalData);
228 mPathStroke.lineTo(endX, endY);
229 mPathFill.lineTo(endX, endY);
232 lastY = endY;
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEMorphology.cpp 136 int endY = min(effectDrawingRect.height() - 1, y + radiusY);
142 for (int i = startY; i <= endY; ++i) {
155 for (int i = startY; i <= endY; ++i) {
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h 97 // endY.
98 void copyRowNTimes(int startX, int endX, int startY, int endY)
103 ASSERT(endY <= height());
106 for (int destY = startY + 1; destY < endY; ++destY)
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 274 float endY = startY + (srcH / imageHeight);
277 endY = 1f - endY;
282 texCoords.put(endX).put(endY);
283 texCoords.put(startX).put(endY);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticlePointMesh.java 151 float endY = startY + (1f / imagesY);
153 texcoords.put(startX).put(startY).put(endX).put(endY);
ParticleTriMesh.java 255 float endY = startY + (1f / imagesY);
257 texcoords.put(startX).put(endY);
258 texcoords.put(endX).put(endY);
  /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++) {
  /external/skia/gm/
bitmapscroll.cpp 109 int endX, int endY) {
114 path.lineTo(SkIntToScalar(endX), SkIntToScalar(endY));
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 344 const VGfloat endY = -radius * sin(endAngle) + center.y();
369 radius, radius, 0, endX, endY
377 m_path->m_currentPoint.setY(endY);
  /frameworks/base/libs/hwui/font/
Font.cpp 213 uint32_t endY = startY + (glyph->mBitmapHeight * cacheWidth);
218 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY;
436 uint32_t endY = startY + skiaGlyph.fHeight;
451 glyph->mBitmapMaxV = endY / (float) cacheHeight;
  /frameworks/rs/
rsFont.cpp 117 uint32_t endY = glyph->mBitmapMinY + glyph->mBitmapHeight;
126 for (cacheY = glyph->mBitmapMinY, bY = nPenY; cacheY < endY; cacheY++, bY++) {
265 uint32_t endY = startY + bitmap->rows;
278 glyph->mBitmapMaxV = (float)endY / (float)cacheHeight;
452 uint32_t endY = startY + bitmap->rows;
461 for (cacheY = startY, bY = 0; cacheY < endY; cacheY ++, bY ++) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 559 int startY, endY;
561 endY = mRowMatch.matchedLine - 1;
562 startY = endY - bounds.h;
567 startY = endY = mRowMatch.matchedLine;
570 endY = startY + bounds.h;
573 int endRow = mGrid.getRow(endY);
    [all...]

Completed in 1453 milliseconds

1 2 3