HomeSort by relevance Sort by last modified time
    Searched defs:syntheticBold (Results 1 - 2 of 2) 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.h 78 FontPlatformData(float size, bool syntheticBold, bool syntheticItalic, FontOrientation = Horizontal, FontWidthVariant = RegularWidth);
80 FontPlatformData(NSFont*, float size, bool syntheticBold = false, bool syntheticItalic = false,
82 FontPlatformData(CGFontRef, float size, bool syntheticBold, bool syntheticOblique, FontOrientation, FontWidthVariant);
84 FontPlatformData(PassRefPtr<SkTypeface>, const char* name, float textSize, bool syntheticBold, bool syntheticItalic, FontOrientation = Horizontal, bool subpixelTextPosition = defaultUseSubpixelPositioning());
108 bool syntheticBold() const { return m_syntheticBold; }
118 void setSyntheticBold(bool syntheticBold) { m_syntheticBold = syntheticBold; }

Completed in 4954 milliseconds