Home | History | Annotate | Download | only in i18n

Lines Matching refs:number

372 // Formats an int64 number, it's actually formatted as
374 // from the input number because of this.
377 ChoiceFormat::format(int64_t number,
381 return format((double) number, appendTo, status);
385 // Formats an int32_t number, it's actually formatted as
389 ChoiceFormat::format(int32_t number,
393 return format((double) number, appendTo, status);
397 // Formats a double number.
400 ChoiceFormat::format(double number,
409 int32_t msgStart = findSubMessage(msgPattern, 0, number);
423 ChoiceFormat::findSubMessage(const MessagePattern &pattern, int32_t partIndex, double number) {
428 // Ignore the first number and selector and start the loop on the first message.
452 if (boundaryChar == LESS_THAN ? !(number > boundary) : !(number >= boundary)) {
453 // The number is in the interval between the previous boundary and the current one.
519 // find the best number (defined as the one with the longest parse)