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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Launcher2/res/values/
config.xml 2 <integer name="config_allAppsFadeInTime">700</integer>
3 <integer name="config_allAppsFadeOutTime">700</integer>
4 <integer name="config_allAppsBatchLoadDelay">0</integer>
5 <integer name="config_allAppsBatchSize">0</integer>
  /device/htc/dream-sapphire/overlay/packages/apps/Launcher2/res/values/
config.xml 2 <integer name="config_allAppsFadeInTime">@android:integer/config_mediumAnimTime</integer>
3 <integer name="config_allAppsFadeOutTime">@android:integer/config_shortAnimTime</integer>
4 <integer name="config_allAppsBatchLoadDelay">100</integer>
5 <integer name="config_allAppsBatchSize">4</integer>
    [all...]
  /packages/wallpapers/Basic/res/values/
integers.xml 2 <integer name="nexus_mode">0</integer>
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 9 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2);
10 Integer key = Integer.valueOf(1);
11 Integer value = Integer.valueOf(3);
17 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2)
    [all...]
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 9 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2);
10 Integer key = Integer.valueOf(1);
11 Integer value = Integer.valueOf(3);
17 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2)
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
IntegerTest.java 28 @TestTargetClass(Integer.class)
43 * @tests java.lang.Integer#byteValue()
52 // Test for method byte java.lang.Integer.byteValue()
53 assertEquals("Returned incorrect byte value", -1, new Integer(65535)
55 assertEquals("Returned incorrect byte value", 127, new Integer(127)
60 * @tests java.lang.Integer#compareTo(java.lang.Integer)
66 args = {java.lang.Integer.class}
69 // Test for method int java.lang.Integer.compareTo(java.lang.Integer)
    [all...]
  /external/clearsilver/python/examples/trans/
trans.sql 2 string_id integer not null primary key auto_increment,
9 loc_id integer not null primary key auto_increment,
10 string_id integer not null,
11 version integer default 0,
20 map_id integer not null primary key auto_increment,
21 string_id integer not null,
  /dalvik/tests/025-access-controller/src/
Privvy.java 7 class Privvy implements PrivilegedAction<Integer> {
9 private Integer mValue;
12 mValue = new Integer(val + 1);
15 public Integer run() {
  /frameworks/base/tests/CoreTests/android/core/
ParseIntTest.java 23 * Tests for functionality of class Integer to parse integers.
29 assertEquals(0, Integer.parseInt("0", 10));
30 assertEquals(473, Integer.parseInt("473", 10));
31 assertEquals(0, Integer.parseInt("-0", 10));
32 assertEquals(-255, Integer.parseInt("-FF", 16));
33 assertEquals(102, Integer.parseInt("1100110", 2));
34 assertEquals(2147483647, Integer.parseInt("2147483647", 10));
35 assertEquals(-2147483648, Integer.parseInt("-2147483648", 10));
38 Integer.parseInt("2147483648", 10);
45 Integer.parseInt("-2147483649", 10)
    [all...]
ArrayListTest.java 36 array.add(new Integer(0));
37 array.add(0, new Integer(1));
38 array.add(1, new Integer(2));
39 array.add(new Integer(3));
40 array.add(new Integer(1));
45 assertEquals(1, ((Integer) array.get(0)).intValue());
46 assertEquals(2, ((Integer) array.get(1)).intValue());
47 assertEquals(0, ((Integer) array.get(2)).intValue());
48 assertEquals(3, ((Integer) array.get(3)).intValue());
49 assertEquals(1, ((Integer) array.get(4)).intValue())
    [all...]
  /development/ide/xcode/animatorTest/English.lproj/main.nib/
info.nib 15 <integer>3</integer>
18 <integer>166</integer>
19 <integer>29</integer>
  /external/zlib/contrib/pascal/
zlibpas.pas 16 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
21 in_func = function(opaque: Pointer; var buf: PByte): Integer;
23 out_func = function(opaque: Pointer; buf: PByte; size: Integer): Integer;
29 avail_in: Integer; (* number of bytes available at next_in *)
33 avail_out: Integer; (* remaining free space at next_out *)
43 data_type: Integer; (* best guess about the data type: ascii or binary *)
84 function deflateInit(var strm: z_stream; level: Integer): Integer;
85 function deflate(var strm: z_stream; flush: Integer): Integer
    [all...]
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 45 HashMap<String, Integer> thePublicStatics = new HashMap<String, Integer>();
46 thePublicStatics.put("BOOLEAN", new Integer(16));
47 thePublicStatics.put("DATALINK", new Integer(70));
48 thePublicStatics.put("REF", new Integer(2006));
49 thePublicStatics.put("CLOB", new Integer(2005));
50 thePublicStatics.put("BLOB", new Integer(2004));
51 thePublicStatics.put("ARRAY", new Integer(2003));
52 thePublicStatics.put("STRUCT", new Integer(2002));
53 thePublicStatics.put("DISTINCT", new Integer(2001))
    [all...]
DatabaseMetaDataTest.java 46 thePublicStatics.put("sqlStateSQL99", new Integer(2));
47 thePublicStatics.put("sqlStateXOpen", new Integer(1));
55 thePublicStatics.put("typeSearchable", new Integer(3));
56 thePublicStatics.put("typePredBasic", new Integer(2));
57 thePublicStatics.put("typePredChar", new Integer(1));
58 thePublicStatics.put("typePredNone", new Integer(0));
59 thePublicStatics.put("typeNullableUnknown", new Integer(2));
60 thePublicStatics.put("typeNullable", new Integer(1));
61 thePublicStatics.put("typeNoNulls", new Integer(0));
62 thePublicStatics.put("importedKeyNotDeferrable", new Integer(7))
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
CredentialsTest.java 59 // Test with big integer
60 cred = new Credentials(Integer.MAX_VALUE, Integer.MAX_VALUE, Integer.MAX_VALUE);
61 assertEquals(Integer.MAX_VALUE, cred.getGid());
62 assertEquals(Integer.MAX_VALUE, cred.getPid());
63 assertEquals(Integer.MAX_VALUE, cred.getUid());
65 // Test with big negative integer
66 cred = new Credentials(Integer.MIN_VALUE, Integer.MIN_VALUE, Integer.MIN_VALUE)
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.merit 10 ATTRIBUTE Framed-AppleTalk-Link 37 integer
11 ATTRIBUTE Framed-AppleTalk-Network 38 integer
13 ATTRIBUTE Acct-Input-Packets 47 integer
14 ATTRIBUTE Acct-Output-Packets 48 integer
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-008.js 22 function Integer( value, exception ) {
31 "Integer( " + value +" )",
36 var INVALID_INTEGER_VALUE = "Invalid value for java.lang.Integer constructor";
48 new Integer( 3, false );
49 new Integer( NaN, true );
50 new Integer( 0, false );
51 new Integer( Infinity, false );
52 new Integer( -2.12, true );
53 new Integer( Math.LN2, true );
  /cts/tools/dx-tests/src/dxc/junit/opcodes/isub/
Test_isub.java 54 assertEquals(Integer.MAX_VALUE, t.run(0, -2147483647));
58 * @title Arguments = 0, Integer.MAX_VALUE
62 assertEquals(-2147483647, t.run(0, Integer.MAX_VALUE));
66 * @title Arguments = Integer.MAX_VALUE, Integer.MAX_VALUE
70 assertEquals(0, t.run(Integer.MAX_VALUE, Integer.MAX_VALUE));
74 * @title Arguments = Integer.MAX_VALUE, -1
78 assertEquals(Integer.MIN_VALUE, t.run(Integer.MAX_VALUE, -1))
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
type_conversion.sgml 11 you want to pass an integer instead of a pointer. You could allocate
12 an integer, with something like:
22 intends to support). Thus you can store at least 32-bit integer values
47 integer; values outside the range of a 32-bit integer will be mangled.
62 Stuffs an integer into a pointer type.
68 integer; values outside the range of a 32-bit integer will be mangled.
71 @i: integer to stuff into a pointer.
76 Extracts an integer from a pointer. The integer must hav
    [all...]
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
PriorityQueueTest.java 26 int i = ((Integer)x).intValue();
27 int j = ((Integer)y).intValue();
42 assertTrue(q.offer(new Integer(i)));
44 assertTrue(q.offer(new Integer(i)));
84 Integer[] ints = new Integer[SIZE];
96 Integer[] ints = new Integer[SIZE];
98 ints[i] = new Integer(i);
110 Integer[] ints = new Integer[SIZE]
    [all...]
AtomicReferenceFieldUpdaterTest.java 16 volatile Integer x = null;
18 Integer w;
32 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>
34 (AtomicReferenceFieldUpdaterTest.class, Integer.class, "y");
46 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>
48 (AtomicReferenceFieldUpdaterTest.class, Integer.class, "z");
59 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>
61 (AtomicReferenceFieldUpdaterTest.class, Integer.class, "w");
92 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>a;
94 a = AtomicReferenceFieldUpdater.newUpdater(AtomicReferenceFieldUpdaterTest.class, Integer.class, "x")
    [all...]
  /cts/tests/res/values/
arrays.xml 19 <item type="integer" name="reference" format="integer">101</item>
27 <integer-array name="integers">
30 <item>@integer/reference</item>
31 </integer-array>
45 <integer-array name="table_row_layout">
56 </integer-array>
  /dalvik/libcore/support/src/test/java/tests/support/
Support_ListTest.java 30 List<Integer> list; // must contain the Integers 0 to 99 in order
36 public Support_ListTest(String p1, List<Integer> l) {
49 .equals(new Integer(counter)));
53 list.add(50, new Integer(1000));
55 .get(50).equals(new Integer(1000)));
58 list.get(51).equals(new Integer(50)));
61 list.get(49).equals(new Integer(49)));
63 list.set(50, new Integer(2000));
65 .equals(new Integer(2000)));
67 list.get(51).equals(new Integer(50)))
    [all...]
  /dalvik/dx/tests/072-dex-switch-edge-cases/
Blort.java 39 // Single element: Integer.MIN_VALUE.
42 case Integer.MIN_VALUE: return 0;
48 // Single element: Integer.MAX_VALUE.
51 case Integer.MAX_VALUE: return 0;
57 // Two elements: 0 and Integer.MIN_VALUE.
61 case Integer.MIN_VALUE: return 1;
67 // Two elements: 0 and Integer.MAX_VALUE.
71 case Integer.MAX_VALUE: return 1;
77 // Two elements: Integer.MIN_VALUE and Integer.MAX_VALUE
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/idiv/
Test_idiv.java 74 * @title Arguments = Integer.MIN_VALUE, -1
79 assertEquals(Integer.MIN_VALUE, t.run(Integer.MIN_VALUE, -1));
83 * @title Arguments = Integer.MIN_VALUE, 1
87 assertEquals(Integer.MIN_VALUE, t.run(Integer.MIN_VALUE, 1));
91 * @title Arguments = Integer.MAX_VALUE, 1
95 assertEquals(Integer.MAX_VALUE, t.run(Integer.MAX_VALUE, 1));
99 * @title Arguments = Integer.MIN_VALUE, Integer.MAX_VALU
    [all...]

Completed in 393 milliseconds

1 2 3 4 5 6 7 8 91011>>