HomeSort by relevance Sort by last modified time
    Searched defs:INTEGER (Results 1 - 25 of 730) 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,
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1Type.java 22 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:
  /frameworks/support/room/common/src/main/java/androidx/room/
ColumnInfo.java 52 * {@link #INTEGER}, {@link #REAL}, or {@link #BLOB}.
99 int INTEGER = 3;
116 @IntDef({UNDEFINED, TEXT, INTEGER, REAL, BLOB})
  /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;
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
ResType.java 16 INTEGER,
55 Integer.parseInt(value);
56 return INTEGER;
  /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;
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/cryptobyte/asn1/
asn1.go 31 INTEGER = Tag(2)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/cryptobyte/asn1/
asn1.go 31 INTEGER = Tag(2)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERTags.java 6 public static final int INTEGER = 0x02;
  /external/trappy/trappy/stats/
grammar.py 50 INTEGER = Combine(Optional(oneOf("+ -")) + Word(nums))\
166 FUNC_NAME + COLON + IDENTIFIER) | REAL | INTEGER | IDENTIFIER
200 # IDENTIFIER, Arithmetic expression, REAL number, INTEGER or a
  /libcore/ojluni/src/main/java/java/sql/
Types.java 60 * <code>INTEGER</code>.
62 public final static int INTEGER = 4;
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1Tag.java 31 public static final Asn1Tag INTEGER = new Asn1Tag(Asn1TagClass.UNIVERSAL, 2);
55 public static final BigInteger MAX_INTEGER_VALUE = BigInteger.valueOf(Integer.MAX_VALUE);
  /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 57 /** {@code non-null;} instance corresponding to the class {@code Integer} */
58 public static final CstType INTEGER = new CstType(Type.INTEGER_CLASS);
112 internInitial(INTEGER);
146 * {@code java.lang.Integer}.
158 case Type.BT_INT: return INTEGER;
  /external/libchrome/base/
values.h 57 INTEGER,
119 bool is_int() const { return type() == Type::INTEGER; }
285 // Values of both type Type::INTEGER and Type::DOUBLE can be obtained as
418 // Values of both type Type::INTEGER and Type::DOUBLE can be obtained as
  /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...]
  /external/turbine/java/com/google/turbine/bytecode/
ConstantPool.java 36 private final Map<String, Integer> utf8Pool = new HashMap<>();
37 private final Map<Integer, Integer> classInfoPool = new HashMap<>();
38 private final Map<Integer, Integer> stringPool = new HashMap<>();
39 private final Map<Integer, Integer> integerPool = new HashMap<>();
40 private final Map<Double, Integer> doublePool = new HashMap<>();
41 private final Map<Float, Integer> floatPool = new HashMap<>();
42 private final Map<Long, Integer> longPool = new HashMap<>()
114 int integer(int value) { method in class:ConstantPool
    [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;
  /development/vndk/tools/sourcedr/sourcedr/blueprint/
blueprint.py 37 """Convert an integer character codepoint into a utf-8 string."""
111 INTEGER = 14
207 integer."""
223 hexadecimal integer."""
334 (Token.INTEGER, '-{0,1}[0-9]+'),
369 if token in {Token.IDENT, Token.INTEGER}:
435 class Integer(Expr): # pylint: disable=too-few-public-methods
436 """Integer constant literal."""
442 """Create an integer constant literal."""
447 """Convert an integer constant literal to string representation.""
    [all...]

Completed in 2335 milliseconds

1 2 3 4 5 6 7 8 91011>>