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

/frameworks/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java362 boolean fakeBoldText) {
363 setFlag(nativePaint, Paint.FAKE_BOLD_TEXT_FLAG, fakeBoldText);
361 nSetFakeBoldText(long nativePaint, boolean fakeBoldText) argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp717 static void setFakeBoldText(jlong paintHandle, jboolean fakeBoldText) { argument
718 reinterpret_cast<Paint*>(paintHandle)->setFakeBoldText(fakeBoldText);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java874 * @return true if the fakeBoldText bit is set in the paint's flags.
883 * @param fakeBoldText true to set the fakeBoldText bit in the paint's
886 public void setFakeBoldText(boolean fakeBoldText) { argument
887 nSetFakeBoldText(mNativePaint, fakeBoldText);
2976 private static native void nSetFakeBoldText(long paintPtr, boolean fakeBoldText); argument

Completed in 23 milliseconds