Home
last modified time | relevance | path

Searched refs:fGlyphCount (Results 1 – 12 of 12) sorted by relevance

/external/icu/icu4c/source/layout/
DLEGlyphStorage.cpp22 : fGlyphCount(0), fGlyphs(NULL), fCharIndices(NULL), fPositions(NULL), in LEGlyphStorage()
35 fGlyphCount = 0; in reset()
77 fGlyphCount = initialGlyphCount; in allocateGlyphArray()
78 fGlyphs = LE_NEW_ARRAY(LEGlyphID, fGlyphCount); in allocateGlyphArray()
87 fCharIndices = LE_NEW_ARRAY(le_int32, fGlyphCount); in allocateGlyphArray()
97 le_int32 i, count = fGlyphCount, dir = 1, out = 0; in allocateGlyphArray()
100 out = fGlyphCount - 1; in allocateGlyphArray()
137 fPositions = LE_NEW_ARRAY(float, 2 * (fGlyphCount + 1)); in allocatePositions()
144 return fGlyphCount; in allocatePositions()
159 fAuxData = LE_NEW_ARRAY(le_uint32, fGlyphCount); in allocateAuxData()
[all …]
DGlyphPositionAdjustments.cpp20 : fGlyphCount(glyphCount), fEntryExitPoints(NULL), fAdjustments(NULL) in GlyphPositionAdjustments()
51 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount); in clearEntryPoint()
58 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount); in clearExitPoint()
65 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount); in setEntryPoint()
72 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount); in setExitPoint()
79 CHECK_ALLOCATE_ARRAY(fEntryExitPoints, EntryExitPoint, fGlyphCount); in setCursiveGlyph()
90 le_int32 start = 0, end = fGlyphCount, dir = 1; in applyCursiveAdjustments()
101 start = fGlyphCount - 1; in applyCursiveAdjustments()
DLEGlyphStorage.h42 le_int32 fGlyphCount;
535 return fGlyphCount; in getGlyphCount()
DGlyphPositionAdjustments.h95 le_int32 fGlyphCount; variable
/external/icu/icu4c/source/layoutex/layout/
DParagraphLayout.h335 const le_int32 fGlyphCount; variable
628 le_int32 fGlyphCount; variable
692 return fGlyphCount; in getGlyphCount()
726 …: UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), … in VisualRun()
732 …: UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), … in VisualRun()
739 : fFont(font), fDirection(direction), fGlyphCount(glyphCount), in VisualRun()
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp322 …rMap(NULL), fCharToMinGlyphMap(NULL), fCharToMaxGlyphMap(NULL), fGlyphWidths(NULL), fGlyphCount(0), in ParagraphLayout()
401 fGlyphCount = 0; in ParagraphLayout()
409 fStyleRunInfo[run].glyphBase = fGlyphCount; in ParagraphLayout()
427 fGlyphCount += fStyleRunInfo[run].glyphCount; in ParagraphLayout()
437 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount); in ParagraphLayout()
438 fGlyphToCharMap = LE_NEW_ARRAY(le_int32, fGlyphCount + 1); in ParagraphLayout()
495 fGlyphToCharMap[fGlyphCount] = fCharCount; in ParagraphLayout()
505 for (glyph = fGlyphCount - 1; glyph >= 0; glyph -= 1) { in ParagraphLayout()
511 fCharToMinGlyphMap[fCharCount] = fGlyphCount; in ParagraphLayout()
513 for (glyph = 0; glyph < fGlyphCount; glyph += 1) { in ParagraphLayout()
[all …]
/external/skia/src/ports/
DSkFontHost_FreeType_common.h75 , fGlyphCount(-1) in SkTypeface_FreeType()
97 mutable int fGlyphCount;
DSkScalerContext_win_dw.h63 int fGlyphCount; variable
DSkScalerContext_win_dw.cpp210 , fGlyphCount(-1) { in SkScalerContext_DW()
327 if (fGlyphCount < 0) { in generateGlyphCount()
328 fGlyphCount = fTypeface->fDWriteFontFace->GetGlyphCount(); in generateGlyphCount()
330 return fGlyphCount; in generateGlyphCount()
DSkFontHost_mac.cpp717 uint16_t fGlyphCount; member in SkScalerContext_Mac
763 fGlyphCount = SkToU16(numGlyphs); in SkScalerContext_Mac()
955 fFBoundingBoxesGlyphOffset = fGlyphCount; // fallback for all fonts in getFBoundingBoxesGlyphOffset()
984 uint16_t entries = fGlyphCount - fFBoundingBoxesGlyphOffset; in generateBBoxes()
1003 return fGlyphCount; in generateGlyphCount()
1075 (cgGlyph < fGlyphCount && cgGlyph >= getFBoundingBoxesGlyphOffset() && generateBBoxes())) in generateMetrics()
DSkFontHost_win.cpp568 int fGlyphCount; member in SkScalerContext_GDI
608 , fGlyphCount(-1) in SkScalerContext_GDI()
770 if (fGlyphCount < 0) { in generateGlyphCount()
771 fGlyphCount = calculateGlyphCount( in generateGlyphCount()
774 return fGlyphCount; in generateGlyphCount()
DSkFontHost_FreeType.cpp1517 if (fGlyphCount < 0) { in onCountGlyphs()
1521 fGlyphCount = face ? face->num_glyphs : 0; in onCountGlyphs()
1523 return fGlyphCount; in onCountGlyphs()