HomeSort by relevance Sort by last modified time
    Searched defs:endX (Results 1 - 25 of 38) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/filters/
FEMorphology.cpp 153 unsigned endX = min(x + radiusX, effectDrawingRect.width() - 1);
154 unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + endX * 4 + channel);
156 unsigned char pixel = srcPixelArray->get(i * effectWidth + endX * 4 + channel);
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test5DetailFragment.java 39 int endX;
102 mPointerEvent.startX, mPointerEvent.startY, mPointerEvent.endX,
119 mPointerEvent.endX = mPointerEvent.endY = -1;
148 mPointerEvent.endX = (int)(event.getX() + offsetInScreen[0]);
TestGenericDetailFragment.java 35 int endX;
99 * format: "startX,startY:endX,endY" where each line represent data for a pointer if
109 mPointerEvents[x].startX, mPointerEvents[x].startY, mPointerEvents[x].endX,
130 mPointerEvents[x].endX = mPointerEvents[x].endY = -1;
162 mPointerEvents[getPointerId(event)].endX =
  /external/webkit/Source/WebCore/platform/image-decoders/bmp/
BMPImageReader.cpp 599 const int endX = std::min(m_coord.x() + count, m_parent->size().width());
607 fillRGBA(endX, m_data->data()[m_decodedOffset + 3], m_data->data()[m_decodedOffset + 2], code, 0xff);
620 for (int which = 0; m_coord.x() < endX; ) {
640 const int endX = m_coord.x() + numPixels;
641 if (endX > m_parent->size().width())
668 for (size_t pixel = 0; (pixel < pixelsPerByte) && (m_coord.x() < endX); ++pixel) {
691 while (m_coord.x() < endX) {
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 133 float endX = mActivity.mStartX + mActivity.mDeltaX;
134 ObjectAnimator xAnimator = ObjectAnimator.ofFloat(object, propertyX, startX, endX);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticlePointMesh.java 150 float endX = startX + (1f / imagesX);
153 texcoords.put(startX).put(startY).put(endX).put(endY);
ParticleTriMesh.java 254 float endX = startX + (1f / imagesX);
258 texcoords.put(endX).put(endY);
260 texcoords.put(endX).put(startY);
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 199 int endX = rect.maxX();
200 if (endX > size.width())
201 endX = size.width();
202 int numColumns = endX - originX;
283 int endX = destPoint.x() + sourceRect.maxX();
284 ASSERT(endX <= size.width());
286 int numColumns = endX - destX;
  /frameworks/base/libs/hwui/font/
Font.cpp 435 uint32_t endX = startX + skiaGlyph.fWidth;
450 glyph->mBitmapMaxU = endX / (float) cacheWidth;
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
PlayheadView.java 174 final float endX = mScrollX + mScreenWidth;
175 for (float i = startX; i <= endX; i += spacing, startMs += tickMs) {
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 343 const VGfloat endX = radius * cos(endAngle) + center.x();
369 radius, radius, 0, endX, endY
376 m_path->m_currentPoint.setX(endX);
  /frameworks/base/libs/hwui/
FontRenderer.cpp 211 uint32_t endX = startX + glyph.fWidth;
245 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) {
249 cacheBuffer[row + endX + TEXTURE_BORDER_SIZE - 1] = 0;
256 cacheBuffer[row + endX + TEXTURE_BORDER_SIZE - 1] = 0;
273 for (int8_t mask = 7; mask >= 0 && cacheX < endX; mask--) {
277 cacheBuffer[row + endX + TEXTURE_BORDER_SIZE - 1] = 0;
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 273 float endX = startX + (srcW / imageWidth);
281 texCoords.put(endX).put(startY);
282 texCoords.put(endX).put(endY);
  /external/replicaisland/src/com/replica/replicaisland/
TiledVertexGrid.java 194 final int endX = startX + horizontalSlop + horzTileCount;
208 final int count = (endX - startX) * indexesPerTile;
CollisionSystem.java 160 float endX = right;
169 endX = left;
179 final int endTileX = Utils.clamp((int)(endX / mTileWidth), 0, mWorld.getWidth() - 1);
543 // read startx, starty, endx, endy, normalx, normaly
561 final float endX = Utils.byteArrayToFloat(mWorkspaceBytes);
573 newSegment.mEndPoint.set(endX, endY);
    [all...]
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 520 float endX = c / (slope - perpendicularSlope);
521 float endY = perpendicularSlope * endX + c;
524 secondPoint.set(halfWidth + endX, size.height() - (halfHeight + endY));
    [all...]
  /frameworks/rs/
rsFont.cpp 116 uint32_t endX = glyph->mBitmapMinX + glyph->mBitmapWidth;
125 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
264 uint32_t endX = startX + bitmap->width;
277 glyph->mBitmapMaxU = (float)endX / (float)cacheWidth;
451 uint32_t endX = startX + bitmap->width;
460 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) {
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 210 final float endX = mHoriz.convertToPoint(endTime);
213 if (endX < 0) continue;
228 mPathStroke.lineTo(endX, endY);
229 mPathFill.lineTo(endX, endY);
231 lastX = endX;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 550 int startX, endX;
552 endX = mColumnMatch.matchedLine - 1;
553 startX = endX - bounds.w;
557 endX = startX + bounds.w;
572 int endColumn = mGrid.getColumn(endX);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 543 int endX;
546 endX = sourceBounds.x2();
550 endX = targetBounds.x + 3 * targetBounds.w / 4;
556 graphics.drawLine(startX, sharedY, endX, sharedY);
    [all...]
  /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;
811 endX = stableRound(fendX);
816 endX += centerX;
819 if (startX < endX) {
821 clipRect.right = endX;
823 clipRect.left = endX;
    [all...]
  /prebuilts/sdk/current/
uiautomator.jar 
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 578 int endX;
587 endX = y < target[1] ? mContent.getCountX() - 1 : target[0];
588 for (int x = startX; x <= endX; x++) {
604 endX = y > target[1] ? 0 : target[0];
605 for (int x = startX; x >= endX; x--) {
    [all...]
  /prebuilts/sdk/16/
uiautomator.jar 

Completed in 835 milliseconds

1 2