Home | History | Annotate | Download | only in method

Lines Matching refs:SIGN

34     private static final int SIGN = 1;
64 * plus the minus sign (only at the beginning) and/or decimal point
67 public DigitsKeyListener(boolean sign, boolean decimal) {
68 mSign = sign;
71 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
84 * plus the minus sign (only at the beginning) and/or decimal point
87 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) {
88 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
93 sInstance[kind] = new DigitsKeyListener(sign, decimal);
139 int sign = -1;
151 sign = i;
182 } else if (sign >= 0) {
185 sign = i;