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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontCustomPlatformDataSkia.cpp 68 bool syntheticBold = bold && !m_typeface->isBold();
70 if (syntheticBold || syntheticItalic) {
75 if (syntheticBold)
81 syntheticBold = false;
83 return FontPlatformData(typeface.release(), "", size, syntheticBold, syntheticItalic, orientation);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontPlatformData.cpp 65 FontPlatformData::FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant)
66 : m_syntheticBold(syntheticBold)
80 FontPlatformData::FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant)
81 : m_syntheticBold(syntheticBold)
FontPlatformData.h 87 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation = Horizontal, FontWidthVariant = RegularWidth);
90 FontPlatformData(NSFont*, float size, bool syntheticBold = false, bool syntheticOblique = false,
92 FontPlatformData(CGFontRef, float size, bool syntheticBold, bool syntheticOblique, FontOrientation, FontWidthVariant);
115 bool syntheticBold() const { return m_syntheticBold; }
SimpleFontData.h 65 static PassRefPtr<SimpleFontData> create(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic)
67 return adoptRef(new SimpleFontData(customData, fontSize, syntheticBold, syntheticItalic));
177 SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic);
FontDescription.h 154 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }
SimpleFontData.cpp 66 SimpleFontData::SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic)
67 : m_platformData(FontPlatformData(fontSize, syntheticBold, syntheticItalic))
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontPlatformDataHarfBuzz.h 63 FontPlatformData(float textSize, bool syntheticBold, bool syntheticItalic);
65 FontPlatformData(PassRefPtr<SkTypeface>, const char* name, float textSize, bool syntheticBold, bool syntheticItalic, FontOrientation = Horizontal, bool subpixelTextPosition = defaultUseSubpixelPositioning());
80 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }
FontPlatformDataHarfBuzz.cpp 68 FontPlatformData::FontPlatformData(float textSize, bool syntheticBold, bool syntheticItalic)
70 , m_syntheticBold(syntheticBold)
102 FontPlatformData::FontPlatformData(PassRefPtr<SkTypeface> tf, const char* family, float textSize, bool syntheticBold, bool syntheticItalic, FontOrientation orientation, bool subpixelTextPosition)
108 , m_syntheticBold(syntheticBold)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontCacheMac.mm 221 bool syntheticBold = (isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(actualWeight)) || fontDescription.isSyntheticBold();
226 OwnPtr<FontPlatformData> platformData = adoptPtr(new FontPlatformData(platformFont, size, syntheticBold, syntheticOblique, fontDescription.orientation(), fontDescription.widthVariant()));
SimpleFontDataMac.mm 135 bool syntheticBold = platformData().syntheticBold() && !(traits & kCTFontBoldTrait);
138 FontPlatformData substitutePlatform(substituteFont, platformData().size(), syntheticBold, syntheticOblique, platformData().orientation(), platformData().widthVariant());
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
WebFontCache.mm 191 bool syntheticBold = desiredWeight >= 7 && actualWeight < 7;
201 if (syntheticBold)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
FontPlatformDataCocoa.mm 41 FontPlatformData::FontPlatformData(NSFont *nsFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant)
42 : m_syntheticBold(syntheticBold)

Completed in 176 milliseconds