Searched refs:fGlyphCount (Results 1 - 8 of 8) sorted by relevance

/external/icu4c/layout/
H A DLEGlyphStorage.cpp22 : fGlyphCount(0), fGlyphs(NULL), fCharIndices(NULL), fPositions(NULL),
35 fGlyphCount = 0;
77 fGlyphCount = initialGlyphCount;
78 fGlyphs = LE_NEW_ARRAY(LEGlyphID, fGlyphCount);
87 fCharIndices = LE_NEW_ARRAY(le_int32, fGlyphCount);
97 le_int32 i, count = fGlyphCount, dir = 1, out = 0;
100 out = fGlyphCount - 1;
137 fPositions = LE_NEW_ARRAY(float, 2 * (fGlyphCount + 1));
144 return fGlyphCount;
159 fAuxData = LE_NEW_ARRAY(le_uint32, fGlyphCount);
[all...]
H A DGlyphPositionAdjustments.cpp20 : fGlyphCount(glyphCount), fEntryExitPoints(NULL), fAdjustments(NULL)
51 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount);
58 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount);
65 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount);
72 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount);
79 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount);
90 le_int32 start = 0, end = fGlyphCount, dir = 1;
101 start = fGlyphCount - 1;
H A DLEGlyphStorage.h42 le_int32 fGlyphCount; member in class:LEGlyphStorage
535 return fGlyphCount;
H A DGlyphPositionAdjustments.h95 le_int32 fGlyphCount; member in class:GlyphPositionAdjustments
/external/icu4c/layoutex/layout/
H A DParagraphLayout.h328 const le_int32 fGlyphCount; member in class:ParagraphLayout::VisualRun
618 le_int32 fGlyphCount; member in class:ParagraphLayout
682 return fGlyphCount;
716 : UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), fGlyphToCharMap(NULL)
722 : UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), fGlyphToCharMap(NULL)
729 : fFont(font), fDirection(direction), fGlyphCount(glyphCount),
/external/icu4c/layoutex/
H A DParagraphLayout.cpp322 fGlyphToCharMap(NULL), fCharToMinGlyphMap(NULL), fCharToMaxGlyphMap(NULL), fGlyphWidths(NULL), fGlyphCount(0),
398 fGlyphCount = 0;
406 fStyleRunInfo[run].glyphBase = fGlyphCount;
424 fGlyphCount += fStyleRunInfo[run].glyphCount;
434 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount);
435 fGlyphToCharMap = LE_NEW_ARRAY(le_int32, fGlyphCount + 1);
492 fGlyphToCharMap[fGlyphCount] = fCharCount;
502 for (glyph = fGlyphCount - 1; glyph >= 0; glyph -= 1) {
508 fCharToMinGlyphMap[fCharCount] = fGlyphCount;
510 for (glyph = 0; glyph < fGlyphCount; glyp
[all...]
/external/skia/src/ports/
H A DSkFontHost_win.cpp436 int fGlyphCount; member in class:SkScalerContext_Windows
481 , fGlyphCount(-1) {
550 if (fGlyphCount < 0) {
551 fGlyphCount = calculateGlyphCount(fDDC);
553 return fGlyphCount;
H A DSkFontHost_mac_coretext.cpp610 uint16_t fGlyphCount; member in class:SkScalerContext_Mac
688 fGlyphCount = SkToU16(numGlyphs);
857 fAdjustStart = fGlyphCount; // fallback for all fonts
872 * value is >= fAdjustStart. (called only if fAdjustStart < fGlyphCount).
897 CFIndex entries = fGlyphCount - fAdjustStart;
924 return(fGlyphCount);
1028 if (cgGlyph < fGlyphCount && cgGlyph >= getAdjustStart()

Completed in 107 milliseconds