Home | History | Annotate | Download | only in layoutex

Lines Matching refs:capacity

50 void RunArray::init(le_int32 capacity)
52 fLimits = LE_NEW_ARRAY(le_int32, capacity);
92 void FontRuns::init(le_int32 capacity)
94 RunArray::init(capacity);
95 fFonts = LE_NEW_ARRAY(const LEFontInstance *, capacity);
98 void FontRuns::grow(le_int32 capacity)
100 RunArray::grow(capacity);
101 fFonts = (const LEFontInstance **) LE_GROW_ARRAY(fFonts, capacity);
144 void LocaleRuns::init(le_int32 capacity)
146 RunArray::init(capacity);
147 fLocales = LE_NEW_ARRAY(const Locale *, capacity);
150 void LocaleRuns::grow(le_int32 capacity)
152 RunArray::grow(capacity);
153 fLocales = (const Locale **) LE_GROW_ARRAY(fLocales, capacity);
196 void ValueRuns::init(le_int32 capacity)
198 RunArray::init(capacity);
199 fValues = LE_NEW_ARRAY(le_int32, capacity);
202 void ValueRuns::grow(le_int32 capacity)
204 RunArray::grow(capacity);
205 fValues = (const le_int32 *) LE_GROW_ARRAY(fValues, capacity);