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

1 2 3

  /external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 88 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
94 // Draw the glyph buffer now at the starting point returned in startX.
95 FloatPoint startPoint(startX, point.y());
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 103 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
109 // Draw the glyph buffer now at the starting point returned in startX.
110 FloatPoint startPoint(startX, point.y());
  /external/mesa3d/src/pixelflinger2/
scanline.cpp 199 const unsigned y = start->position.y, startX = start->position.x,
202 assert(bufferWidth > startX && bufferWidth > endX);
207 frame += (y * bufferWidth + startX) * 4;
209 frame += (y * bufferWidth + startX) * 2;
212 const VectorComp_t div = VectorComp_t_CTR(1 / (float)(endX - startX));
231 int * depth = depthBuffer + y * bufferWidth + startX;
232 unsigned char * stencil = stencilBuffer + y * bufferWidth + startX;
238 if (endX >= startX)
239 scanLineFunction(&vertex, &vertexDx, constants, frame, depth, stencil, activeStencil, endX - startX + 1);
262 // const unsigned y = start->position.y, startX = start->position.x
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 125 float startX = point.x();
140 startX += controller.runWidthSoFar() - afterWidth;
142 startX += controller.totalWidth() - afterWidth;
147 startX += beforeWidth;
149 // Draw the glyph buffer now at the starting point returned in startX.
150 FloatPoint startPoint(startX, point.y());
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 132 float startX = mActivity.mStartX;
134 ObjectAnimator xAnimator = ObjectAnimator.ofFloat(object, propertyX, startX, endX);
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticlePointMesh.java 148 float startX = ((float) imgX) / imagesX;
150 float endX = startX + (1f / imagesX);
153 texcoords.put(startX).put(startY).put(endX).put(endY);
ParticleTriMesh.java 252 float startX = ((float) imgX) / imagesX;
254 float endX = startX + (1f / imagesX);
257 texcoords.put(startX).put(endY);
259 texcoords.put(startX).put(startY);
  /external/replicaisland/src/com/replica/replicaisland/
AnimationPlayerActivity.java 88 float startX = 0.0f;
93 startX = 200 * metrics.density;
97 startX = -200 * metrics.density;
106 Animation gameOverAnim = new TranslateAnimation(startX, 0, 0, 0);
TiledVertexGrid.java 192 final int startX = leftTile;
194 final int endX = startX + horizontalSlop + horzTileCount;
207 final int startOffset = (startX * indexesPerTile);
208 final int count = (endX - startX) * indexesPerTile;
  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 358 float startX = point.x() + getGlyphsAndAdvancesForSimpleText(run, from, to, glyphBuffer);
363 FloatPoint startPoint(startX, point.y());
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
BaseLayerAndroid.cpp 202 float startX = startPoint.x();
210 backgroundRect.fLeft = origin.x() - startX;
231 ALOGV("repeatedQuadData: startX %f, startY %f , getWidth() %f, getHeight() %f,"
234 startX , startY , getWidth(), getHeight(), nbX , nbY,
238 // Adding startX and startY into the transform can handle the fixed right /
241 matrix.translate(repeatX ? -startX : 0, repeatY ? -startY : 0);
260 float startX = startPoint.x();
265 float dx = (j * getWidth()) - startX;
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 357 int startX = QFontMetrics(font()).width(wholeText, from, Qt::TextBypassShaping);
360 return FloatRect(pt.x() + startX, pt.y(), width, h);
GraphicsContextQt.cpp 606 int startX, startY;
609 // startX, startY is the coordinate of the first image we need to put on the left-top of the rect
612 // startX, startY is at the left top side of the left-top of the rect
613 startX = r.x() >=0 ? r.x() - (r.x() % w) : r.x() - (w - qAbs(r.x()) % w);
621 startX = 0;
627 // startY is fixed, but startX change based on the left-top of the rect
630 startX = r.x() >=0 ? r.x() - (r.x() % w) : r.x() - (w - qAbs(r.x()) % w);
636 // startX is fixed, but startY change based on the left-top of the rect
639 startX = 0;
646 int x = startX;
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
PlayheadView.java 167 final float startX = Math.max(mScrollX - (((mScrollX - (mScreenWidth / 2)) % spacing)),
169 float startMs = ((tickMs * (startX - (mScreenWidth / 2))) / spacing);
175 for (float i = startX; i <= endX; i += spacing, startMs += tickMs) {
TimelineHorizontalScrollView.java 249 final int startX;
252 startX = mHalfParentWidth + getScrollX();
255 startX = playheadOffset;
264 startX - halfPlayheadWidth,
266 startX + halfPlayheadWidth,
275 startX - halfPlayheadWidth,
277 startX + halfPlayheadWidth,
286 startX - halfPlayheadWidth,
288 startX + halfPlayheadWidth,
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 223 float startX = newx1 / (4 - newz1 / 400);
228 c.drawLine(startX, startY, stopX, stopY, mPaint);
  /external/opencv/
cvjni.cpp 514 int startX = MAX(face->x - PAD_FACE_AREA, 0);
516 int w = m_smallImage->width - startX - face->width - PAD_FACE_AREA_2;
519 m_faceCropArea = cvRect(startX, startY,
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 341 const VGfloat startX = radius * cos(startAngle) + center.x();
368 startX, startY,
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 271 float startX = srcX / imageWidth;
273 float endX = startX + (srcW / imageWidth);
280 texCoords.put(startX).put(startY);
283 texCoords.put(startX).put(endY);
  /external/skia/src/images/
SkImageDecoder_libjpeg.cpp 588 int startX = rect.fLeft;
594 &startX, &startY, &width, &height);
625 ((startX - rect.x()) / actualSampleSize == 0) &&
661 region.width(), region.height(), startX, startY);
696 ((startX - rect.x()) / actualSampleSize == 0) &&
746 region.width(), region.height(), startX, startY);
    [all...]
  /frameworks/rs/
rsFont.cpp 253 uint32_t startX = 0;
258 glyph->mIsValid = state->cacheBitmap(bitmap, &startX, &startY);
264 uint32_t endX = startX + bitmap->width;
267 glyph->mBitmapMinX = startX;
275 glyph->mBitmapMinU = (float)startX / (float)cacheWidth;
418 uint32_t startX = 0;
423 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY);
435 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY);
448 *retOriginX = startX;
451 uint32_t endX = startX + bitmap->width
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 209 final float startX = mHoriz.convertToPoint(startTime);
223 mPathStroke.lineTo(startX, startY);
224 mPathFill.lineTo(startX, startY);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 542 int startX;
545 startX = targetBounds.x + targetBounds.w / 4;
549 startX = sourceBounds.x;
556 graphics.drawLine(startX, sharedY, endX, sharedY);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.cpp 719 float startX, startY, endX, endY;
724 getEllipsePointByAngle(sar, a, b, startX, startY);
727 transformArcPoint(startX, startY, p);
730 FloatPoint start(startX, startY);
  /frameworks/base/libs/hwui/
FontRenderer.cpp 393 uint32_t startX = 0;
398 mState->cacheBitmap(skiaGlyph, glyph, &startX, &startY);
404 uint32_t endX = startX + skiaGlyph.fWidth;
407 glyph->mStartX = startX;
415 glyph->mBitmapMinU = (float) startX / (float) cacheWidth;
627 uint32_t startX = 0;
633 bitmapFit = mCacheLines[i]->fitBitmap(glyph, &startX, &startY);
646 bitmapFit = mCacheLines[i]->fitBitmap(glyph, &startX, &startY);
661 *retOriginX = startX;
664 uint32_t endX = startX + glyph.fWidth
    [all...]

Completed in 1484 milliseconds

1 2 3