Lines Matching refs:LE_NEW_ARRAY
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()
363 fStyleRunLimits = LE_NEW_ARRAY(le_int32, fStyleRunCount); in ParagraphLayout()
364 fStyleIndices = LE_NEW_ARRAY(le_int32, fStyleRunCount * styleCount); in ParagraphLayout()
376 fStyleRunInfo = LE_NEW_ARRAY(StyleRunInfo, fStyleRunCount); in ParagraphLayout()
434 fGlyphWidths = LE_NEW_ARRAY(float, fGlyphCount); in ParagraphLayout()
435 fGlyphToCharMap = LE_NEW_ARRAY(le_int32, fGlyphCount + 1); in ParagraphLayout()
436 fCharToMinGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout()
437 fCharToMaxGlyphMap = LE_NEW_ARRAY(le_int32, fCharCount + 1); in ParagraphLayout()
451 fStyleRunInfo[run].glyphs = LE_NEW_ARRAY(LEGlyphID, glyphCount); in ParagraphLayout()
452 fStyleRunInfo[run].positions = LE_NEW_ARRAY(float, glyphCount * 2 + 2); in ParagraphLayout()
712 fEmbeddingLevels = LE_NEW_ARRAY(UBiDiLevel, fCharCount); in computeLevels()
786 le_int32 *styleRunLimits = LE_NEW_ARRAY(le_int32, styleRunCount); in computeSubFonts()
787 le_int32 *styleIndices = LE_NEW_ARRAY(le_int32, styleRunCount * styleCount); in computeSubFonts()
1098 LEGlyphID *glyphs = LE_NEW_ARRAY(LEGlyphID, glyphCount); in appendRun()
1099 float *positions = LE_NEW_ARRAY(float, glyphCount * 2 + 2); in appendRun()
1100 le_int32 *glyphToCharMap = LE_NEW_ARRAY(le_int32, glyphCount); in appendRun()
1224 fRuns = LE_NEW_ARRAY(ParagraphLayout::VisualRun *, fRunCapacity); in append()