Home | History | Annotate | Download | only in layoutex

Lines Matching refs:fGlyphWidths

322                                    fGlyphToCharMap(NULL), fCharToMinGlyphMap(NULL), fCharToMaxGlyphMap(NULL), fGlyphWidths(NULL), fGlyphCount(0),
434 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount);
438 if ((fGlyphWidths == NULL) || (fGlyphToCharMap == NULL) ||
478 fGlyphWidths[glyphBase + glyph] = fStyleRunInfo[run].positions[glyph * 2 + 2] - fStyleRunInfo[run].positions[glyph * 2];
482 LXUtilities::reverse(&fGlyphWidths[glyphBase], glyphCount);
568 if (fGlyphWidths != NULL) {
569 LE_DELETE_ARRAY(fGlyphWidths);
570 fGlyphWidths = NULL;
674 while (glyph < fGlyphCount && widthSoFar + fGlyphWidths[glyph] <= width) {
675 widthSoFar += fGlyphWidths[glyph++];