Home
last modified time | relevance | path

Searched refs:fGlyphWidths (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp324 …hToCharMap(NULL), fCharToMinGlyphMap(NULL), fCharToMaxGlyphMap(NULL), fGlyphWidths(NULL), fGlyphCo… in ParagraphLayout()
439 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount); in ParagraphLayout()
443 if ((fGlyphWidths == NULL) || (fGlyphToCharMap == NULL) || in ParagraphLayout()
483fGlyphWidths[glyphBase + glyph] = fStyleRunInfo[run].positions[glyph * 2 + 2] - fStyleRunInfo[run]… in ParagraphLayout()
487 LXUtilities::reverse(&fGlyphWidths[glyphBase], glyphCount); in ParagraphLayout()
573 if (fGlyphWidths != NULL) { in ~ParagraphLayout()
574 LE_DELETE_ARRAY(fGlyphWidths); in ~ParagraphLayout()
575 fGlyphWidths = NULL; in ~ParagraphLayout()
679 while (glyph < fGlyphCount && widthSoFar + fGlyphWidths[glyph] <= width) { in nextLine()
680 widthSoFar += fGlyphWidths[glyph++]; in nextLine()
/external/icu/icu4c/source/layoutex/layout/
DParagraphLayout.h627 float *fGlyphWidths; variable