Searched defs:drawText (Results 1 - 9 of 9) 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.java1111 public void drawText(Canvas c, int start, int end, float x, float y, Paint p) { method in class:SpannableStringBuilder
1112 checkRange("drawText", start, end);
1115 c.drawText(mText, start, end - start, x, y, p);
1117 c.drawText(mText, start + mGapLength, end - start, x, y, p);
1122 c.drawText(buf, 0, end - start, x, y, p);
H A DLayout.java205 drawText(canvas, firstLine, lastLine);
211 public void drawText(Canvas canvas, int firstLine, int lastLine) { method in class:Layout
345 canvas.drawText(buf, start, end, x, lbaseline, paint);
/frameworks/base/core/java/android/view/
H A DGLES20RecordingCanvas.java245 public void drawText(char[] text, int index, int count, float x, float y, Paint paint) { method in class:GLES20RecordingCanvas
246 super.drawText(text, index, count, x, y, paint);
251 public void drawText(CharSequence text, int start, int end, float x, float y, Paint paint) { method in class:GLES20RecordingCanvas
252 super.drawText(text, start, end, x, y, paint);
257 public void drawText(String text, int start, int end, float x, float y, Paint paint) { method in class:GLES20RecordingCanvas
258 super.drawText(text, start, end, x, y, paint);
263 public void drawText(String text, float x, float y, Paint paint) { method in class:GLES20RecordingCanvas
264 super.drawText(text, x, y, paint);
H A DGLES20Canvas.java1161 public void drawText(char[] text, int index, int count, float x, float y, Paint paint) { method in class:GLES20Canvas
1178 public void drawText(CharSequence text, int start, int end, float x, float y, Paint paint) { method in class:GLES20Canvas
1186 ((GraphicsOperations) text).drawText(this, start, end, x, y,
1201 public void drawText(String text, int start, int end, float x, float y, Paint paint) { method in class:GLES20Canvas
1218 public void drawText(String text, float x, float y, Paint paint) { method in class:GLES20Canvas
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java1326 public void drawText(char[] text, int index, int count, float x, float y, Paint paint) { method in class:Canvas
1344 public void drawText(String text, float x, float y, Paint paint) { method in class:Canvas
1360 public void drawText(String text, int start, int end, float x, float y, Paint paint) { method in class:Canvas
1381 public void drawText(CharSequence text, int start, int end, float x, float y, Paint paint) { method in class:Canvas
1387 ((GraphicsOperations) text).drawText(this, start, end, x, y,
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp1276 drawGlStatus |= renderer.drawText(text.text(), text.length(), count,
1780 status_t DisplayListRenderer::drawText(const char* text, int bytesCount, int count, function in class:android::uirenderer::DisplayListRenderer
H A DOpenGLRenderer.cpp2611 status_t OpenGLRenderer::drawText(const char* text, int bytesCount, int count, function in class:android::uirenderer::OpenGLRenderer
2645 ALOGD("OpenGLRenderer drawText() with FontID=%d",
/frameworks/base/core/java/android/widget/
H A DTextView.java8666 public void drawText(Canvas c, int start, int end, method in class:TextView.CharWrapper
8668 c.drawText(mChars, start + mStart, end - start, x, y, p);

Completed in 238 milliseconds