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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java328 boolean fakeBoldText) {
329 setFlag(nativePaint, Paint.FAKE_BOLD_TEXT_FLAG, fakeBoldText);
327 nSetFakeBoldText(long nativePaint, boolean fakeBoldText) argument
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java792 * @return true if the fakeBoldText bit is set in the paint's flags.
801 * @param fakeBoldText true to set the fakeBoldText bit in the paint's
804 public void setFakeBoldText(boolean fakeBoldText) { argument
805 nSetFakeBoldText(mNativePaint, fakeBoldText);
2887 private static native void nSetFakeBoldText(long paintPtr, boolean fakeBoldText); argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp723 static void setFakeBoldText(jlong paintHandle, jboolean fakeBoldText) { argument
724 reinterpret_cast<Paint*>(paintHandle)->setFakeBoldText(fakeBoldText);

Completed in 86 milliseconds