Home
last modified time | relevance | path

Searched refs:widthSoFar (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXInlineTextBox.cpp98 float widthSoFar = 0; in textCharacterOffsets() local
100 widthSoFar += widths[i]; in textCharacterOffsets()
101 offsets[i] = lroundf(widthSoFar); in textCharacterOffsets()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFont.cpp750 float widthSoFar = 0; in drawGlyphBuffer() local
751 widthSoFar += glyphBuffer.advanceAt(0).width(); in drawGlyphBuffer()
768 widthSoFar += glyphBuffer.advanceAt(nextGlyph).width(); in drawGlyphBuffer()
778 return widthSoFar; in drawGlyphBuffer()
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp675 float widthSoFar = 0; in nextLine() local
677 while (glyph < fGlyphCount && widthSoFar + fGlyphWidths[glyph] <= width) { in nextLine()
678 widthSoFar += fGlyphWidths[glyph++]; in nextLine()
688 if (widthSoFar == 0 && glyph < fGlyphCount) { in nextLine()