Home
last modified time | relevance | path

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

/external/skia/tools/shape/
DSkShaper_harfbuzz.cpp630 SkScalar widthSoFar = 0; in shape() local
641 if (widthSoFar + glyphWidth < width) { in shape()
642 widthSoFar += glyphWidth; in shape()
648 if (widthSoFar == 0) { in shape()
661 widthSoFar = 0; in shape()
/external/skqp/tools/shape/
DSkShaper_harfbuzz.cpp625 SkScalar widthSoFar = 0; in shape() local
636 if (widthSoFar + glyphWidth < width) { in shape()
637 widthSoFar += glyphWidth; in shape()
643 if (widthSoFar == 0) { in shape()
656 widthSoFar = 0; in shape()
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp677 float widthSoFar = 0; in nextLine() local
679 while (glyph < fGlyphCount && widthSoFar + fGlyphWidths[glyph] <= width) { in nextLine()
680 widthSoFar += fGlyphWidths[glyph++]; in nextLine()
690 if (widthSoFar == 0 && glyph < fGlyphCount) { in nextLine()