Searched defs:typeface (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DTypeface_Delegate.java81 public static List<Font> getFonts(Typeface typeface) { argument
82 return getFonts(typeface.native_instance);
H A DPaint_Delegate.java828 /*package*/ static int native_setTypeface(int native_object, int typeface) { argument
835 delegate.mTypeface = Typeface_Delegate.getDelegate(typeface);
837 return typeface;
1043 * Update the {@link Font} object from the typeface, text size and scaling
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp223 static SkTypeface* setTypeface(JNIEnv* env, jobject clazz, SkPaint* obj, SkTypeface* typeface) { argument
224 return obj->setTypeface(typeface);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java728 * Get the paint's typeface object.
730 * The typeface object identifies which font to use when drawing or
733 * @return the paint's typeface (or null)
740 * Set or clear the typeface object.
742 * Pass null to clear any previous typeface.
745 * @param typeface May be null. The typeface to be installed in the paint
746 * @return typeface
748 public Typeface setTypeface(Typeface typeface) { argument
750 if (typeface !
1392 native_setTypeface(int native_object, int typeface) argument
[all...]

Completed in 79 milliseconds