HomeSort by relevance Sort by last modified time
    Searched refs:Bold (Results 1 - 5 of 5) sorted by null

  /frameworks/base/data/fonts/
Android.mk 39 # Symlink: DroidSans-Bold.ttf -> Roboto-Bold.ttf
40 LOCAL_MODULE := DroidSans-Bold.ttf
41 font_symlink_src := $(PRODUCT_OUT)/system/fonts/Roboto-Bold.ttf
65 extra_droidsans_fonts := DroidSans.ttf DroidSans-Bold.ttf
68 extra_droidsans_fonts := DroidSans.ttf DroidSans-Bold.ttf DroidSansEthiopic-Regular.ttf
fonts.mk 21 frameworks/base/data/fonts/Roboto-Bold.ttf:system/fonts/Roboto-Bold.ttf \
26 frameworks/base/data/fonts/DroidSansHebrew-Bold.ttf:system/fonts/DroidSansHebrew-Bold.ttf \
29 frameworks/base/data/fonts/DroidSerif-Bold.ttf:system/fonts/DroidSerif-Bold.ttf \
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontCustomPlatformDataQt.cpp 37 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode)
42 if (bold)
43 font.setWeight(QFont::Bold);
FontPlatformDataQt.cpp 40 return QFont::Bold; // QFont::Bold == Weight of 75
51 static inline bool isEmptyValue(const float size, const bool bold, const bool oblique)
54 return !bold && !oblique && size == 0.f;
57 FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
59 if (!isEmptyValue(size, bold, oblique))
60 m_data = adoptRef(new FontPlatformDataPrivate(size, bold, oblique));
78 m_data->bold = font.bold();
94 && m_data->bold == other.m_data->bol
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 243 if ((s & Typeface.BOLD) != 0) {
333 if ((s & Typeface.BOLD) != 0) {
453 start(mSpannableStringBuilder, new Bold());
455 start(mSpannableStringBuilder, new Bold());
503 end(mSpannableStringBuilder, Bold.class, new StyleSpan(Typeface.BOLD));
505 end(mSpannableStringBuilder, Bold.class, new StyleSpan(Typeface.BOLD));
710 text.setSpan(new StyleSpan(Typeface.BOLD),
786 private static class Bold { }
    [all...]

Completed in 395 milliseconds