HomeSort by relevance Sort by last modified time
    Searched full:integer (Results 1 - 25 of 5392) 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>
  /packages/wallpapers/Basic/res/values/
integers.xml 2 <integer name="nexus_mode">0</integer>
  /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...]
  /packages/inputmethods/LatinIME/java/res/values/
config.xml 22 <integer name="config_delay_before_preview">0</integer>
23 <integer name="config_delay_after_preview">10</integer>
24 <integer name="config_preview_fadein_anim_time">0</integer>
25 <integer name="config_preview_fadeout_anim_time">70</integer>
26 <integer name="config_mini_keyboard_fadein_anim_time">0</integer>
    [all...]
keycodes.xml 22 <integer name="key_tab">9</integer>
23 <integer name="key_return">10</integer>
24 <integer name="key_space">32</integer>
25 <integer name="key_shift">-1</integer>
26 <integer name="key_symbol">-2</integer>
    [all...]
  /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...]
NumberTest.java 28 ((byte) new Integer(number).intValue()) == new Integer(number)
32 ((byte) new Integer(number).intValue()) == new Integer(number)
36 ((byte) new Integer(number).intValue()) == new Integer(number)
40 ((byte) new Integer(number).intValue()) == new Integer(number)
50 ((short) new Integer(number).intValue()) == new Integer(number
    [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,
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 11 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2);
12 Integer key = Integer.valueOf(1);
13 Integer value = Integer.valueOf(3);
20 LruCache<Integer, Integer> cache = new LruCache<Integer, Integer>(2)
    [all...]
  /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...]
  /libcore/luni/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...]
  /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...]
  /device/samsung/crespo/alsa-lib/src/conf/cards/
AU8810.conf 24 type integer
27 type integer
30 type integer
33 type integer
AU8830.conf 28 type integer
31 type integer
34 type integer
37 type integer
  /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...]
  /libcore/luni/src/main/java/java/lang/
Integer.java 36 public final class Integer extends Number implements Comparable<Integer> {
41 * The int value represented by this Integer
79 public static final Class<Integer> TYPE
80 = (Class<Integer>) int[].class.getComponentType();
81 // Note: Integer.TYPE can't be set to "int.class", since *that* is
82 // defined to be "java.lang.Integer.TYPE";
85 * Constructs a new {@code Integer} with the specified primitive integer
89 * the primitive integer value to store in the new instance
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
AtomicReferenceFieldUpdaterTest.java 16 volatile Integer x = null;
18 Integer w;
29 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>
31 (AtomicReferenceFieldUpdaterTest.class, Integer.class, "y");
42 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>
44 (AtomicReferenceFieldUpdaterTest.class, Integer.class, "z");
54 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>
56 (AtomicReferenceFieldUpdaterTest.class, Integer.class, "w");
65 AtomicReferenceFieldUpdater<AtomicReferenceFieldUpdaterTest, Integer>a;
67 a = AtomicReferenceFieldUpdater.newUpdater(AtomicReferenceFieldUpdaterTest.class, Integer.class, "x")
    [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...]
  /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>

Completed in 1977 milliseconds

1 2 3 4 5 6 7 8 91011>>