Home
last modified time | relevance | path

Searched refs:letterSpacing (Results 1 – 25 of 40) sorted by relevance

12

/external/webkit/Source/WebKit/chromium/src/
DWebFontImpl.cpp51 return new WebFontImpl(desc, desc.letterSpacing, desc.wordSpacing); in create()
54 WebFontImpl::WebFontImpl(const FontDescription& desc, short letterSpacing, short wordSpacing) in WebFontImpl() argument
55 : m_font(desc, letterSpacing, wordSpacing) in WebFontImpl()
62 … return WebFontDescription(m_font.fontDescription(), m_font.letterSpacing(), m_font.wordSpacing()); in fontDescription()
DWebFontImpl.h43 WebFontImpl(const WebCore::FontDescription&, short letterSpacing, short wordSpacing);
DWebFontDescription.cpp50 letterSpacing = fontLetterSpacing; in WebFontDescription()
DAutoFillPopupMenuClient.cpp300 … Font warningFont(warningFontDescription, regularFont.letterSpacing(), regularFont.wordSpacing()); in initialize()
/external/webkit/Source/WebCore/platform/graphics/wince/
DFontWinCE.cpp112 int letterSpacing = font.letterSpacing(); in generateComponents() local
123 if (letterSpacing) { in generateComponents()
134 offset += add + letterSpacing + components->last().m_width; in generateComponents()
148 offset += components->last().m_width + letterSpacing; in generateComponents()
156 offset += wordSpacing + add + components->last().m_width + letterSpacing; in generateComponents()
164 offset += components->last().m_width + letterSpacing; in generateComponents()
174 offset += letterSpacing; in generateComponents()
/external/webkit/Source/WebCore/platform/graphics/chromium/
DUniscribeHelper.h108 int letterSpacing() const in letterSpacing() function
112 void setLetterSpacing(int letterSpacing) in setLetterSpacing() argument
114 m_letterSpacing = letterSpacing; in setLetterSpacing()
DFontLinux.cpp211 controller.setLetterSpacingAdjustment(letterSpacing()); in drawComplexText()
248 controller.setLetterSpacingAdjustment(letterSpacing()); in floatWidthForComplexText()
282 controller.setLetterSpacingAdjustment(letterSpacing()); in offsetForPositionForComplexText()
333 controller.setLetterSpacingAdjustment(letterSpacing()); in selectionRectForComplexText()
DComplexTextControllerLinux.h85 int letterSpacing() const { return m_letterSpacing; } in letterSpacing() function
DUniscribeHelperTextRun.cpp52 setLetterSpacing(font.letterSpacing()); in UniscribeHelperTextRun()
/external/webkit/Source/WebKit/chromium/public/
DWebFontDescription.h81 , letterSpacing(0) in WebFontDescription()
94 short letterSpacing; member
/external/webkit/Source/WebCore/rendering/svg/
DSVGTextLayoutEngineSpacing.cpp82 if (!kerning && !m_font.letterSpacing() && !m_font.wordSpacing()) in calculateCSSKerningAndSpacing()
85 float spacing = m_font.letterSpacing() + kerning; in calculateCSSKerningAndSpacing()
/external/webkit/Source/WebCore/platform/graphics/qt/
DFontPlatformDataQt.cpp63 …t FontDescription& description, const AtomicString& familyName, int wordSpacing, int letterSpacing) in FontPlatformData() argument
73 font.setLetterSpacing(QFont::AbsoluteSpacing, letterSpacing); in FontPlatformData()
DFontPlatformData.h73 …onst FontDescription&, const AtomicString& familyName, int wordSpacing = 0, int letterSpacing = 0);
/external/webkit/Source/WebCore/platform/graphics/
DWidthIterator.cpp86 …bool hasExtraSpacing = (m_font->letterSpacing() || m_font->wordSpacing() || m_expansion) && !m_run… in advance()
160 if (width && m_font->letterSpacing()) in advance()
161 width += m_font->letterSpacing(); in advance()
DFont.h79 Font(const FontDescription&, short letterSpacing, short wordSpacing);
109 short letterSpacing() const { return m_letterSpacing; } in letterSpacing() function
135 …Width(const SimpleFontData& fontData) const { return 8 * fontData.spaceWidth() + letterSpacing(); } in tabWidth()
DFont.cpp56 Font::Font(const FontDescription& fd, short letterSpacing, short wordSpacing) in Font() argument
58 , m_letterSpacing(letterSpacing) in Font()
279 if (run.expansion() || run.rtl() || isSmallCaps() || wordSpacing() || letterSpacing()) in codePath()
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
DWebPopupMenuWin.cpp65 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); in setUpPlatformData()
128 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); in setUpPlatformData()
/external/webkit/Source/WebCore/platform/graphics/win/
DUniscribeController.cpp287 bool hasExtraSpacing = m_font.letterSpacing() || m_font.wordSpacing() || m_padding; in shapeAndPlaceItem()
310 if (advance && m_font.letterSpacing()) in shapeAndPlaceItem()
311 advance += m_font.letterSpacing(); in shapeAndPlaceItem()
/external/webkit/Source/WebCore/rendering/
DRenderCombineText.cpp112 …Font compressedFont = Font(description, style()->font().letterSpacing(), style()->font().wordSpaci… in combineText()
DRenderListBox.cpp115 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); in updateFromElement()
400 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); in paintItemForeground()
/external/webkit/Source/WebCore/platform/graphics/mac/
DComplexTextController.cpp418 …bool hasExtraSpacing = (m_font.letterSpacing() || m_font.wordSpacing() || m_expansion) && !m_run.s… in adjustGlyphsAndAdvances()
474 if (advance.width && m_font.letterSpacing()) in adjustGlyphsAndAdvances()
475 advance.width += m_font.letterSpacing(); in adjustGlyphsAndAdvances()
/external/webkit/Source/WebCore/bindings/objc/
DDOMCSS.h166 - (NSString *)letterSpacing;
167 - (void)setLetterSpacing:(NSString *)letterSpacing;
DDOMCSS.mm697 - (NSString *)letterSpacing
702 - (void)setLetterSpacing:(NSString *)letterSpacing
704 [self setProperty:@"letter-spacing" value:letterSpacing priority:@""];
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
DFontAndroid.cpp971 walker.setWordAndLetterSpacing(wordSpacing(), letterSpacing()); in selectionRectForComplexText()
1056 walker.setWordAndLetterSpacing(wordSpacing(), letterSpacing()); in drawComplexText()
1080 walker.setWordAndLetterSpacing(wordSpacing(), letterSpacing()); in floatWidthForComplexText()
1112 walker.setWordAndLetterSpacing(wordSpacing(), letterSpacing()); in offsetForPositionForComplexText()
/external/webkit/Source/WebCore/platform/win/
DPopupMenuWin.cpp325 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); in calculatePositionAndSize()
642 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); in paint()

12