HomeSort by relevance Sort by last modified time
    Searched refs:fGlyphWidths (Results 1 - 2 of 2) sorted by null

  /external/icu4c/layoutex/
ParagraphLayout.cpp 305 fGlyphToCharMap(NULL), fCharToMinGlyphMap(NULL), fCharToMaxGlyphMap(NULL), fGlyphWidths(NULL), fGlyphCount(0),
417 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount);
421 if ((fGlyphWidths == NULL) || (fGlyphToCharMap == NULL) ||
461 fGlyphWidths[glyphBase + glyph] = fStyleRunInfo[run].positions[glyph * 2 + 2] - fStyleRunInfo[run].positions[glyph * 2];
465 LXUtilities::reverse(&fGlyphWidths[glyphBase], glyphCount);
539 if (fGlyphWidths != NULL) {
540 LE_DELETE_ARRAY(fGlyphWidths);
541 fGlyphWidths = NULL;
640 while (glyph < fGlyphCount && widthSoFar + fGlyphWidths[glyph] <= width) {
641 widthSoFar += fGlyphWidths[glyph++]
    [all...]
  /external/icu4c/layoutex/layout/
ParagraphLayout.h 607 float *fGlyphWidths;

Completed in 46 milliseconds