Home | History | Annotate | Download | only in util

Lines Matching refs:precision

57  *       public void formatTo(Formatter fmt, int f, int width, int precision) {
65 * boolean usesymbol = alternate || (precision != -1 && precision < 10);
68 * // apply precision
69 * if (precision == -1 || out.length() < precision) {
73 * sb.append(out.substring(0, precision - 1)).append('*');
149 * @param precision
151 * The precision is applied before the width, thus the output will
152 * be truncated to <tt>precision</tt> characters even if the
153 * <tt>width</tt> is greater than the <tt>precision</tt>. If
154 * <tt>precision</tt> is <tt>-1</tt> then there is no explicit
163 void formatTo(Formatter formatter, int flags, int width, int precision);