Searched refs:getNumberOption (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/js/ |
D | i18n.js | 1128 function getNumberOption(options, property, min, max, fallback) { function 1189 var mnid = getNumberOption(options, 'minimumIntegerDigits', 1, 21, 1); 1195 mnfd = getNumberOption(options, 'minimumFractionDigits', 0, 20, 0); 1203 mxfd = getNumberOption(options, 'maximumFractionDigits', mnfd, 20, fallback_limit); 1210 mnsd = getNumberOption(options, 'minimumSignificantDigits', 1, 21, 0); 1213 mxsd = getNumberOption(options, 'maximumSignificantDigits', mnsd, 21, 21);
|