HomeSort by relevance Sort by last modified time
    Searched refs:hOffset (Results 1 - 25 of 49) sorted by null

1 2

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
PointLabelFormatter.java 30 public float hOffset;
45 * @param hOffset Horizontal offset of text in pixels.
49 public PointLabelFormatter(int textColor, float hOffset, float vOffset) {
51 this.hOffset = hOffset;
BarRenderer.java 244 canvas.drawText(pointLabeler.getLabel(b.series, b.seriesIndex), b.intX + plf.hOffset, b.intY + plf.vOffset, plf.getTextPaint());
265 canvas.drawText(pointLabeler.getLabel(b.series, b.seriesIndex), leftX + width/2 + plf.hOffset, b.intY + plf.vOffset, plf.getTextPaint());
288 canvas.drawText(pointLabeler.getLabel(b.series, b.seriesIndex), b.intX + plf.hOffset, b.intY + plf.vOffset, plf.getTextPaint());
LineAndPointRenderer.java 149 canvas.drawText(pointLabeler.getLabel(series, p.second), p.first.x + plf.hOffset, p.first.y + plf.vOffset, plf.getTextPaint());
  /external/dng_sdk/source/
dng_tile_iterator.cpp 123 int32 hOffset = tile.l;
126 int32 tileWidth = tile.r - hOffset;
131 fLeftPage = (fArea.l - hOffset ) / tileWidth;
132 fRightPage = (fArea.r - hOffset - 1) / tileWidth;
141 fTileLeft = fHorizontalPage * tileWidth + hOffset;
  /frameworks/base/libs/hwui/hwui/
Canvas.cpp 181 DrawTextOnPathFunctor(const Layout& layout, Canvas* canvas, float hOffset,
185 , hOffset(hOffset)
195 float x = hOffset + layout.getX(i);
203 float hOffset;
210 float hOffset, float vOffset, const Paint& paint, Typeface* typeface) {
214 hOffset += MinikinUtils::hOffsetForTextAlign(&paintCopy, layout, path);
221 DrawTextOnPathFunctor f(layout, this, hOffset, vOffset, paintCopy, path);
Canvas.h 233 float hOffset, float vOffset, const Paint& paint, Typeface* typeface);
248 float hOffset, float vOffset, const SkPaint& paint) = 0;
  /frameworks/base/libs/hwui/font/
Font.h 88 int numGlyphs, const SkPath* path, float hOffset, float vOffset);
140 void drawCachedGlyph(CachedGlyphInfo* glyph, float x, float hOffset, float vOffset,
Font.cpp 237 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, float x, float hOffset, float vOffset,
245 bool ok = measure.getPosTan(x + hOffset + glyph->mBitmapLeft + halfWidth, position, tangent);
301 const SkPath* path, float hOffset, float vOffset) {
339 drawCachedGlyph(cachedGlyph, penX, hOffset, vOffset, measure, &position, &tangent);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
FakeShadowDrawable.java 138 int hOffset = (int) Math.ceil(calculateHorizontalPadding(mRawMaxShadowSize, mCornerRadius,
140 padding.set(hOffset, vOffset, hOffset, vOffset);
  /frameworks/support/design/base/android/support/design/widget/
ShadowDrawableWrapper.java 151 int hOffset = (int) Math.ceil(calculateHorizontalPadding(mRawMaxShadowSize, mCornerRadius,
153 padding.set(hOffset, vOffset, hOffset, vOffset);
  /frameworks/support/v7/cardview/gingerbread/android/support/v7/widget/
RoundRectDrawableWithShadow.java 175 int hOffset = (int) Math.ceil(calculateHorizontalPadding(mRawMaxShadowSize, mCornerRadius,
177 padding.set(hOffset, vOffset, hOffset, vOffset);
  /frameworks/base/libs/hwui/
RecordedOp.h 403 const glyph_t* glyphs, int glyphCount, const SkPath* path, float hOffset, float vOffset)
408 , hOffset(hOffset)
414 const float hOffset;
FontRenderer.h 120 float hOffset, float vOffset, Rect* outBounds, TextDrawFunctor* functor);
RecordingCanvas.h 200 float hOffset, float vOffset, const SkPaint& paint) override;
SkiaCanvas.cpp 172 float hOffset, float vOffset, const SkPaint& paint) override;
769 float hOffset, float vOffset, const SkPaint& paint) {
770 mCanvas->drawTextOnPathHV(glyphs, count << 1, path, hOffset, vOffset, paint);
DisplayListCanvas.h 217 float hOffset, float vOffset, const SkPaint& paint) override;
OpenGLRenderer.h 195 float hOffset, float vOffset, const SkPaint* paint);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
NopCanvas.java 284 public void drawTextOnPath(char[] text, int index, int count, Path path, float hOffset,
289 public void drawTextOnPath(String text, Path path, float hOffset, float vOffset, Paint paint) {
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatSpinner.java 743 int hOffset = 0;
746 hOffset = ViewUtils.isLayoutRtl(AppCompatSpinner.this) ? mTempRect.right
771 hOffset += spinnerWidth - spinnerPaddingRight - getWidth();
773 hOffset += spinnerPaddingLeft;
775 setHorizontalOffset(hOffset);
  /cts/tests/camera/src/android/hardware/camera2/cts/
ImageReaderTest.java 561 * @param hOffset offset of the top of the patch.
565 private static int[] convertPixelYuvToRgba(int w, int h, int wOffset, int hOffset,
571 w > 0 && h > 0 && wOffset >= 0 && hOffset >= 0);
583 Rect crop = new Rect(/*left*/wOffset, /*top*/hOffset, /*right*/wOffset + w,
584 /*bottom*/hOffset + h);
616 for (int i = hOffset; i < hOffset + h; i++) {
619 if ((i & 1) == (hOffset & 1)) {
    [all...]
  /frameworks/base/core/java/android/widget/
Spinner.java     [all...]
  /external/skia/src/core/
SkDevice.cpp 370 SkScalar hOffset = 0;
378 hOffset += pathLen;
394 m.postTranslate(xpos + hOffset, 0);
  /frameworks/base/graphics/java/android/graphics/
Canvas.java     [all...]
  /frameworks/base/core/jni/
android_graphics_Canvas.cpp 530 jint index, jint count, jlong pathHandle, jfloat hOffset,
540 hOffset, vOffset, *paint, typeface);
546 jlong pathHandle, jfloat hOffset, jfloat vOffset,
556 hOffset, vOffset, *paint, typeface);
  /prebuilts/sdk/current/support/v7/cardview/libs/
android-support-v7-cardview.jar 

Completed in 442 milliseconds

1 2