Lines Matching refs:digits

159      * The text associated with this span is a series of digits that have to be
160 * read sequentially. The digits can be set with {@link #ARG_DIGITS}.
164 public static final String TYPE_DIGITS = "android.type.digits";
233 * digits of any size optionally prefixed with a - or +.
240 * value can be a string of digits of any size optionally prefixed with
248 * be a string of digits of any size.
274 * string of digits of any size optionally prefixed with a - or +.
281 * a string of digits of any size optionally prefixed with a + or -.
369 * a string of digits optionally prefixed with a "+".
376 * be a string of digits where the different parts of the telephone number
384 * a string of digits.
453 * Argument used to specify a string of digits.
456 public static final String ARG_DIGITS = "android.arg.digits";
720 * @param number A non-empty string of digits with an optional
776 * @param number A non-empty string of digits with an optional
824 * digits, it sets the {@link #ARG_INTEGER_PART} and
827 * @param minimumFractionDigits The minimum number of fraction digits
829 * @param maximumFractionDigits The maximum number of fraction digits
869 * @param integerPart A non-empty string of digits with an optional
879 * @param fractionalPart A non-empty string of digits.
927 * @param integerPart A non-empty string of digits with an optional
947 * @param numerator A non-empty string of digits with an optional
967 * @param denominator A non-empty string of digits with an optional
1001 * @param number A non-empty string of digits with an optional
1022 * non-empty string of digits with an optional
1033 * string of digits with an optional leading + or -.
1054 * digits with an optional leading + or -.
1074 * of digits with an optional leading + or -.
1242 * @param integerPart A non-empty string of digits with an optional
1252 * @param fractionalPart Can be a string of digits of any size.
1302 * @param countryCode The country code can be a series of digits
1313 * digits and letters separated by spaces, "/", "-" or ".".
1322 * @param extension The extension can be a series of digits.
1442 public DigitsBuilder(String digits) {
1444 setDigits(digits);
1449 * @param digits A string of digits.
1452 public DigitsBuilder setDigits(String digits) {
1453 return setStringArgument(TtsSpan.ARG_DIGITS, digits);