Lines Matching full:limits
57 * @param limits is an array of limit indices. This array must remain
64 inline RunArray(const le_int32 *limits, le_int32 count);
236 inline RunArray::RunArray(const le_int32 *limits, le_int32 count)
237 : UObject(), fClientArrays(TRUE), fLimits(limits), fCount(count), fCapacity(count)
283 * @param limits is the address of an array of limit indices. This array must remain valid until
290 inline FontRuns(const LEFontInstance **fonts, const le_int32 *limits, le_int32 count);
397 inline FontRuns::FontRuns(const LEFontInstance **fonts, const le_int32 *limits, le_int32 count)
398 : RunArray(limits, count), fFonts(fonts)
420 * @param limits is the address of an array of limit indices. This array must remain valid until the
427 inline LocaleRuns(const Locale **locales, const le_int32 *limits, le_int32 count);
537 limits, le_int32 count)
538 : RunArray(limits, count), fLocales(locales)
558 * @param limits is the address of an array of limit indices. This array must remain valid until
565 inline ValueRuns(const le_int32 *values, const le_int32 *limits, le_int32 count);
671 inline ValueRuns::ValueRuns(const le_int32 *values, const le_int32 *limits, le_int32 count)
672 : RunArray(limits, count), fValues(values)