Home | History | Annotate | Download | only in Core

Lines Matching defs:precision

31   *  - \b precision number of digits for floating point values, or one of the special constants \c StreamPrecision and \c FullPrecision.
33 * stream's own precision setting, as set for instance using \c cout.precision(3). The other special value
34 * \c FullPrecision means that the number of digits will be computed to match the full precision of each floating-point
58 coeffSeparator(_coeffSeparator), precision(_precision), flags(_flags)
71 int precision;
168 if(fmt.precision == StreamPrecision)
172 else if(fmt.precision == FullPrecision)
185 explicit_precision = fmt.precision;
196 if(explicit_precision) sstr.precision(explicit_precision);
202 if(explicit_precision) old_precision = s.precision(explicit_precision);
222 if(explicit_precision) s.precision(old_precision);