ICU 64.2
64.2
|
The ValueRuns
class associates integer values with runs of text.
More...
#include <RunArrays.h>
Public Member Functions | |
ValueRuns (const le_int32 *values, const le_int32 *limits, le_int32 count) | |
Construct a ValueRuns object from pre-existing arrays of values and limit indices. More... | |
ValueRuns (le_int32 initialCapacity) | |
Construct an empty ValueRuns object. More... | |
virtual | ~ValueRuns () |
The destructor; virtual so that subclass destructors are invoked as well. More... | |
le_int32 | getValue (le_int32 run) const |
Get the integer value assoicated with the given run of text. More... | |
le_int32 | add (le_int32 value, le_int32 limit) |
Add an integer value and limit index pair to the data arrays and return the run index where the data was stored. More... | |
virtual UClassID | getDynamicClassID () const |
ICU "poor man's RTTI", returns a UClassID for the actual class. More... | |
Public Member Functions inherited from icu::RunArray | |
RunArray (const le_int32 *limits, le_int32 count) | |
Construct a RunArray object from a pre-existing array of limit indices. More... | |
RunArray (le_int32 initialCapacity) | |
Construct an empty RunArray object. More... | |
virtual | ~RunArray () |
The destructor; virtual so that subclass destructors are invoked as well. More... | |
le_int32 | getCount () const |
Get the number of entries in the limit indices array. More... | |
void | reset () |
Reset the limit indices array. More... | |
le_int32 | getLimit () const |
Get the last limit index. More... | |
le_int32 | getLimit (le_int32 run) const |
Get the limit index for a particular run of text. More... | |
le_int32 | add (le_int32 limit) |
Add a limit index to the limit indices array and return the run index where it was stored. More... | |
Public Member Functions inherited from icu::UObject | |
virtual | ~UObject () |
Destructor. More... | |
Static Public Member Functions | |
static UClassID | getStaticClassID () |
ICU "poor man's RTTI", returns a UClassID for this class. More... | |
Static Public Member Functions inherited from icu::RunArray | |
static UClassID | getStaticClassID () |
ICU "poor man's RTTI", returns a UClassID for this class. More... | |
Protected Member Functions | |
virtual void | init (le_int32 capacity) |
Create a data array with the given initial size. More... | |
virtual void | grow (le_int32 capacity) |
Grow a data array to the given initial size. More... | |
Additional Inherited Members | |
Protected Attributes inherited from icu::RunArray | |
le_bool | fClientArrays |
Set by the constructors to indicate whether or not the client supplied the data arrays. More... | |
The ValueRuns
class associates integer values with runs of text.
Definition at line 548 of file RunArrays.h.
|
inline |
Construct a ValueRuns
object from pre-existing arrays of values and limit indices.
values | is the address of an array of integer. This array must remain valid until the ValueRuns object is destroyed. |
limits | is the address of an array of limit indices. This array must remain valid until the ValueRuns object is destroyed. |
count | is the number of entries in the two arrays. |
Definition at line 671 of file RunArrays.h.
References U_NAMESPACE_END.
icu::ValueRuns::ValueRuns | ( | le_int32 | initialCapacity | ) |
|
virtual |
The destructor; virtual so that subclass destructors are invoked as well.
le_int32 icu::ValueRuns::add | ( | le_int32 | value, |
le_int32 | limit | ||
) |
Add an integer value and limit index pair to the data arrays and return the run index where the data was stored.
This method calls RunArray::add(limit)
which will create or grow the arrays as needed.
If the ValueRuns
object was created with a client-supplied font and limit indices arrays, this method will return a run index of -1.
Subclasses should not override this method. Rather they should provide a new add
method which takes an integer value and a limit index along with whatever other data they implement. The new add
method should first call this method to grow the font and limit indices arrays, and use the returned run index to store data their own arrays.
value | is the integer value to add |
limit | is the limit index to add |
|
inlinevirtual |
ICU "poor man's RTTI", returns a UClassID for the actual class.
Reimplemented from icu::RunArray.
Definition at line 638 of file RunArrays.h.
References icu::LocaleRuns::getStaticClassID(), icu::LocaleRuns::grow(), icu::LocaleRuns::init(), and NULL.
|
inlinestatic |
ICU "poor man's RTTI", returns a UClassID for this class.
Definition at line 631 of file RunArrays.h.
le_int32 icu::ValueRuns::getValue | ( | le_int32 | run | ) | const |
Get the integer value assoicated with the given run of text.
Use RunArray::getLimit(run)
to get the corresponding limit index.
run | is the index into the font and limit indices arrays. |
|
protectedvirtual |
Grow a data array to the given initial size.
This method will be called by the add
method if the limit indices array is full. Subclasses which override this method must also call it from the overriding method to grow the limit indices array.
capacity | is the initial size of the data array. |
Reimplemented from icu::RunArray.
|
protectedvirtual |
Create a data array with the given initial size.
This method will be called by the add
method if there is no limit indices array. Subclasses which override this method must also call it from the overriding method to create the limit indices array.
capacity | is the initial size of the data array. |
Reimplemented from icu::RunArray.