HomeSort by relevance Sort by last modified time
    Searched refs:fGlyphCount (Results 1 - 16 of 16) 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/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType_common.h 52 , fGlyphCount(-1)
74 mutable int fGlyphCount;
SkFontHost_mac.cpp 683 * fGlyphCount - fFBoundingBoxesGlyphOffset GlyphRects which contain the bounds in FUnits
684 * (em space, y up) of glyphs with ids in the range [fFBoundingBoxesGlyphOffset, fGlyphCount).
715 uint16_t fGlyphCount;
738 fGlyphCount = SkToU16(numGlyphs);
896 fFBoundingBoxesGlyphOffset = fGlyphCount; // fallback for all fonts
925 uint16_t entries = fGlyphCount - fFBoundingBoxesGlyphOffset;
    [all...]
SkFontHost_win.cpp 584 int fGlyphCount;
625 , fGlyphCount(-1)
817 if (fGlyphCount < 0) {
818 fGlyphCount = calculateGlyphCount(
821 return fGlyphCount;
    [all...]
SkFontHost_win_dw.cpp 524 int fGlyphCount;
736 , fGlyphCount(-1) {
753 if (fGlyphCount < 0) {
754 fGlyphCount = fTypeface->fDWriteFontFace->GetGlyphCount();
756 return fGlyphCount;
    [all...]
SkFontHost_FreeType.cpp     [all...]
  /external/skia/src/ports/
SkFontHost_FreeType_common.h 52 , fGlyphCount(-1)
74 mutable int fGlyphCount;
SkFontHost_mac.cpp 683 * fGlyphCount - fFBoundingBoxesGlyphOffset GlyphRects which contain the bounds in FUnits
684 * (em space, y up) of glyphs with ids in the range [fFBoundingBoxesGlyphOffset, fGlyphCount).
715 uint16_t fGlyphCount;
738 fGlyphCount = SkToU16(numGlyphs);
896 fFBoundingBoxesGlyphOffset = fGlyphCount; // fallback for all fonts
925 uint16_t entries = fGlyphCount - fFBoundingBoxesGlyphOffset;
    [all...]
SkFontHost_win.cpp 584 int fGlyphCount;
625 , fGlyphCount(-1)
817 if (fGlyphCount < 0) {
818 fGlyphCount = calculateGlyphCount(
821 return fGlyphCount;
    [all...]
SkFontHost_win_dw.cpp 524 int fGlyphCount;
736 , fGlyphCount(-1) {
753 if (fGlyphCount < 0) {
754 fGlyphCount = fTypeface->fDWriteFontFace->GetGlyphCount();
756 return fGlyphCount;
    [all...]
SkFontHost_FreeType.cpp     [all...]
  /external/icu4c/layoutex/layout/
ParagraphLayout.h 328 const le_int32 fGlyphCount;
621 le_int32 fGlyphCount;
685 return fGlyphCount;
719 : UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), fGlyphToCharMap(NULL)
725 : UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), fGlyphToCharMap(NULL)
732 : 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...]

Completed in 209 milliseconds