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
1176 * method {@link Long#toString(long, int)}, and zero-padded to include at
1270 * <p> If <i>x</i> is negative or a negative-zero value then the result
1273 * <p> If <i>x</i> is positive or a positive-zero value and the
1284 * <li> If <i>m</i> is zero then it is represented by the string
1333 * <li> Positive numbers and positive zero do not include a sign or extra
1383 * <p> If <i>m</i> is positive-zero or negative-zero, then the exponent
1401 * method {@link Long#toString(long, int)}, and zero-padded to include at
1522 * a leading zero as necessary i.e. {@code 00 - 23}. {@code 00}
1528 * zero as necessary, i.e. {@code 01 - 12}. {@code 01} corresponds to
1543 * <td> Minute within the hour formatted as two digits with a leading zero
1549 * zero as necessary, i.e. {@code 00 - 60} ("{@code 60}" is a special
1641 * with leading zero as necessary, i.e. {@code 00 - 99}
1845 private final char zero;
1880 this.zero = getZero(l);
1964 * zero size; otherwise, a new file will be created. The output
1992 * zero size; otherwise, a new file will be created. The output
2026 * zero size; otherwise, a new file will be created. The output
2070 * file exists then it will be truncated to zero size; otherwise,
2098 * file exists then it will be truncated to zero size; otherwise,
2132 * file exists then it will be truncated to zero size; otherwise,
3310 // If the precision is zero and the '#' flag is set, add the
3353 // If the precision is zero and the '#' flag is set, add the
3386 // If the precision is zero and the '#' flag is set, add the
3640 // contain a decimal point if the scale is zero (the internal
3643 // we require zero padding to get to the requested precision.
3695 // contain a decimal point if the scale is zero (the internal
3697 // point if '#' is set or we require zero padding to get to the
3780 // by the exponent zero-padded to include at least two digits.
4143 return zero;
4162 char zero = getZero(l);
4209 sb.append((char) ((c - '0') + zero));
4214 // apply zero padding
4218 sb.insert(begin, zero);