Home | History | Annotate | Download | only in text

Lines Matching defs:Canvas

18 import android.graphics.Canvas;
37 * Performance test for single line measure and draw using {@link Paint} and {@link Canvas}.
79 Canvas.freeTextLayoutCaches();
86 if (!mCached) Canvas.freeTextLayoutCaches();
94 * Measures the time for {@link Canvas#drawText(String, float, float, Paint)}
101 Canvas.freeTextLayoutCaches();
110 final DisplayListCanvas canvas = node.start(1200, 200);
111 final int save = canvas.save();
112 if (!mCached) Canvas.freeTextLayoutCaches();
115 canvas.drawText(text, 0 /*x*/, 100 /*y*/, mTextPaint);
118 canvas.restoreToCount(save);
119 node.end(canvas);