Home | History | Annotate | Download | only in layout

Lines Matching refs:RunArray

41  * The <code>RunArray</code> class is a base class for building classes
48 class U_LAYOUTEX_API RunArray : public UObject
52 * Construct a <code>RunArray</code> object from a pre-existing
56 * valid until the <code>RunArray</code> object is destroyed.
62 inline RunArray(const le_int32 *limits, le_int32 count);
65 * Construct an empty <code>RunArray</code> object. Clients can add limit
75 RunArray(le_int32 initialCapacity);
82 virtual ~RunArray();
130 * If the <code>RunArray</code> object was created with a client-supplied
213 inline RunArray();
214 inline RunArray(const RunArray & /*other*/);
215 inline RunArray &operator=(const RunArray & /*other*/) { return *this; };
222 inline RunArray::RunArray()
228 inline RunArray::RunArray(const RunArray & /*other*/)
234 inline RunArray::RunArray(const le_int32 *limits, le_int32 count)
240 inline le_int32 RunArray::getCount() const
245 inline void RunArray::reset()
250 inline le_int32 RunArray::getLimit(le_int32 run) const
259 inline le_int32 RunArray::getLimit() const
270 class U_LAYOUTEX_API FontRuns : public RunArray
312 * of text. Use <code>RunArray::getLimit(run)</code> to get the corresponding
319 * @see RunArray::getLimit
329 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed.
384 : RunArray(0), fFonts(NULL)
390 : RunArray(0), fFonts(NULL)
396 : RunArray(limits, count), fFonts(fonts)
407 class U_LAYOUTEX_API LocaleRuns : public RunArray
449 * of text. Use <code>RunArray::getLimit(run)</code> to get the corresponding
456 * @see RunArray::getLimit
466 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed.
524 : RunArray(0), fLocales(NULL)
530 : RunArray(0), fLocales(NULL)
536 : RunArray
546 class U_LAYOUTEX_API ValueRuns : public RunArray
587 * of text. Use <code>RunArray::getLimit(run)</code> to get the corresponding
594 * @see RunArray::getLimit
604 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed.
658 : RunArray(0), fValues(NULL)
664 : RunArray(0), fValues(NULL)
670 : RunArray(limits, count), fValues(values)