Home | History | Annotate | Download | only in unicode

Lines Matching full:numbering

23  * Size of a numbering system name.
43 * Defines numbering systems. A numbering system describes the scheme by which
44 * numbers are to be presented to the end user. In its simplest form, a numbering
47 * positional numbering system with a specified radix (typically 10).
48 * More complicated numbering systems are algorithmic in nature, and require use
51 * numbering systems include Roman numerals, Chinese numerals, and Hebrew numerals.
52 * Formatting rules for many commonly used numbering systems are included in
53 * the ICU package, based on the numbering system rules defined in CLDR.
54 * Alternate numbering systems can be specified to a locale by using the
81 * Create the default numbering system associated with the specified locale.
89 * Create the default numbering system associated with the default locale.
95 * Create a numbering system using the specified radix, type, and description.
96 * @param radix The radix (base) for this numbering system.
97 * @param isAlgorithmic TRUE if the numbering system is algorithmic rather than numeric.
106 * Return a StringEnumeration over all the names of numbering systems known to ICU.
113 * Create a numbering system from one of the predefined numbering systems specified
117 * default, native, traditional, finance - do not identify specific numbering systems,
119 * defines how they are mapped to a specific numbering system such as "latn" or "hant".
120 * @param name The name of the numbering system.
128 * Returns the radix of this numbering system. Simple positional numbering systems
136 * Returns the name of this numbering system if it was created using one of the predefined names
138 * The predefined names are identical to the numbering system names as defined by
146 * Returns the description string of this numbering system. For simple
160 * Returns TRUE if the given numbering system is algorithmic
162 * @return TRUE if the numbering system is algorithmic.