/external/webkit/Source/WebCore/platform/graphics/wx/ |
FontPlatformDataWx.cpp | 84 m_font = adoptRef(new FontHolder(new wxFont( wxSize(0, -desc.computedPixelSize()), 93 m_font = adoptRef(new FontHolder(new wxFont( desc.computedPixelSize(), 113 m_size = desc.computedPixelSize(); 115 m_size = desc.computedPixelSize();
|
/external/webkit/Source/WebCore/css/ |
CSSFontFaceSource.cpp | 118 unsigned hashKey = (fontDescription.computedPixelSize() + 1) << 6 | fontDescription.widthVariant() << 4 157 fontData.set(new SimpleFontData(adoptPtr(new SVGFontData(fontFaceElement)), fontDescription.computedPixelSize(), syntheticBold, syntheticItalic)); 166 fontData.set(new SimpleFontData(m_font->platformDataFromCustomData(fontDescription.computedPixelSize(), syntheticBold, syntheticItalic, fontDescription.orientation(), 173 fontData.set(new SimpleFontData(adoptPtr(new SVGFontData(m_svgFontFaceElement.get())), fontDescription.computedPixelSize(), syntheticBold, syntheticItalic));
|
CSSSegmentedFontFace.cpp | 91 unsigned hashKey = ((fontDescription.computedPixelSize() + 1) << (FontTraitsMaskWidth + 1)) | ((fontDescription.orientation() == Vertical ? 1 : 0) << FontTraitsMaskWidth) | desiredTraitsMask;
|
CSSComputedStyleDeclaration.cpp | 657 return zoomAdjustedPixelValue(style->fontDescription().computedPixelSize(), style.get(), primitiveValueCache); [all...] |
/external/webkit/Source/WebCore/platform/graphics/qt/ |
FontPlatformDataQt.cpp | 67 int requestedSize = qRound(description.computedPixelSize());
|
/external/webkit/Source/WebCore/platform/graphics/ |
FontDescription.h | 86 int computedPixelSize() const { return int(m_computedSize + 0.5f); }
|
Font.h | 92 int pixelSize() const { return fontDescription().computedPixelSize(); }
|
FontCache.cpp | 188 FontPlatformDataCacheKey key(familyName, fontDescription.computedPixelSize(), fontDescription.weight(), fontDescription.italic(),
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
FontCacheMac.mm | 198 float size = fontDescription.computedPixelSize();
|
/external/webkit/Source/WebCore/platform/graphics/freetype/ |
FontCacheFreeType.cpp | 187 if (!FcPatternAddDouble(pattern.get(), FC_PIXEL_SIZE, fontDescription.computedPixelSize()))
|
FontPlatformDataFreeType.cpp | 118 , m_size(fontDescription.computedPixelSize())
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
FontCacheChromiumWin.cpp | 357 winfont->lfHeight = -fontDescription.computedPixelSize(); 641 fontDescription.computedPixelSize());
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
FontCacheWin.cpp | 568 fontDescription.computedPixelSize() * (useGDI ? 1 : 32), useGDI); 582 FontPlatformData* result = new FontPlatformData(hfont, fontDescription.computedPixelSize(), synthesizeBold, synthesizeItalic, useGDI);
|
/external/webkit/Source/WebCore/page/ |
PrintContext.cpp | 290 return String::number(style->fontDescription().computedPixelSize());
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
FontPlatformData.cpp | 334 , m_size(fontDescription.computedPixelSize())
|
/external/webkit/Source/WebCore/editing/ |
TextIterator.cpp | 789 int fontSize = style->fontDescription().computedPixelSize(); [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderBlock.cpp | [all...] |