HomeSort by relevance Sort by last modified time
    Searched defs:INTEGER (Results 1 - 25 of 609) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
macros.h 2 #define INTEGER(X) int
6 #__public_macro INTEGER
10 int (INTEGER);
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 22 TypeData INTEGER = new TypeData.BasicType("int", StackMapTable.INTEGER);
  /external/owasp/sanitizer/src/main/org/owasp/html/
Sanitizers.java 82 private static final AttributePolicy INTEGER = new AttributePolicy() {
91 return value.substring(0, i); // truncate to integer.
106 .allowAttributes("border", "height", "width").matching(INTEGER)
  /system/libvintf/include/vintf/
KernelConfigType.h 29 INTEGER,
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/text/
NumberFormatProviderICU.java 23 private final static int INTEGER = 1;
34 return getInstance(INTEGER, locale);
59 case INTEGER:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TypedVariable.java 11 INTEGER;
40 case INTEGER:
42 return Integer.parseInt(value);
  /external/clang/test/Modules/
macros.c 24 #ifndef INTEGER
25 # error INTEGER macro should be visible
47 // CHECK-PREPROCESSED: int i = INTEGER;
48 int i = INTEGER; // the value was exported, the macro was not.
74 #undef INTEGER
75 #define INTEGER int
80 INTEGER my_integer = 0;
  /frameworks/compile/mclinker/include/mcld/Script/
Operand.h 31 enum Type { SYMBOL, INTEGER, SECTION, SECTION_DESC, FRAGMENT };
88 * \brief This class defines the interfaces to an integer operand.
105 return pOperand->type() == Operand::INTEGER;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERTags.java 6 public static final int INTEGER = 0x02;
  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
Asn1Tag.java 6 INTEGER,
  /libcore/ojluni/src/main/java/java/sql/
Types.java 60 * <code>INTEGER</code>.
62 public final static int INTEGER = 4;
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 52 /** {@code non-null;} instance corresponding to the class {@code Integer} */
53 public static final CstType INTEGER = intern(Type.INTEGER_CLASS);
98 * {@code java.lang.Integer}.
110 case Type.BT_INT: return INTEGER;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 59 /** {@code non-null;} instance corresponding to the class {@code Integer} */
60 public static final CstType INTEGER = new CstType(Type.INTEGER_CLASS);
109 internInitial(INTEGER);
143 * {@code java.lang.Integer}.
155 case Type.BT_INT: return INTEGER;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
RegisterType.java 108 public static final byte INTEGER = 10;
121 // example if the register's type is an Integer on one incoming code path, but is a Reference type on another
122 // incomming code path. There is no register type that can hold either an Integer or a Reference.
136 "Integer",
149 //or a Char, then the "merged" type of that register would be Integer, because it is the "smallest" type can
153 /* UNKNOWN UNINIT NULL ONE, BOOLEAN BYTE POS_BYTE SHORT POS_SHORT CHAR INTEGER, FLOAT, LONG_LO LONG_HI DOUBLE_LO DOUBLE_HI UNINIT_REF UNINIT_THIS REFERENCE CONFLICTED*/
154 /*UNKNOWN*/ {UNKNOWN, UNINIT, NULL, ONE, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, LONG_LO, LONG_HI, DOUBLE_LO, DOUBLE_HI, UNINIT_REF, UNINIT_THIS,REFERENCE, CONFLICTED},
156 /*NULL*/ {NULL, CONFLICTED, NULL, BOOLEAN, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, REFERENCE, CONFLICTED},
157 /*ONE*/ {ONE, CONFLICTED, BOOLEAN, ONE, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED},
158 /*BOOLEAN*/ {BOOLEAN, CONFLICTED, BOOLEAN, BOOLEAN, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED (…)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseDatabaseHelperUpgradeTest.java 34 protected static final String INTEGER = "INTEGER";
202 TableStructure table = createOneColumnTable("foo", INTEGER, false, null);
203 table.assertHasColumn("foo", INTEGER, false, null);
210 table.assertHasColumn("bar", INTEGER, false, null);
218 TableStructure table = createOneColumnTable("foo", INTEGER, false, null);
221 table.assertHasColumn("bar", INTEGER, false, null);
229 TableStructure table = createOneColumnTable("foo", INTEGER, false, null);
240 TableStructure table = createOneColumnTable("foo", INTEGER, false, null);
243 table.assertHasColumn("foo", INTEGER, true, null)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 78 public static final int INTEGER = 1;
StackMapTable.java 101 public static final int INTEGER = 1;
451 * descriptor. This method returns <code>INTEGER</code>
471 return INTEGER;
757 case INTEGER :
758 msg = "integer";
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
NumberFormat.java 73 * integer number format. Use <code>getCurrencyInstance</code> to get the
85 * getInstance(...INTEGERSTYLE) to get an integer number format,
130 * last character of the integer and the decimal. Add
200 * {@icu} Constant to specify a integer number style format.
220 * the position of the integer part of a formatted number should be returned.
455 * string "1234." would be parsed as the integer value 1234 and parsing
591 * Returns an integer number format for the current default locale. The
593 * to the nearest integer using IEEE half-even rounding (see {@link
595 * and to parse only the integer part of an input string (see {@link
598 * @return a number format for integer value
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 59 /** Represents the integer primitive type */
60 public static final Type INTEGER = new Type(CtClass.intType);
109 prims.put(CtClass.intType, INTEGER);
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
TextViewBindingAdapter.java 58 public static final int INTEGER = 0x01;
  /libcore/ojluni/src/main/java/java/text/
NumberFormat.java 105 * integer number format. Use <code>getCurrencyInstance</code> to get the
154 * last character of the integer and the decimal. Add
184 * the position of the integer part of a formatted number should be returned.
237 if (number instanceof Long || number instanceof Integer ||
381 * string "1234." would be parsed as the integer value 1234 and parsing
460 * Returns an integer number format for the current default
463 * to the nearest integer using half-even rounding (see {@link
465 * and to parse only the integer part of an input string (see {@link
474 * @return a number format for integer values
482 * Returns an integer number format for the specified locale. Th
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
DataRecord.java 227 public static final byte INTEGER = 0;
233 public static final String[] names = { "INTEGER", "INTEGER_CUSTOM",
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NumberFormat.java 84 * integer number format. Use <code>getCurrencyInstance</code> to get the
97 * getInstance(...INTEGERSTYLE) to get an integer number format,
142 * last character of the integer and the decimal. Add
194 * <strong>[icu]</strong> Constant to specify a integer number style format.
230 * the position of the integer part of a formatted number should be returned.
449 * string "1234." would be parsed as the integer value 1234 and parsing
598 * Returns an integer number format for the current default <code>FORMAT</code> locale. The
600 * to the nearest integer using IEEE half-even rounding (see {@link
602 * and to parse only the integer part of an input string (see {@link
605 * @return a number format for integer value
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DataRecord.java 225 public static final byte INTEGER = 0;
231 public static final String[] names = { "INTEGER", "INTEGER_CUSTOM",
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NumberFormat.java 83 * integer number format. Use <code>getCurrencyInstance</code> to get the
96 * getInstance(...INTEGERSTYLE) to get an integer number format,
141 * last character of the integer and the decimal. Add
198 * {@icu} Constant to specify a integer number style format.
240 * the position of the integer part of a formatted number should be returned.
478 * string "1234." would be parsed as the integer value 1234 and parsing
641 * Returns an integer number format for the current default <code>FORMAT</code> locale. The
643 * to the nearest integer using IEEE half-even rounding (see {@link
645 * and to parse only the integer part of an input string (see {@link
648 * @return a number format for integer value
    [all...]

Completed in 1218 milliseconds

1 2 3 4 5 6 7 8 91011>>