Lines Matching refs:inValue
34 DecimalQuantity &inValue = results->quantity; in formatStatic() local
37 MicroProps& micros = impl.preProcessUnsafe(inValue, status); in formatStatic()
39 int32_t length = writeNumber(micros, inValue, outString, 0, status); in formatStatic()
58 DecimalQuantity &inValue = results->quantity; in format() local
61 preProcess(inValue, micros, status); in format()
63 int32_t length = writeNumber(micros, inValue, outString, 0, status); in format()
69 void NumberFormatterImpl::preProcess(DecimalQuantity& inValue, MicroProps& microsOut, in preProcess() argument
76 fMicroPropsGenerator->processQuantity(inValue, microsOut, status); in preProcess()
77 microsOut.integerWidth.apply(inValue, status); in preProcess()
80 MicroProps& NumberFormatterImpl::preProcessUnsafe(DecimalQuantity& inValue, UErrorCode& status) { in preProcessUnsafe() argument
88 fMicroPropsGenerator->processQuantity(inValue, fMicros, status); in preProcessUnsafe()
89 fMicros.integerWidth.apply(inValue, status); in preProcessUnsafe()