Home | History | Annotate | Download | only in layoutex

Lines Matching refs:fGlyphWidths

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++];