/external/icu4c/layoutex/ |
D | RunArrays.cpp | 23 fLimits = LE_NEW_ARRAY(le_int32, fCapacity); in RunArray() 52 fLimits = LE_NEW_ARRAY(le_int32, capacity); in init() 80 fFonts = LE_NEW_ARRAY(const LEFontInstance *, initialCapacity); in FontRuns() 95 fFonts = LE_NEW_ARRAY(const LEFontInstance *, capacity); in init() 132 fLocales = LE_NEW_ARRAY(const Locale *, initialCapacity); in LocaleRuns() 147 fLocales = LE_NEW_ARRAY(const Locale *, capacity); in init() 184 fValues = LE_NEW_ARRAY(le_int32, initialCapacity); in ValueRuns() 199 fValues = LE_NEW_ARRAY(le_int32, capacity); in init()
|
D | ParagraphLayout.cpp | 58 le_int32 *currentRun = LE_NEW_ARRAY(le_int32, styleCount); in StyleRuns() 66 fRunLimits = LE_NEW_ARRAY(le_int32, maxRunCount); in StyleRuns() 67 fStyleIndices = LE_NEW_ARRAY(le_int32, maxRunCount * styleCount); in StyleRuns() 332 fStyleRunLimits = LE_NEW_ARRAY(le_int32, fStyleRunCount); in ParagraphLayout() 333 fStyleIndices = LE_NEW_ARRAY(le_int32, fStyleRunCount * styleCount); in ParagraphLayout() 341 fStyleRunInfo = LE_NEW_ARRAY(StyleRunInfo, fStyleRunCount); in ParagraphLayout() 371 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount); in ParagraphLayout() 372 fGlyphToCharMap = LE_NEW_ARRAY(le_int32, fGlyphCount + 1); in ParagraphLayout() 373 fCharToMinGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout() 374 fCharToMaxGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout() [all …]
|
D | plruns.cpp | 331 Locale **locales = LE_NEW_ARRAY(Locale *, count); in getLocales() 350 fLocaleNames = LE_NEW_ARRAY(const char *, initialCapacity); in ULocRuns() 374 fLocaleNames = LE_NEW_ARRAY(const char *, capacity); in init()
|
/external/icu4c/layout/ |
D | MPreFixups.cpp | 22 fFixupData = LE_NEW_ARRAY(FixupData, charCount); in MPreFixups() 66 LEGlyphID *mpreSave = LE_NEW_ARRAY(LEGlyphID, mpreCount); in apply() 67 le_int32 *indexSave = LE_NEW_ARRAY(le_int32, mpreCount); in apply()
|
D | CanonShaping.cpp | 39 le_int32 *combiningClasses = LE_NEW_ARRAY(le_int32, charCount); in reorderMarks() 40 le_int32 *indices = LE_NEW_ARRAY(le_int32, charCount); in reorderMarks()
|
D | LEGlyphStorage.cpp | 78 fGlyphs = LE_NEW_ARRAY(LEGlyphID, fGlyphCount); in allocateGlyphArray() 87 fCharIndices = LE_NEW_ARRAY(le_int32, fGlyphCount); in allocateGlyphArray() 127 fPositions = LE_NEW_ARRAY(float, 2 * (fGlyphCount + 1)); in allocatePositions() 149 fAuxData = LE_NEW_ARRAY(le_uint32, fGlyphCount); in allocateAuxData()
|
D | ArabicLayoutEngine.cpp | 78 outChars = LE_NEW_ARRAY(LEUnicode, count); in characterProcessing() 154 LEUnicode *tempChars = LE_NEW_ARRAY(LEUnicode, tempGlyphCount); in glyphPostProcessing()
|
D | LookupProcessor.cpp | 143 lookupSelectArray = LE_NEW_ARRAY(FeatureMask, lookupListCount); in LookupProcessor() 173 lookupOrderArray = LE_NEW_ARRAY(le_uint16, featureReferences); in LookupProcessor()
|
D | ThaiLayoutEngine.cpp | 73 outChars = LE_NEW_ARRAY(LEUnicode, count * 2); in computeGlyphs()
|
D | LEInsertionList.cpp | 56 …InsertionRecord *insertion = (InsertionRecord *) LE_NEW_ARRAY(char, sizeof(InsertionRecord) + (cou… in insert()
|
D | KhmerLayoutEngine.cpp | 58 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
|
D | TibetanLayoutEngine.cpp | 64 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
|
D | IndicLayoutEngine.cpp | 91 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
|
D | LETypes.h | 294 #define LE_NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type)) macro
|
D | LayoutEngine.cpp | 214 reordered = LE_NEW_ARRAY(LEUnicode, count); in characterProcessing() 249 outChars = LE_NEW_ARRAY(LEUnicode, outCharCount); in characterProcessing()
|
D | HangulLayoutEngine.cpp | 223 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
|
/external/icu4c/samples/layout/ |
D | GDIFontInstance.cpp | 56 TTGlyphID *ttGlyphs = LE_NEW_ARRAY(TTGlyphID, count); in drawGlyphs() 57 le_int32 *dx = LE_NEW_ARRAY(le_int32, count); in drawGlyphs() 58 float *ps = LE_NEW_ARRAY(float, count * 2 + 2); in drawGlyphs() 326 result = LE_NEW_ARRAY(char, len); in readFontTable()
|
D | paragraph.cpp | 94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax); in Paragraph() 95 fParagraphLayout = LE_NEW_ARRAY(ParagraphLayout *, fParagraphMax); in Paragraph() 97 fChars = LE_NEW_ARRAY(LEUnicode, charCount + 1); in Paragraph()
|
D | GnomeFontInstance.cpp | 130 result = LE_NEW_ARRAY(FT_Byte, len); in readFontTable() 181 cairo_glyph_t *glyph_t = LE_NEW_ARRAY(cairo_glyph_t, glyphCount); in rasterizeGlyphs()
|
D | FontTableCache.cpp | 24 fTableCache = LE_NEW_ARRAY(FontTableCacheEntry, fTableCacheSize); in FontTableCache()
|
D | UnicodeReader.cpp | 107 charBuffer = LE_NEW_ARRAY(UChar, charCount + 1); in readFile()
|