Home | History | Annotate | Download | only in method

Lines Matching refs:decimal

39     private static final int DECIMAL = 2;
77 * plus the minus sign (only at the beginning) and/or decimal point
80 public DigitsKeyListener(boolean sign, boolean decimal) {
82 mDecimal = decimal;
84 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
97 * plus the minus sign (only at the beginning) and/or decimal point
100 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) {
101 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
106 sInstance[kind] = new DigitsKeyListener(sign, decimal);
153 int decimal = -1;
157 * Find out if the existing text has a sign or decimal point characters.
166 decimal = i;
175 decimal = i;
201 if (decimal >= 0) {
204 decimal = i;