HomeSort by relevance Sort by last modified time
    Searched full:integer (Results 151 - 175 of 4801) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/res/res/values-uk-rUA/
arrays.xml 23 <integer-array name="maps_starting_lat_lng">
26 </integer-array>
28 <integer-array name="maps_starting_zoom">
30 </integer-array>
  /frameworks/base/core/res/res/values-vi-rVN/
arrays.xml 23 <integer-array name="maps_starting_lat_lng">
26 </integer-array>
28 <integer-array name="maps_starting_zoom">
30 </integer-array>
  /frameworks/base/core/res/res/values-zh-rCN/
arrays.xml 23 <integer-array name="maps_starting_lat_lng">
26 </integer-array>
28 <integer-array name="maps_starting_zoom">
30 </integer-array>
  /frameworks/base/core/res/res/values-zh-rTW/
arrays.xml 23 <integer-array name="maps_starting_lat_lng">
26 </integer-array>
28 <integer-array name="maps_starting_zoom">
30 </integer-array>
  /system/core/libacc/tests/data/
iops.c 1 // Check integer operations
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
6 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
8 CREATE TABLE _sync_state_metadata (version INTEGER);
12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
7 CREATE TABLE _sync_state_metadata (version INTEGER);
11 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT)
    [all...]
  /external/dbus/dbus/
dbus-types.h 57 * A 32-bit unsigned integer on all platforms.
63 * A 32-bit signed integer on all platforms.
69 * A 16-bit unsigned integer on all platforms.
75 * A 16-bit signed integer on all platforms.
82 * A 64-bit unsigned integer on all platforms that support it.
95 * A 64-bit signed integer on all platforms that support it.
124 * Declare a 64-bit signed integer constant. The macro
125 * adds the necessary "LL" or whatever after the integer,
132 * Declare a 64-bit unsigned integer constant. The macro
133 * adds the necessary "ULL" or whatever after the integer,
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TimePickerTest.java 111 new TimePicker(mContext, attrs, Integer.MIN_VALUE);
139 mTimePicker.setCurrentHour(Integer.valueOf(initialHour));
140 mTimePicker.setCurrentMinute(Integer.valueOf(initialMinute));
146 mTimePicker.setCurrentHour(Integer.valueOf(initialHour));
153 mTimePicker.setCurrentHour(Integer.valueOf(initialHour + 1));
187 args = {Integer.class}
203 assertEquals(Integer.valueOf(0), mTimePicker.getCurrentHour());
206 assertEquals(Integer.valueOf(12), mTimePicker.getCurrentHour());
209 assertEquals(Integer.valueOf(13), mTimePicker.getCurrentHour());
212 assertEquals(Integer.valueOf(23), mTimePicker.getCurrentHour())
    [all...]
  /external/guava/src/com/google/common/collect/
ExplicitOrdering.java 29 final ImmutableMap<T, Integer> rankMap;
35 ExplicitOrdering(ImmutableMap<T, Integer> rankMap) {
44 Integer rank = rankMap.get(value);
51 private static <T> ImmutableMap<T, Integer> buildRankMap(
53 ImmutableMap.Builder<T, Integer> builder = ImmutableMap.builder();
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
ArrayBlockingQueueTest.java 32 assertTrue(q.offer(new Integer(i)));
73 Integer[] ints = new Integer[SIZE];
85 Integer[] ints = new Integer[SIZE];
87 ints[i] = new Integer(i);
99 Integer[] ints = new Integer[SIZE];
101 ints[i] = new Integer(i);
113 Integer[] ints = new Integer[SIZE]
    [all...]
JSR166TestCase.java 97 iters = Integer.parseInt(args[0]);
336 // Some convenient Integer constants
338 static final Integer zero = new Integer(0);
339 static final Integer one = new Integer(1);
340 static final Integer two = new Integer(2);
341 static final Integer three = new Integer(3)
    [all...]
AtomicReferenceArrayTest.java 29 AtomicReferenceArray<Integer> ai = new AtomicReferenceArray<Integer>(SIZE);
40 Integer[] a = null;
41 AtomicReferenceArray<Integer> ai = new AtomicReferenceArray<Integer>(a);
52 Integer[] a = { two, one, three, four, seven};
53 AtomicReferenceArray<Integer> ai = new AtomicReferenceArray<Integer>(a);
64 AtomicReferenceArray<Integer> ai = new AtomicReferenceArray<Integer>(SIZE)
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
FunctionTable.java 233 new Integer(FunctionTable.FUNC_CURRENT));
235 new Integer(FunctionTable.FUNC_LAST));
237 new Integer(FunctionTable.FUNC_POSITION));
239 new Integer(FunctionTable.FUNC_COUNT));
241 new Integer(FunctionTable.FUNC_ID));
243 new Integer(FunctionTable.FUNC_KEY));
245 new Integer(FunctionTable.FUNC_LOCAL_PART));
247 new Integer(FunctionTable.FUNC_NAMESPACE));
249 new Integer(FunctionTable.FUNC_QNAME));
251 new Integer(FunctionTable.FUNC_GENERATE_ID))
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
HashMapTest.java 235 assertTrue("Returned false for valid key", hm.containsKey(new Integer(
243 .containsKey(new Integer(0)));
259 .containsValue(new Integer(875)));
261 .containsValue(new Integer(-9)));
342 .get(new Integer(0)));
395 map.put(new Integer(1), "1");
396 map.put(new Integer(102), "102");
397 map.put(new Integer(203), "203");
399 Integer remove1 = (Integer) it.next()
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
RSAPrivateKeyStructure.java 148 * modulus INTEGER, -- n
149 * publicExponent INTEGER, -- e
150 * privateExponent INTEGER, -- d
151 * prime1 INTEGER, -- p
152 * prime2 INTEGER, -- q
153 * exponent1 INTEGER, -- d mod (p-1)
154 * exponent2 INTEGER, -- d mod (q-1)
155 * coefficient INTEGER, -- (inverse of q) mod p
159 * Version ::= INTEGER { two-prime(0), multi(1) }
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
ParameterMetaDataTest.java 45 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
46 thePublicStatics.put("parameterModeOut", new Integer(4));
47 thePublicStatics.put("parameterModeInOut", new Integer(2));
48 thePublicStatics.put("parameterModeIn", new Integer(1));
49 thePublicStatics.put("parameterModeUnknown", new Integer(0));
50 thePublicStatics.put("parameterNullableUnknown", new Integer(2));
51 thePublicStatics.put("parameterNullable", new Integer(1));
52 thePublicStatics.put("parameterNoNulls", new Integer(0));
StatementTest.java 45 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
46 thePublicStatics.put("NO_GENERATED_KEYS", new Integer(2));
47 thePublicStatics.put("RETURN_GENERATED_KEYS", new Integer(1));
48 thePublicStatics.put("EXECUTE_FAILED", new Integer(-3));
49 thePublicStatics.put("SUCCESS_NO_INFO", new Integer(-2));
50 thePublicStatics.put("CLOSE_ALL_RESULTS", new Integer(3));
51 thePublicStatics.put("KEEP_CURRENT_RESULT", new Integer(2));
52 thePublicStatics.put("CLOSE_CURRENT_RESULT", new Integer(1));
  /frameworks/base/tests/CoreTests/android/core/
VectorTest.java 32 private Vector<Integer> mVector;
43 assertTrue(mStrVector.add(Integer.toString(i)));
54 Vector<Integer> vector = new Vector();
70 Vector<Integer> vector = new Vector();
87 Vector<Integer> vector = mVector;
106 Vector<Integer> vector = mVector;
124 Vector<Integer> vector = mVector;
142 Vector<Integer> vector = mVector;
158 Integer[] rArray = new Integer[100]
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_int/
Test_rem_int.java 87 * @title Arguments = Integer.MIN_VALUE, -1
91 assertEquals(0, t.run(Integer.MIN_VALUE, -1));
95 * @title Arguments = Integer.MIN_VALUE, 1
99 assertEquals(0, t.run(Integer.MIN_VALUE, 1));
103 * @title Arguments = Integer.MAX_VALUE, 1
107 assertEquals(0, t.run(Integer.MAX_VALUE, 1));
111 * @title Arguments = Integer.MIN_VALUE, Integer.MAX_VALUE
115 assertEquals(-1, t.run(Integer.MIN_VALUE, Integer.MAX_VALUE))
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_int_2addr/
Test_rem_int_2addr.java 87 * @title Arguments = Integer.MIN_VALUE, -1
91 assertEquals(0, t.run(Integer.MIN_VALUE, -1));
95 * @title Arguments = Integer.MIN_VALUE, 1
99 assertEquals(0, t.run(Integer.MIN_VALUE, 1));
103 * @title Arguments = Integer.MAX_VALUE, 1
107 assertEquals(0, t.run(Integer.MAX_VALUE, 1));
111 * @title Arguments = Integer.MIN_VALUE, Integer.MAX_VALUE
115 assertEquals(-1, t.run(Integer.MIN_VALUE, Integer.MAX_VALUE))
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
types.sgml 18 Integer types which are guaranteed to be the same size across all platforms -
124 A signed integer guaranteed to be 8 bits on all platforms.
131 An unsigned integer guaranteed to be 8 bits on all platforms.
138 A signed integer guaranteed to be 16 bits on all platforms.
149 An unsigned integer guaranteed to be 16 bits on all platforms.
160 A signed integer guaranteed to be 32 bits on all platforms.
171 An unsigned integer guaranteed to be 32 bits on all platforms.
186 @Deprecated: GLib requires 64-bit integer support since version 2.0, therefore
192 A signed integer guaranteed to be 64 bits on all platforms.
204 An unsigned integer guaranteed to be 64 bits on all platforms
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
MatrixCursor_RowBuilderTest.java 53 builder.add(Integer.MIN_VALUE);
55 assertEquals(Integer.MIN_VALUE, cursor.getInt(COLUMN0_INDEX));
61 assertEquals(Integer.MIN_VALUE, cursor.getInt(COLUMN0_INDEX));
66 builder.add(Integer.MAX_VALUE);
68 assertEquals(Integer.MIN_VALUE, cursor.getInt(COLUMN0_INDEX));
72 assertEquals(Integer.MAX_VALUE, cursor.getInt(COLUMN2_INDEX));
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherSettings.java 44 * <P>Type: INTEGER</P>
60 * <P>Type: INTEGER</P>
65 * The icon is a resource identified by a package name and an integer id.
128 * <P>Type: INTEGER</P>
133 * The icon is a resource identified by a package name and an integer id.
139 * <P>Type: INTEGER</P>
146 * <P>Type: INTEGER</P>
153 * <P>Type: INTEGER</P>
159 * <P>Type: INTEGER</P>
165 * <P>Type: INTEGER</P
    [all...]
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
JDBCDatabaseMetaData.java 615 Types.INTEGER, Types.INTEGER, Types.INTEGER,
616 Types.INTEGER, Types.INTEGER, Types.VARCHAR,
617 Types.VARCHAR, Types.INTEGER, Types.INTEGER,
618 Types.INTEGER, Types.INTEGER, Types.VARCHAR
625 Hashtable<String, Integer> h = new Hashtable<String, Integer>()
    [all...]

Completed in 67 milliseconds

1 2 3 4 5 67 8 91011>>