Searched defs:drawText (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/text/
H A DGraphicsOperations.java31 * Just like {@link Canvas#drawText}.
33 void drawText(Canvas c, int start, int end, method in interface:GraphicsOperations
H A DSpannableStringBuilder.java1185 public void drawText(Canvas c, int start, int end, float x, float y, Paint p) { method in class:SpannableStringBuilder
1186 checkRange("drawText", start, end);
1189 c.drawText(mText, start, end - start, x, y, p);
1191 c.drawText(mText, start + mGapLength, end - start, x, y, p);
1196 c.drawText(buf, 0, end - start, x, y, p);
H A DLayout.java262 drawText(canvas, firstLine, lastLine);
268 public void drawText(Canvas canvas, int firstLine, int lastLine) { method in class:Layout
410 canvas.drawText(buf, start, end, x, lbaseline, paint);
/frameworks/base/libs/hwui/
H A DDisplayListCanvas.cpp460 void DisplayListCanvas::drawText(const uint16_t* glyphs, const float* positions, function in class:android::uirenderer::DisplayListCanvas
H A DSkiaCanvas.cpp120 virtual void drawText(const uint16_t* text, const float* positions, int count,
669 void SkiaCanvas::drawText(const uint16_t* text, const float* positions, int count, function in class:android::SkiaCanvas
H A DOpenGLRenderer.cpp1227 * Merged multidraw (such as in drawText and drawBitmaps rely on the fact that no clipping is done
2206 void OpenGLRenderer::drawText(const char* text, int bytesCount, int count, float x, float y, function in class:android::uirenderer::OpenGLRenderer
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp450 canvas->drawText(glyphs + start, pos + (2 * start), glyphCount, paint, x, y,
499 void drawText(Canvas* canvas, const uint16_t* text, int start, int count, int contextCount, function in namespace:android::CanvasJNI
534 drawText(get_canvas(canvasHandle), jchars + index, 0, count, count, x, y,
546 drawText(get_canvas(canvasHandle), jchars + start, 0, count, count, x, y,
559 drawText(get_canvas(canvasHandle), jchars + contextIndex, index - contextIndex, count,
575 drawText(get_canvas(canvasHandle), jchars + contextStart, start - contextStart, count,
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java1636 public void drawText(@NonNull char[] text, int index, int count, float x, float y, method in class:Canvas
1655 public void drawText(@NonNull String text, float x, float y, @NonNull Paint paint) { method in class:Canvas
1671 public void drawText(@NonNull String text, int start, int end, float x, float y, method in class:Canvas
1693 public void drawText(@NonNull CharSequence text, int start, int end, float x, float y, method in class:Canvas
1703 ((GraphicsOperations) text).drawText(this, start, end, x, y,
1721 * {@link #drawText}, in this method {@code count} and {@code contextCount} are used rather
1846 drawText(text, index + i, 1, pos[i * 2], pos[i * 2 + 1], paint);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java853 drawText(nativeCanvas, text, index, count, startX, startY, (flags & 1) != 0,
876 drawText(nativeCanvas, buffer, 0, count, x, y, isRtl, paint, typeface);
883 drawText(nativeCanvas, text, start, count, x, y, isRtl, paint, typeface);
962 private static void drawText(long nativeCanvas, final char[] text, final int index, method in class:Canvas_Delegate
/frameworks/base/core/java/android/widget/
H A DTextView.java9945 public void drawText(Canvas c, int start, int end, method in class:TextView.CharWrapper
9947 c.drawText(mChars, start + mStart, end - start, x, y, p);

Completed in 263 milliseconds