HomeSort by relevance Sort by last modified time
    Searched full:endy (Results 1 - 25 of 50) sorted by null

1 2

  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
DragAction.java 29 private final int endy; field in class:DragAction
50 int startx, int starty, int endx, int endy,
56 this.endy = endy;
72 addTuple("end", endx, endy).
81 device.drag(startx, starty, endx, endy, steps, timeMs);
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 57 float endY = mActivity.mStartY + mActivity.mDeltaY;
58 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
70 assertTrue( y <= endY);
77 float endY = mActivity.mStartY + mActivity.mDeltaY;
78 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
167 float endY = mActivity.mStartY + mActivity.mDeltaY;
168 float[] values = {startY, endY};
181 assertTrue( y <= endY);
201 float endY = mActivity.mStartY + mActivity.mDeltaY;
203 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 105 float endY = mActivity.mStartY + mActivity.mDeltaY;
106 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
115 assertEquals(y, endY);
  /cts/tests/tests/webkitsecurity/assets/
crash-on-drag-with-mutation-events.html 35 var endY = iframe.offsetTop + divForDrop.offsetTop + 10;
41 eventSender.mouseMoveTo(endX, endY);
drag-and-drop-dataTransfer-types-nocrash.html 109 var endY = dropTarget.offsetTop + dropTarget.offsetHeight / 2;
114 eventSender.mouseMoveTo(endX, endY);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 155 int endy = rect.y() + rect.height(); local
156 if (endy > m_size.height())
157 endy = m_size.height();
158 int numRows = endy - originy;
216 int endy = destPoint.y() + sourceRect.maxY(); local
217 ASSERT(endy <= m_size.height());
218 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 +
  /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);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
MonkeyRecorderFrame.java 333 int endy = minH; local
342 endy = height;
345 starty = endy = midHeight;
349 starty = endy = midHeight;
354 return new DragAction(dir, startx, starty, endx, endy, numSteps, millis);
  /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;
  /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/mesa3d/src/pixelflinger2/
raster.cpp 110 for (unsigned y = args->startY; y <= args->endY; y += 2) {
215 const unsigned int endY = blv.position.y;
217 if (endY < startY)
220 const VectorComp_t yDistInv = VectorComp_t_CTR(1.0f / (endY - startY));
261 args.endY = endY;
262 if (args.startY <= args.endY) {
297 for (unsigned y = startY; y <= endY; y += 1 + USE_DUAL_THREAD) {
  /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 99 int endX, int endY) {
104 path.lineTo(SkIntToScalar(endX), SkIntToScalar(endY));

Completed in 1996 milliseconds

1 2