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

/frameworks/base/core/java/android/text/
H A DGraphicsOperations.java31 * Just like {@link Canvas#drawText}.
33 void drawText(BaseCanvas c, int start, int end, method in interface:GraphicsOperations
H A DSpannableStringBuilder.java1405 public void drawText(BaseCanvas c, int start, int end, float x, float y, Paint p) { method in class:SpannableStringBuilder
1406 checkRange("drawText", start, end);
1409 c.drawText(mText, start, end - start, x, y, p);
1411 c.drawText(mText, start + mGapLength, end - start, x, y, p);
1416 c.drawText(buf, 0, end - start, x, y, p);
H A DLayout.java286 drawText(canvas, firstLine, lastLine);
385 public void drawText(Canvas canvas, int firstLine, int lastLine) { method in class:Layout
533 canvas.drawText(buf, start, end, x, lbaseline, paint);
/frameworks/base/libs/hwui/hwui/
H A DCanvas.cpp151 void Canvas::drawText(const uint16_t* text, int start, int count, int contextCount, function in class:android::Canvas
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
H A DNopCanvas.java254 public void drawText(char[] text, int index, int count, float x, float y, Paint paint) { method in class:NopCanvas
258 public void drawText(String text, float x, float y, Paint paint) { method in class:NopCanvas
262 public void drawText(String text, int start, int end, float x, float y, Paint paint) { method in class:NopCanvas
266 public void drawText(CharSequence text, int start, int end, float x, float y, Paint paint) { method in class:NopCanvas
/frameworks/base/core/java/android/view/
H A DRecordingCanvas.java344 drawText(text, index + i, 1, pos[i * 2], pos[i * 2 + 1], paint);
391 public final void drawText(@NonNull char[] text, int index, int count, float x, float y, method in class:RecordingCanvas
402 public final void drawText(@NonNull CharSequence text, int start, int end, float x, float y, method in class:RecordingCanvas
412 ((GraphicsOperations) text).drawText(this, start, end, x, y,
424 public final void drawText(@NonNull String text, float x, float y, @NonNull Paint paint) { method in class:RecordingCanvas
430 public final void drawText(@NonNull String text, int start, int end, float x, float y, method in class:RecordingCanvas
/frameworks/base/graphics/java/android/graphics/
H A DBaseCanvas.java327 drawText(text, index + i, 1, pos[i * 2], pos[i * 2 + 1], paint);
370 public void drawText(@NonNull char[] text, int index, int count, float x, float y, method in class:BaseCanvas
381 public void drawText(@NonNull CharSequence text, int start, int end, float x, float y, method in class:BaseCanvas
392 ((GraphicsOperations) text).drawText(this, start, end, x, y,
403 public void drawText(@NonNull String text, float x, float y, @NonNull Paint paint) { method in class:BaseCanvas
409 public void drawText(@NonNull String text, int start, int end, float x, float y, method in class:BaseCanvas
H A DCanvas.java1805 public void drawText(@NonNull char[] text, int index, int count, float x, float y, method in class:Canvas
1807 super.drawText(text, index, count, x, y, paint);
1819 public void drawText(@NonNull String text, float x, float y, @NonNull Paint paint) { method in class:Canvas
1820 super.drawText(text, x, y, paint);
1834 public void drawText(@NonNull String text, int start, int end, float x, float y, method in class:Canvas
1836 super.drawText(text, start, end, x, y, paint);
1850 public void drawText(@NonNull CharSequence text, int start, int end, float x, float y, method in class:Canvas
1852 super.drawText(text, start, end, x, y, paint);
1891 * string. Also, to be consistent with the pattern established in {@link #drawText}, in this
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBaseCanvas_Delegate.java482 drawText(nativeCanvas, text, index, count, startX, startY, (flags & 1) != 0,
505 drawText(nativeCanvas, buffer, 0, count, x, y, isRtl, paint, typeface);
512 drawText(nativeCanvas, text, start, count, x, y, isRtl, paint, typeface);
576 private static void drawText(long nativeCanvas, final char[] text, final int index, method in class:BaseCanvas_Delegate
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp565 void BootAnimation::drawText(const char* str, const Font& font, bool bold, int* x, int* y) { function in class:android::BootAnimation
634 drawText(out, font, false, &x, &y);
/frameworks/base/core/java/android/widget/
H A DTextView.java11688 public void drawText(BaseCanvas c, int start, int end, method in class:TextView.CharWrapper
11690 c.drawText(mChars, start + mStart, end - start, x, y, p);

Completed in 326 milliseconds