• Home
  • Raw
  • Download

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()
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()
383 fStyleRunInfo[run].glyphs = LE_NEW_ARRAY(LEGlyphID, glyphCount); in ParagraphLayout()
384 fStyleRunInfo[run].positions = LE_NEW_ARRAY(float, glyphCount * 2 + 2); in ParagraphLayout()
608 fEmbeddingLevels = LE_NEW_ARRAY(UBiDiLevel, fCharCount); in computeLevels()
682 le_int32 *styleRunLimits = LE_NEW_ARRAY(le_int32, styleRunCount); in computeSubFonts()
683 le_int32 *styleIndices = LE_NEW_ARRAY(le_int32, styleRunCount * styleCount); in computeSubFonts()
953 LEGlyphID *glyphs = LE_NEW_ARRAY(LEGlyphID, glyphCount); in appendRun()
954 float *positions = LE_NEW_ARRAY(float, glyphCount * 2 + 2); in appendRun()
955 le_int32 *glyphToCharMap = LE_NEW_ARRAY(le_int32, glyphCount); in appendRun()
1079 fRuns = LE_NEW_ARRAY(ParagraphLayout::VisualRun *, fRunCapacity); in append()