Searched defs:wordSpacing (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebFontDescription.h80 , wordSpacing(0)
93 short wordSpacing; member in struct:blink::WebFontDescription
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontDescription.h158 float wordSpacing() const { return m_wordSpacing; } function in class:blink::FontDescription
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h562 float wordSpacing = m_currentStyle->wordSpacing(); local
597 font.width(constructTextRun(renderText, font, &space, 1, style, style->direction())) + wordSpacing
673 applyWordSpacing = wordSpacing && m_currentCharacterIsSpace;
683 float charWidth = textWidth(renderText, m_current.offset(), 1, font, m_width.currentWidth(), isFixedPitch, m_collapseWhiteSpace, &wordMeasurement.fallbackFonts) + (applyWordSpacing ? wordSpacing : 0);
753 lastSpaceWordSpacing = applyWordSpacing ? wordSpacing : 0;
754 wordSpacingForWordMeasurement = (applyWordSpacing && wordMeasurement.width) ? wordSpacing : 0;
776 lastSpaceWordSpacing = applyWordSpacing ? wordSpacing : 0;
777 wordSpacingForWordMeasurement = (applyWordSpacing && wordMeasurements.last().width) ? wordSpacing : 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp1145 float RenderStyle::wordSpacing() const { return fontDescription().wordSpacing(); } function in class:blink::RenderStyle
1188 void RenderStyle::setWordSpacing(float wordSpacing) argument
1192 desc.setWordSpacing(wordSpacing);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.cpp749 w += f.fontDescription().wordSpacing();
814 maxWidth += font.fontDescription().wordSpacing();
913 float wordSpacing = styleToUse->wordSpacing(); local
1036 cachedWordTrailingSpaceWidth[textDirection] = f.width(constructTextRun(this, f, &space, 1, styleToUse, textDirection)) + wordSpacing;
1064 // Add in wordSpacing to our currMaxWidth, but not if this is the last word on a line or the
1066 if (wordSpacing && (isSpace || isCollapsibleWhiteSpace) && !containsOnlyWhitespace(j, len-j))
1067 currMaxWidth += wordSpacing;
1129 currMaxWidth += wordSpacing;

Completed in 1815 milliseconds