/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);
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
ImageBufferAndroid.cpp | 153 int endy = rect.y() + rect.height(); local 154 if (endy > m_size.height()) 155 endy = m_size.height(); 156 int numRows = endy - originy; 214 int endy = destPoint.y() + sourceRect.maxY(); local 215 ASSERT(endy <= m_size.height()); 216 int numRows = endy - desty;
|
/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/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) {
|
/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 | 217 final float endY = mVert.convertToPoint(totalData); 226 mPathStroke.lineTo(endX, endY); 227 mPathFill.lineTo(endX, endY); 230 lastY = 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) {
|
pixelflinger2.h | 108 unsigned startY, endY, varyingCount;
|
/sdk/chimpchat/src/com/android/chimpchat/core/ |
IChimpDevice.java | 118 * @param endy the y coordinate of the drag's end point 122 void drag(int startx, int starty, int endx, int endy, int steps, long ms);
|
/frameworks/base/libs/hwui/ |
FontRenderer.cpp | 119 uint32_t endY = glyph->mStartY + glyph->mBitmapHeight; 127 for (cacheY = glyph->mStartY, bY = nPenY; cacheY < endY; cacheY++, bY++) { 256 uint32_t endY = startY + skiaGlyph.fHeight; 269 glyph->mBitmapMaxV = (float) endY / (float) cacheHeight; 447 uint32_t endY = startY + glyph.fHeight; 457 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY++) {
|
/frameworks/base/libs/rs/ |
rsFont.cpp | 116 uint32_t endY = glyph->mBitmapMinY + glyph->mBitmapHeight; 125 for (cacheY = glyph->mBitmapMinY, bY = nPenY; cacheY < endY; cacheY++, bY++) { 264 uint32_t endY = startY + bitmap->rows; 277 glyph->mBitmapMaxV = (float)endY / (float)cacheHeight; 451 uint32_t endY = startY + bitmap->rows; 460 for (cacheY = startY, bY = 0; cacheY < endY; cacheY ++, bY ++) {
|
/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);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridDropHandler.java | 511 int startY, endY; 513 endY = mRowMatch.matchedLine - 1; 514 startY = endY - bounds.h; 519 startY = endY = mRowMatch.matchedLine; 522 endY = startY + bounds.h; 525 int endRow = mGrid.getRow(endY);
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
PlatformPathWinCE.cpp | 719 float startX, startY, endX, endY; 725 getEllipsePointByAngle(ear, a, b, endX, endY); 728 transformArcPoint(endX, endY, p); 733 PlatformPathElement::ArcTo data = { { endX, endY }, { p.x(), p.y() }, { a, b }, !anticlockwise };
|
GraphicsContextWinCE.cpp | 806 int startX, startY, endX, endY; 812 endY = stableRound(fendY); 817 endY = centerY - endY; 826 if (startY < endY) { 828 clipRect.bottom = endY; 830 clipRect.top = endY; [all...] |
/sdk/chimpchat/src/com/android/chimpchat/adb/ |
AdbChimpDevice.java | 531 public void drag(int startx, int starty, int endx, int endy, int steps, long ms) { 536 LinearInterpolator.Point end = new LinearInterpolator.Point(endx, endy);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
ConstraintPainter.java | 699 int startY, endY; 702 endY = sourceBounds.y2(); 706 endY = targetBounds.y + 3 * targetBounds.h / 2; 713 graphics.drawLine(sharedX, startY, sharedX, endY); [all...] |
/cts/apps/CtsVerifier/lib/colorchecker/ |
colorchecker.cpp | 545 int endX, endY; 546 patch.getBoundingBox(&startX, &startY, &endX, &endY); 550 for (int y = startY; y <= endY; y++) {
|