HomeSort by relevance Sort by last modified time
    Searched defs:DECIMAL (Results 1 - 10 of 10) sorted by null

  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 35 private static final int DECIMAL = 2;
64 * plus the minus sign (only at the beginning) and/or decimal point
67 public DigitsKeyListener(boolean sign, boolean decimal) {
69 mDecimal = decimal;
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)
140 int decimal = -1; local
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
Types.java 85 * The type code that identifies the SQL type {@code DECIMAL}.
87 public static final int DECIMAL = 3;
  /external/v8/src/
scanner.cc 674 // a decimal point or exponent.
1092 // Returns true if any decimal digits were scanned, returns false otherwise.
1102 enum { DECIMAL, HEX, OCTAL } kind = DECIMAL;
1106 // we have already seen a decimal point of the float
1131 kind = DECIMAL;
1140 // Parse decimal digits and allow trailing fractional part.
1141 if (kind == DECIMAL) {
1159 // we must have at least one decimal digit after 'e'/'E'
1166 // not be an identifier start or a decimal digit; see ECMA-26
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 227 private static final int DECIMAL = 4;
757 (numeric & DECIMAL) != 0);
762 if ((numeric & DECIMAL) != 0) {
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 96 milliseconds