HomeSort by relevance Sort by last modified time
    Searched refs:fontDescription (Results 51 - 75 of 78) sorted by null

1 23 4

  /external/webkit/Source/WebCore/css/
CSSPrimitiveValue.cpp 308 factor = computingFontSize ? style->fontDescription().specifiedSize() : style->fontDescription().computedSize();
320 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
CSSComputedStyleDeclaration.cpp 641 if (int keywordSize = style->fontDescription().keywordSize())
645 return zoomAdjustedPixelValue(style->fontDescription().computedPixelSize(), style.get(), primitiveValueCache);
657 return style->fontDescription().useFixedDefaultSize();
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
AutoFillPopupMenuClient.cpp 284 FontDescription regularFontDescription;
288 regularFontDescription.setComputedSize(style->fontDescription().computedSize());
298 FontDescription warningFontDescription = regularFont.fontDescription();
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 65 using WebCore::FontDescription;
1119 FontDescription fontDescription = renderer->style()->font().fontDescription();
1120 AtomicString family = fontDescription.family().family();
1123 webFontDescription->size = fontDescription.computedSize();
1124 webFontDescription->bold = fontDescription.weight() >= WebCore::FontWeight600;
1125 webFontDescription->italic = fontDescription.italic();
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
RenderThemeEfl.cpp     [all...]
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 428 void RenderThemeQt::systemFont(int, FontDescription&) const
568 FontDescription fontDescription = style->fontDescription();
569 fontDescription.setIsAbsoluteSize(true);
572 fontDescription.setSpecifiedSize(m_buttonFontPixelSize);
573 fontDescription.setComputedSize(m_buttonFontPixelSize);
575 fontDescription.setSpecifiedSize(style->fontSize());
576 fontDescription.setComputedSize(style->fontSize());
582 fontDescription.setFamily(fontFamily)
    [all...]
  /external/webkit/Source/WebCore/page/
PrintContext.cpp 290 return String::number(style->fontDescription().computedPixelSize());
292 return style->fontDescription().family().family().string();
  /external/webkit/Source/WebCore/rendering/
RenderThemeMac.mm 222 void RenderThemeMac::systemFont(int cssValueId, FontDescription& fontDescription) const
224 DEFINE_STATIC_LOCAL(FontDescription, systemFont, ());
225 DEFINE_STATIC_LOCAL(FontDescription, smallSystemFont, ());
226 DEFINE_STATIC_LOCAL(FontDescription, menuFont, ());
227 DEFINE_STATIC_LOCAL(FontDescription, labelFont, ());
228 DEFINE_STATIC_LOCAL(FontDescription, miniControlFont, ());
229 DEFINE_STATIC_LOCAL(FontDescription, smallControlFont, ());
230 DEFINE_STATIC_LOCAL(FontDescription, controlFont, ());
232 FontDescription* cachedDesc
    [all...]
RenderThemeChromiumWin.cpp 151 static FontDescription smallSystemFont;
152 static FontDescription menuFont;
153 static FontDescription labelFont;
293 void RenderThemeChromiumWin::systemFont(int propId, FontDescription& fontDescription) const
296 FontDescription* cachedDesc = 0;
341 cachedDesc = &fontDescription;
346 cachedDesc->setGenericFamily(FontDescription::NoFamily);
351 fontDescription = *cachedDesc;
524 smallSystemFont = menuFont = labelFont = FontDescription();
    [all...]
RenderListBox.cpp 113 FontDescription d = itemFont.fontDescription();
398 FontDescription d = itemFont.fontDescription();
RenderText.cpp 181 m_needsTranscoding = fontTranscoder().needsTranscoding(style()->font().fontDescription(), encoding);
    [all...]
RenderTheme.cpp 165 FontDescription controlFont = m_theme->controlFont(part, style->font(), style->effectiveZoom());
166 if (controlFont != style->font().fontDescription()) {
    [all...]
RenderThemeWinCE.cpp 259 void RenderThemeWinCE::systemFont(int propId, FontDescription& fontDescription) const
InlineFlowBox.cpp 418 if (renderer()->style(m_firstLine)->fontDescription().textOrientation() == TextOrientationUpright
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontMac.mm 147 switch(fontDescription().fontSmoothing()) {
  /external/webkit/Source/WebCore/platform/wx/
RenderThemeWx.cpp 94 virtual void systemFont(int propId, FontDescription&) const;
191 void RenderThemeWx::systemFont(int propId, FontDescription& fontDescription) const
  /external/webkit/Source/WebCore/platform/graphics/
Font.cpp 56 Font::Font(const FontDescription& fd, short letterSpacing, short wordSpacing)
73 m_needsTranscoding = fontTranscoder().needsTranscoding(fontDescription());
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk2.cpp 580 const PangoFontDescription* fontDescription = gtkStyle->font_desc;
581 gint fontSize = pango_font_description_get_size(fontDescription);
    [all...]
RenderThemeGtk3.cpp 728 const PangoFontDescription* fontDescription = gtk_style_context_get_font(context, static_cast<GtkStateFlags>(0));
729 gint fontSize = pango_font_description_get_size(fontDescription);
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 323 FontDescription d = itemFont.fontDescription();
640 FontDescription d = itemFont.fontDescription();
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp 306 switch(fontDescription().fontSmoothing()) {
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 479 const FontDescription& fontDescription() const { return inherited->font.fontDescription(); }
    [all...]
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 350 if (renderStyle->fontDescription().keywordSize())
415 // We need to check font-family is monospace as in FontDescription but we don't want to duplicate code here.
    [all...]
TextIterator.cpp 831 int fontSize = style->fontDescription().computedPixelSize();
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp     [all...]

Completed in 290 milliseconds

1 23 4