HomeSort by relevance Sort by last modified time
    Searched full:endy (Results 1 - 25 of 55) 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);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 165 int endy = rect.y() + rect.height(); local
166 if (endy > m_size.height())
167 endy = m_size.height();
168 int numRows = endy - originy;
226 int endy = destPoint.y() + sourceRect.maxY(); local
227 ASSERT(endy <= m_size.height());
228 int numRows = endy - desty;
  /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/
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 =
Test5DetailFragment.java 40 int endY;
103 mPointerEvent.endY));
119 mPointerEvent.endX = mPointerEvent.endY = -1;
149 mPointerEvent.endY = (int)(event.getY() + offsetInScreen[1]);
  /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/av/include/media/stagefright/
YUVCanvas.h 44 // Fills the rectangular region [startX,endX]x[startY,endY] with the given YUV values.
48 // Copies the region [startX,endX]x[startY,endY] from srcImage into the
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 188 int endy = rect.maxY(); local
189 if (endy > size.height())
190 endy = size.height();
191 int numRows = endy - originy;
257 int endy = destPoint.y() + sourceRect.maxY(); local
258 ASSERT(endy <= size.height());
259 int numRows = endy - desty;
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferDataCG.cpp 140 int endy = rect.maxY(); local
141 if (endy > size.height())
142 endy = size.height();
143 int height = endy - originy;
279 int endy = destPoint.y() + sourceRect.maxY(); local
280 ASSERT(endy <= size.height());
281 int height = endy - desty;
  /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/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);
  /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);
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 226 int endy = rect.maxY(); local
227 if (endy > size.height())
228 endy = size.height();
229 int numRows = endy - originy;
330 int endy = destPoint.y() + sourceRect.maxY(); local
331 ASSERT(endy <= size.height());
332 int numRows = endy - desty;
  /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;
  /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);
  /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)
  /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/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);
  /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));
  /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);
  /packages/apps/Gallery2/jni/filters/
wbalance.c 115 int endy = y + bounds; local
117 for(yp= starty;yp<endy;yp++) {

Completed in 434 milliseconds

1 2 3