Lines Matching full:base
98 * <p>In these rules, the <em>base value</em> is spelled out explicitly and set off from the
100 * to all numbers from its own base value to one less than the next rule's base value. The
116 * both substitutions depends on the rule's base value. The base value determines the rule's <em>divisor,</em>
117 * which is the highest power of 10 that is less than or equal to the base value (the user
131 * base value is a higher power of 10, changing the rule's divisor. This rule can actually be
139 * <p>Commas, periods, and spaces can be used in the base values to improve legibility and
141 * "overflow rule," applying to everything from its base value on up, and often (as
153 * <td>[the rule whose base value is 1,000 is applicable to 25,340]</td>
184 * where the base value would be. This rule is used to format all negative numbers. the
226 * Internally, every rule has a base value, a divisor, rule text, and zero, one, or two <em>substitutions.</em>
236 * <td><em>bv</em> specifies the rule's base value. <em>bv</em> is a decimal
239 * the base value.</td>
243 * <td><em>bv</em> specifies the rule's base value. The rule's divisor is the
244 * highest power of <em>rad</em> less than or equal to the base value.</td>
248 * <td><em>bv</em> specifies the rule's base value. To calculate the divisor,
250 * result less than or equal to the base value. Every > character after the base value
256 * <td><em>bv</em> specifies the rule's base value. To calculate the divisor,
258 * yields a result less than or equal to the base value. Every > character after the radix
280 * <td>If the rule's rule descriptor is left out, the base value is one plus the
281 * preceding rule's base value (or zero if this is the first rule in the list) in a normal
282 * rule set. In a fraction rule set, the base value is the same as the preceding rule's
283 * base value.</td>
304 * <li>Binary-search the rule list for the rule with the highest base value less than or equal
305 * to the number. If that rule has two substitutions, its base value is not an even multiple
315 * between 0 and 1) by the rule's base value. Keep track of the distance between the result
319 * to try each rule's base value as a possible denominator of a fraction. Whichever
321 * the rule following the matching rule has the same base value, use it if the numerator of
395 * <td>Multiply the number by the rule's base value and format the result.</td>
432 * <td>Omit the optional text if multiplying the number by the rule's base value yields 1.</td>
1010 // Don't use Format:: - use immediate base class only,
1011 // in case immediate base modifies behavior later.