Lines Matching refs:number

142  *         <td><a href="#number">Number</a>
148 * <td><a href="#number">Number</a>
154 * <td><a href="#number">Number</a>
160 * <td><a href="#number">Number</a>
166 * <td><a href="#number">Number</a>
177 * <td>Day number of week (1 = Monday, ..., 7 = Sunday)
178 * <td><a href="#number">Number</a>
190 * <td><a href="#number">Number</a>
196 * <td><a href="#number">Number</a>
202 * <td><a href="#number">Number</a>
208 * <td><a href="#number">Number</a>
214 * <td><a href="#number">Number</a>
220 * <td><a href="#number">Number</a>
226 * <td><a href="#number">Number</a>
249 * Pattern letters are usually repeated, as their number determines the
253 * For formatting, if the number of pattern letters is 4 or more,
256 * For parsing, both forms are accepted, independent of the number
258 * <li><strong><a name="number">Number:</a></strong>
259 * For formatting, the number of pattern letters is the minimum
260 * number of digits, and shorter numbers are zero-padded to this amount.
261 * For parsing, the number of pattern letters is ignored unless
267 * <li>For formatting, if the number of pattern letters is 2, the year
269 * <a href="#number">number</a>.
270 * <li>For parsing, if the number of pattern letters is more than 2,
271 * the year is interpreted literally, regardless of the number of
290 * For both formatting and parsing, if the number of pattern
305 * If the number of pattern letters is 3 or more, the month is
307 * it is interpreted as a <a href="#number">number</a>.</li>
343 * The number of pattern letters designates the format for both formatting
363 * produced. If the number of pattern letters is 1, any fraction of an hour
370 * <p>If the number of {@code "X"} pattern letters is 4 or more (e.g. {@code XXXX}), {@link
489 * True when a negative sign follows a number.
761 * If Tag is a pattern_char_index, its Length is the number of
765 * If Tag is TAG_QUOTE_CHARS, its Length is the number of char's
1054 // Map index into pattern character string to Calendar field number
1087 // Map index into pattern character string to DateFormat field number
1459 * Formats a number with the specified minimum and maximum number of digits.
1600 // obey the number of pattern letters for
1606 // In Arabic, a minus sign for a negative number is put after
1607 // the number. Even in another locale, a minus sign can be
1608 // put after a number using DateFormat.setNumberFormat().
1610 // subParse() needs to determine whether a '-' after a number
1612 // preceding number. We give subParse() a clue based on the
1682 * @return the new start position if matching succeeded; a negative number
1964 * @param count 0: 'Z' or "GMT+hh:mm" parsing; 1 - 3: the number of 'X's
2057 Number number;
2084 // a number value. We handle further, more generic cases below. We need
2098 number = numberFormat.parse(text.substring(0, start+count), pos);
2100 number = numberFormat.parse(text, pos);
2102 if (number == null) {
2107 value = number.intValue();
2384 number = numberFormat.parse(text.substring(0, start+count), pos);
2386 number = numberFormat.parse(text, pos);
2388 if (number != null) {
2397 double doubleValue = number.doubleValue();
2402 value = number.intValue();