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

  /external/icu4c/layout/
LEGlyphStorage.cpp 22 : 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...]
GlyphPositionAdjustments.cpp 20 : 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;
LEGlyphStorage.h 42 le_int32 fGlyphCount;
535 return fGlyphCount;
GlyphPositionAdjustments.h 95 le_int32 fGlyphCount;
  /external/icu4c/layoutex/layout/
ParagraphLayout.h 328 const le_int32 fGlyphCount;
618 le_int32 fGlyphCount;
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/
ParagraphLayout.cpp 322 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; glyph += 1)
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 436 int fGlyphCount;
481 , fGlyphCount(-1) {
550 if (fGlyphCount < 0) {
551 fGlyphCount = calculateGlyphCount(fDDC);
553 return fGlyphCount;
    [all...]
SkFontHost_mac_coretext.cpp 610 uint16_t fGlyphCount;
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);
    [all...]

Completed in 443 milliseconds