Searched defs:subpixelText (Results 1 - 3 of 3) sorted by relevance

/frameworks/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java344 boolean subpixelText) {
345 setFlag(nativePaint, Paint.SUBPIXEL_TEXT_FLAG, subpixelText);
343 nSetSubpixelText(long nativePaint, boolean subpixelText) argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp691 static void setSubpixelText(jlong paintHandle, jboolean subpixelText) { argument
692 reinterpret_cast<Paint*>(paintHandle)->setSubpixelText(subpixelText);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java792 * @param subpixelText true to set the subpixelText bit in the paint's
795 public void setSubpixelText(boolean subpixelText) { argument
796 nSetSubpixelText(mNativePaint, subpixelText);
2972 private static native void nSetSubpixelText(long paintPtr, boolean subpixelText); argument

Completed in 123 milliseconds