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

  /external/icu4c/layoutex/
RunArrays.cpp 23 fLimits = LE_NEW_ARRAY(le_int32, fCapacity);
52 fLimits = LE_NEW_ARRAY(le_int32, capacity);
80 fFonts = LE_NEW_ARRAY(const LEFontInstance *, initialCapacity);
95 fFonts = LE_NEW_ARRAY(const LEFontInstance *, capacity);
132 fLocales = LE_NEW_ARRAY(const Locale *, initialCapacity);
147 fLocales = LE_NEW_ARRAY(const Locale *, capacity);
184 fValues = LE_NEW_ARRAY(le_int32, initialCapacity);
199 fValues = LE_NEW_ARRAY(le_int32, capacity);
ParagraphLayout.cpp 58 le_int32 *currentRun = LE_NEW_ARRAY(le_int32, styleCount);
66 fRunLimits = LE_NEW_ARRAY(le_int32, maxRunCount);
67 fStyleIndices = LE_NEW_ARRAY(le_int32, maxRunCount * styleCount);
363 fStyleRunLimits = LE_NEW_ARRAY(le_int32, fStyleRunCount);
364 fStyleIndices = LE_NEW_ARRAY(le_int32, fStyleRunCount * styleCount);
376 fStyleRunInfo = LE_NEW_ARRAY(StyleRunInfo, fStyleRunCount);
434 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount);
435 fGlyphToCharMap = LE_NEW_ARRAY(le_int32, fGlyphCount + 1);
436 fCharToMinGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1);
437 fCharToMaxGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1)
    [all...]
plruns.cpp 331 Locale **locales = LE_NEW_ARRAY(Locale *, count);
350 fLocaleNames = LE_NEW_ARRAY(const char *, initialCapacity);
374 fLocaleNames = LE_NEW_ARRAY(const char *, capacity);
  /external/icu4c/layout/
MPreFixups.cpp 22 fFixupData = LE_NEW_ARRAY(FixupData, charCount);
70 LEGlyphID *mpreSave = LE_NEW_ARRAY(LEGlyphID, mpreCount);
71 le_int32 *indexSave = LE_NEW_ARRAY(le_int32, mpreCount);
CanonShaping.cpp 39 le_int32 *combiningClasses = LE_NEW_ARRAY(le_int32, charCount);
40 le_int32 *indices = LE_NEW_ARRAY(le_int32, charCount);
KhmerLayoutEngine.cpp 58 outChars = LE_NEW_ARRAY(LEUnicode, worstCase);
LEInsertionList.cpp 60 InsertionRecord *insertion = (InsertionRecord *) LE_NEW_ARRAY(char, sizeof(InsertionRecord) + (count - ANY_NUMBER) * sizeof (LEGlyphID));
TibetanLayoutEngine.cpp 64 outChars = LE_NEW_ARRAY(LEUnicode, worstCase);
ThaiLayoutEngine.cpp 75 outChars = LE_NEW_ARRAY(LEUnicode, count * 2);
LEGlyphStorage.cpp 78 fGlyphs = LE_NEW_ARRAY(LEGlyphID, fGlyphCount);
87 fCharIndices = LE_NEW_ARRAY(le_int32, fGlyphCount);
137 fPositions = LE_NEW_ARRAY(float, 2 * (fGlyphCount + 1));
159 fAuxData = LE_NEW_ARRAY(le_uint32, fGlyphCount);
ArabicLayoutEngine.cpp 78 outChars = LE_NEW_ARRAY(LEUnicode, count);
154 LEUnicode *tempChars = LE_NEW_ARRAY(LEUnicode, tempGlyphCount);
LookupProcessor.cpp 169 lookupSelectArray = LE_NEW_ARRAY(FeatureMask, lookupListCount);
212 lookupOrderArray = LE_NEW_ARRAY(le_uint16, featureReferences);
IndicLayoutEngine.cpp 101 outChars = LE_NEW_ARRAY(LEUnicode, worstCase);
LETypes.h 295 #define LE_NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type))
339 #define LE_NEW_ARRAY(type, count) (type *) malloc((count) * sizeof(type))
LayoutEngine.cpp 231 reordered = LE_NEW_ARRAY(LEUnicode, count);
281 outChars = LE_NEW_ARRAY(LEUnicode, outCharCount);
HangulLayoutEngine.cpp 223 outChars = LE_NEW_ARRAY(LEUnicode, worstCase);
OpenTypeLayoutEngine.cpp 196 outChars = LE_NEW_ARRAY(LEUnicode, count);
  /external/icu4c/samples/layout/
FontTableCache.cpp 24 fTableCache = LE_NEW_ARRAY(FontTableCacheEntry, fTableCacheSize);
GnomeFontInstance.cpp 130 result = LE_NEW_ARRAY(FT_Byte, len);
181 cairo_glyph_t *glyph_t = LE_NEW_ARRAY(cairo_glyph_t, glyphCount);
UnicodeReader.cpp 107 charBuffer = LE_NEW_ARRAY(UChar, charCount + 1);
paragraph.cpp 94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax);
95 fParagraphLayout = LE_NEW_ARRAY(ParagraphLayout *, fParagraphMax);
97 fChars = LE_NEW_ARRAY(LEUnicode, charCount + 1);
GDIFontInstance.cpp 56 TTGlyphID *ttGlyphs = LE_NEW_ARRAY(TTGlyphID, count);
57 le_int32 *dx = LE_NEW_ARRAY(le_int32, count);
58 float *ps = LE_NEW_ARRAY(float, count * 2 + 2);
350 result = LE_NEW_ARRAY(char, len);

Completed in 295 milliseconds