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

  /external/webkit/Source/WebKit/chromium/public/
WebFontDescription.h 78 , smallCaps(false)
90 bool smallCaps;
  /external/webkit/Source/WebKit/chromium/src/
WebFontDescription.cpp 47 smallCaps = desc.smallCaps();
65 desc.setSmallCaps(smallCaps);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
SimpleFontDataHaiku.cpp 81 if (!m_derivedFontData->smallCaps)
82 m_derivedFontData->smallCaps = scaledFontData(fontDescription, .7);
84 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontDataAndroid.cpp 92 if (!m_derivedFontData->smallCaps)
93 m_derivedFontData->smallCaps = new SimpleFontData(FontPlatformData(m_platformData, fontDescription.computedSize() * 0.7f));
95 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/freetype/
SimpleFontDataFreeType.cpp 101 if (!m_derivedFontData->smallCaps)
102 m_derivedFontData->smallCaps = scaledFontData(fontDescription, .7);
104 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/pango/
SimpleFontDataPango.cpp 99 if (!m_derivedFontData->smallCaps)
100 m_derivedFontData->smallCaps = scaledFontData(fontDescription, .7);
102 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontPlatformDataQt.cpp 74 const bool smallCaps = description.smallCaps();
75 font.setCapitalization(smallCaps ? QFont::SmallCaps : QFont::MixedCase);
FontPlatformData.h 125 bool smallCaps() const
130 return m_data->font.capitalization() == QFont::SmallCaps;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 129 if (!m_derivedFontData->smallCaps)
130 m_derivedFontData->smallCaps = scaledFontData(fontDescription, .7);
132 return m_derivedFontData->smallCaps.get();
SimpleFontDataLinux.cpp 49 // Smallcaps versions of fonts are 70% the size of the normal font.
168 if (!m_derivedFontData->smallCaps)
169 m_derivedFontData->smallCaps = scaledFontData(fontDescription, smallCapsFraction);
171 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/wince/
SimpleFontDataWinCE.cpp 80 if (!m_derivedFontData->smallCaps)
81 m_derivedFontData->smallCaps = scaledFontData(fontDescription, .7);
83 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/wx/
SimpleFontDataWx.cpp 105 if (!m_derivedFontData->smallCaps)
106 m_derivedFontData->smallCaps = scaledFontData(fontDescription, .7);
108 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp 131 if (!m_derivedFontData->smallCaps)
132 m_derivedFontData->smallCaps = scaledFontData(fontDescription, cSmallCapsFontSizeMultiplier);
134 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 354 if (m_derivedFontData->smallCaps)
355 fontCache()->releaseFontData(m_derivedFontData->smallCaps.leakPtr());
412 if (!m_derivedFontData->smallCaps)
413 m_derivedFontData->smallCaps = scaledFontData(fontDescription, smallCapsFontSizeMultiplier);
415 return m_derivedFontData->smallCaps.get();
  /external/webkit/Source/WebCore/platform/graphics/
SimpleFontData.cpp 261 if (smallCaps)
262 GlyphPageTreeNode::pruneTreeCustomFontData(smallCaps.get());
FontDescription.h 87 bool smallCaps() const { return m_smallCaps; }
Font.h 106 bool isSmallCaps() const { return m_fontDescription.smallCaps(); }
SimpleFontData.h 240 OwnPtr<SimpleFontData> smallCaps;
FontFastPath.cpp 48 if (m_fontDescription.smallCaps()) {
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp     [all...]
CSSStyleSelector.cpp     [all...]

Completed in 99 milliseconds