/external/icu/icu4c/source/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/skia/src/ports/ |
SkFontHost_FreeType_common.h | 75 , fGlyphCount(-1) 97 mutable int fGlyphCount;
|
SkScalerContext_win_dw.h | 63 int fGlyphCount;
|
SkScalerContext_win_dw.cpp | 210 , fGlyphCount(-1) { 327 if (fGlyphCount < 0) { 328 fGlyphCount = fTypeface->fDWriteFontFace->GetGlyphCount(); 330 return fGlyphCount;
|
SkFontHost_mac.cpp | 671 * fGlyphCount - fFBoundingBoxesGlyphOffset GlyphRects which contain the bounds in FUnits 672 * (em space, y up) of glyphs with ids in the range [fFBoundingBoxesGlyphOffset, fGlyphCount). 717 uint16_t fGlyphCount; 763 fGlyphCount = SkToU16(numGlyphs); [all...] |
SkFontHost_win.cpp | 568 int fGlyphCount; 608 , fGlyphCount(-1) 770 if (fGlyphCount < 0) { 771 fGlyphCount = calculateGlyphCount( 774 return fGlyphCount; [all...] |
SkFontHost_FreeType.cpp | [all...] |
/external/icu/icu4c/source/layoutex/layout/ |
ParagraphLayout.h | 335 const le_int32 fGlyphCount; 628 le_int32 fGlyphCount; 692 return fGlyphCount; 726 : UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), fGlyphToCharMap(NULL) 732 : UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), fGlyphToCharMap(NULL) 739 : fFont(font), fDirection(direction), fGlyphCount(glyphCount),
|
/external/icu/icu4c/source/layoutex/ |
ParagraphLayout.cpp | 322 fGlyphToCharMap(NULL), fCharToMinGlyphMap(NULL), fCharToMaxGlyphMap(NULL), fGlyphWidths(NULL), fGlyphCount(0), 401 fGlyphCount = 0; 409 fStyleRunInfo[run].glyphBase = fGlyphCount; 427 fGlyphCount += fStyleRunInfo[run].glyphCount; 437 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount); 438 fGlyphToCharMap = LE_NEW_ARRAY(le_int32, fGlyphCount + 1); 495 fGlyphToCharMap[fGlyphCount] = fCharCount; 505 for (glyph = fGlyphCount - 1; glyph >= 0; glyph -= 1) { 511 fCharToMinGlyphMap[fCharCount] = fGlyphCount; 513 for (glyph = 0; glyph < fGlyphCount; glyph += 1) [all...] |