Lines Matching defs:zero

375  *     a leading zero as necessary i.e. {@code 00 - 23}.
379 * zero as necessary, i.e. {@code 01 - 12}.
388 * <td> Minute within the hour formatted as two digits with a leading zero
393 * zero as necessary, i.e. {@code 00 - 60} ("{@code 60}" is a special
466 * with leading zero as necessary, i.e. {@code 00 - 99}
572 * <td> The result will be zero-padded
845 * {@linkplain java.text.DecimalFormatSymbols#getZeroDigit() zero digit}
862 * java.text.DecimalFormatSymbols#getZeroDigit() zero digits} are inserted
863 * after the sign character, if any, and before the first non-zero digit, until
870 * <li> If the value is negative (or floating-point negative zero) and
874 * <li> If the {@code '+'} flag is given and the value is positive or zero (or
875 * floating-point positive zero), then a {@code '+'} (<tt>'&#92;u002b'</tt>)
899 * the zero padding will occur after the sign.
1025 * <li> Positive numbers and zero do not include a sign or extra leading
1070 * <p> If <i>x</i> is positive or zero and the {@code '+'} flag is given
1093 * <p> If <i>x</i> is positive or zero and the {@code '+'} flag is given
1123 * zero padding will occur after the sign.
1157 * <p> If <i>m</i> is positive-zero or negative-zero, then the exponent
1175 * method {@link Long#toString(long, int)}, and zero-padded to include at
1267 * <p> If <i>x</i> is negative or a negative-zero value then the result
1270 * <p> If <i>x</i> is positive or a positive-zero value and the
1281 * <li> If <i>m</i> is zero then it is represented by the string
1330 * <li> Positive numbers and positive zero do not include a sign or extra
1380 * <p> If <i>m</i> is positive-zero or negative-zero, then the exponent
1398 * method {@link Long#toString(long, int)}, and zero-padded to include at
1519 * a leading zero as necessary i.e. {@code 00 - 23}. {@code 00}
1525 * zero as necessary, i.e. {@code 01 - 12}. {@code 01} corresponds to
1540 * <td> Minute within the hour formatted as two digits with a leading zero
1546 * zero as necessary, i.e. {@code 00 - 60} ("{@code 60}" is a special
1638 * with leading zero as necessary, i.e. {@code 00 - 99}
1842 private final char zero;
1877 this.zero = getZero(l);
1961 * zero size; otherwise, a new file will be created. The output
1989 * zero size; otherwise, a new file will be created. The output
2023 * zero size; otherwise, a new file will be created. The output
2067 * file exists then it will be truncated to zero size; otherwise,
2095 * file exists then it will be truncated to zero size; otherwise,
2129 * file exists then it will be truncated to zero size; otherwise,
3224 // If the precision is zero and the '#' flag is set, add the
3263 // If the precision is zero and the '#' flag is set, add the
3296 // If the precision is zero and the '#' flag is set, add the
3550 // contain a decimal point if the scale is zero (the internal
3553 // we require zero padding to get to the requested precision.
3605 // contain a decimal point if the scale is zero (the internal
3607 // point if '#' is set or we require zero padding to get to the
3690 // by the exponent zero-padded to include at least two digits.
4053 return zero;
4072 char zero = getZero(l);
4119 sb.append((char) ((c - '0') + zero));
4124 // apply zero padding
4128 sb.insert(begin, zero);