/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | PosTextActivity.java | 66 canvas.drawPosText(mText, mPos, mLargePaint); 70 canvas.drawPosText(mText, mPos, mLargePaint); 74 canvas.drawPosText(mText, mPos, mLargePaint);
|
/frameworks/minikin/sample/ |
H A D | example_skia.cpp | 97 canvas->drawPosText(glyphs + start, (i - start) << 1, pos + start, *paint); 103 canvas->drawPosText(glyphs + start, (nGlyphs - start) << 1, pos + start, *paint);
|
/frameworks/base/libs/hwui/ |
H A D | Canvas.h | 154 /** drawPosText: count is of UTF16 characters, posCount is floats (2 * glyphs) */ 155 virtual void drawPosText(const uint16_t* text, const float* positions, int count,
|
H A D | SkiaCanvas.cpp | 124 virtual void drawPosText(const uint16_t* text, const float* positions, int count, 680 mCanvas->drawPosText(text, count << 1, reinterpret_cast<const SkPoint*>(positions), paintCopy); 683 void SkiaCanvas::drawPosText(const uint16_t* text, const float* positions, int count, int posCount, function in class:android::SkiaCanvas 694 mCanvas->drawPosText(text, count, posPtr, paintCopy);
|
H A D | DisplayListCanvas.h | 234 virtual void drawPosText(const uint16_t* text, const float* positions, int count,
|
H A D | OpenGLRenderer.h | 216 void drawPosText(const char* text, int bytesCount, int count,
|
H A D | DisplayListCanvas.cpp | 438 void DisplayListCanvas::drawPosText(const uint16_t* text, const float* positions, function in class:android::uirenderer::DisplayListCanvas
|
H A D | DisplayListOp.h | 1311 renderer.drawPosText(mText, mBytesCount, mCount, mPositions, mPaint);
|
H A D | OpenGLRenderer.cpp | 2062 void OpenGLRenderer::drawPosText(const char* text, int bytesCount, int count, function in class:android::uirenderer::OpenGLRenderer 2068 // NOTE: Skia does not support perspective transform on drawPosText yet
|
/frameworks/base/graphics/java/android/graphics/ |
H A D | Canvas.java | 1839 public void drawPosText(@NonNull char[] text, int index, int count, method in class:Canvas 1863 public void drawPosText(@NonNull String text, @NonNull @Size(multiple=2) float[] pos, method in class:Canvas 1865 drawPosText(text.toCharArray(), 0, text.length(), pos, paint);
|