Lines Matching refs:result

299   icu::MeasureUnit result = IsSanctionedUnitIdentifier(unit);
301 // 1. If the result of IsSanctionedUnitIdentifier(unitIdentifier) is true,
303 if (result != none) {
305 std::pair<icu::MeasureUnit, icu::MeasureUnit> pair(result, none);
320 // 4. If the result of IsSanctionedUnitIdentifier(numerator) is false, then
321 result = IsSanctionedUnitIdentifier(numerator);
322 if (result == none) {
330 // 6. If the result of IsSanctionedUnitIdentifier(denominator) is false, then
337 std::pair<icu::MeasureUnit, icu::MeasureUnit> pair(result, den_result);
361 // 1. Let normalized be the result of mapping currency to upper case as
828 icu::number::UnlocalizedNumberFormatter result = settings;
830 result = result.integerWidth(icu::number::IntegerWidth::zeroFillTo(
835 return result;
846 return result.precision(precision);
853 icu::number::UnlocalizedNumberFormatter result = settings;
855 result = result.integerWidth(icu::number::IntegerWidth::zeroFillTo(
895 return result.precision(precision);
1245 // 6. a. If the result of IsWellFormedCurrencyCode(currency) is false,
1297 // 11.a If the result of IsWellFormedUnitIdentifier(unit) is false, throw a
1339 // 14.a. Let currency be the result of converting currency to upper case as
1632 // Now all properties are ready, so we can allocate the result object.
1724 icu::Formattable result({char_buffer, length}, status);
1725 if (U_SUCCESS(status)) return Just(result);
1848 Handle<JSArray> result, int start_index,
1907 isolate, result, index, field_type_string, substring,
1912 Intl::AddElement(isolate, result, index, field_type_string, substring);
1916 JSObject::ValidateElements(*result);
2072 icu::UnicodeString result = formatted->toString(status);
2076 return Intl::ToString(isolate, result);
2088 Handle<JSArray> result = factory->NewJSArray(0);
2090 isolate, formatted, result, 0, is_unit, is_nan, output_source);
2092 return result;