HomeSort by relevance Sort by last modified time
    Searched refs:VALUES (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /external/emma/ant/ant14/com/vladium/emma/report/
IReportEnums.java 28 return VALUES;
32 private static final String [] VALUES = new String []
47 return VALUES;
51 private static final String [] VALUES = new String []
67 return VALUES;
71 private static final String [] VALUES = new String []
84 return VALUES;
88 private static final String [] VALUES = new String []
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
bugzillaLogin.sh 10 echo "Logging in and fetching cookie values..."
24 VALUES=$(grep Set-Cookie $HEADERS | sed -e 's/.\{1,\}Bugzilla_\(login\(cookie\)\?=[0-9]\{1,\}\).\{1,\}/\1/')
27 if [[ $VALUES ]];
35 echo "$VALUES" >/proc/self/fd/2
37 echo "$VALUES"
42 echo "Bugzilla didn't send us any cookie values, this means that either:"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
BooleanAttributeDescriptor.java 23 * Describes a text attribute that can only contain boolean values.
27 private static final String[] VALUES = new String[] { "true", "false" }; //$NON-NLS-1$ //$NON-NLS-2$
30 super(xmlLocalName, nsUri, attrInfo, VALUES);
  /cts/tests/tests/util/src/android/util/cts/
LongSparseArrayTest.java 28 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
29 private static final int LENGTH = VALUES.length;
37 int length = VALUES.length;
40 sparseArray.put(KEYS[i], VALUES[i]);
49 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
54 Integer oldValue = VALUES[0]; // 0
74 sparseArray.setValueAt(size, VALUES[1]);
76 assertEquals(VALUES[1], sparseArray.valueAt(size));
79 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
80 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseArrayTest.java 24 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
25 private static final int LENGTH = VALUES.length;
33 int length = VALUES.length;
36 sparseArray.put(KEYS[i], VALUES[i]);
45 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
50 Integer oldValue = VALUES[0]; // 0
70 sparseArray.setValueAt(size, VALUES[1]);
72 assertEquals(VALUES[1], sparseArray.valueAt(size));
75 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
76 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseBooleanArrayTest.java 24 private static final boolean[] VALUES =
38 int length = VALUES.length;
40 sparseBooleanArray.put(KEYS[i], VALUES[i]);
44 assertEquals(VALUES[i], sparseBooleanArray.get(KEYS[i]));
52 assertEquals(VALUES[i], sparseBooleanArray.valueAt(keyIndex));
53 expectPos = VALUES[i] ? truePos : falsePos;
54 assertEquals(expectPos, sparseBooleanArray.indexOfValue(VALUES[i]));
59 boolean oldValue = VALUES[0]; // true
80 assertEquals(VALUES[1], sparseBooleanArray.get(KEYS[1]));
81 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseLongArrayTest.java 28 private static final long[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
29 private static final int LENGTH = VALUES.length;
37 int length = VALUES.length;
40 sparseArray.put(KEYS[i], VALUES[i]);
49 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
54 long oldValue = VALUES[0]; // 0
75 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
76 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1]);
83 assertEquals(VALUES[2], sparseArray.get(KEYS[2]));
84 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[2])
    [all...]
SparseIntArrayTest.java 27 private static final int[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
40 int length = VALUES.length;
42 sparseIntArray.put(KEYS[i], VALUES[i]);
46 assertEquals(VALUES[i], sparseIntArray.get(KEYS[i]));
49 assertEquals(sparseIntArray.indexOfValue(VALUES[i]),
55 int oldValue = VALUES[0]; // 0
75 assertEquals(VALUES[1], sparseIntArray.get(KEYS[1]));
76 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1]);
89 int length = VALUES.length;
91 sparseIntArray.put(KEYS[i], VALUES[i])
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SparseArrayTest.java 40 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
41 private static final int LENGTH = VALUES.length;
51 int length = VALUES.length;
54 sparseArray.put(KEYS[i], VALUES[i]);
63 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
68 Integer oldValue = VALUES[0]; // 0
88 sparseArray.setValueAt(size, VALUES[1]);
90 assertEquals(VALUES[1], sparseArray.valueAt(size));
93 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
94 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
Gusterpolator.java 37 * Lookup table values.
44 * Values sampled with x at regular intervals between 0 and 1.
46 private static final float[] VALUES = new float[] {
60 private static final float STEP_SIZE = 1.0f / (VALUES.length - 1);
73 (int)(input * (VALUES.length - 1)),
74 VALUES.length - 2);
80 return VALUES[position] + weight * (VALUES[position + 1] - VALUES[position]);
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
Gusterpolator.java 40 * Lookup table values.
47 * Values sampled with x at regular intervals between 0 and 1.
49 private static final float[] VALUES = new float[] {
62 private static final float STEP_SIZE = 1.0f / (VALUES.length - 1);
75 (int)(input * (VALUES.length - 1)),
76 VALUES.length - 2);
82 return VALUES[position] + weight * (VALUES[position + 1] - VALUES[position]);
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 6 INSERT INTO _sync_state VALUES(1,'lemmytest@gmail.com','');
8 INSERT INTO _sync_state_metadata VALUES(2);
10 INSERT INTO android_metadata VALUES('en_US');
13 INSERT INTO contact_methods VALUES(1,3,1,'weyj@xtdt.com',NULL,1,NULL,1);
14 INSERT INTO contact_methods VALUES(2,4,1,'mail@dom.com',NULL,1,NULL,1);
15 INSERT INTO contact_methods VALUES(3,8,1,'doooooo@sgghhh.com',NULL,1,NULL,1);
16 INSERT INTO contact_methods VALUES(4,9,1,'ahhh@glkbgghh.com',NULL,1,NULL,1);
17 INSERT INTO contact_methods VALUES(5,12,1,'notsynced@gmail.com',NULL,1,NULL,1);
20 INSERT INTO fave_msg_status VALUES(100,16359444020020760201000000000000000000000000000000000000000000000000000000000000,1268764830477,2);
23 INSERT INTO faves VALUES(1,1,0,'','',000000000000,NULL,NULL,NULL)
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicDoubleArrayTest.java 25 private static final double[] VALUES = {
81 AtomicDoubleArray aa = new AtomicDoubleArray(VALUES);
82 assertEquals(VALUES.length, aa.length());
83 for (int i = 0; i < VALUES.length; i++) {
84 assertBitEquals(VALUES[i], aa.get(i));
153 AtomicDoubleArray aa = new AtomicDoubleArray(VALUES.length);
154 for (int i = 0; i < VALUES.length; i++) {
156 aa.set(i, VALUES[i]);
157 assertBitEquals(VALUES[i], aa.get(i));
167 AtomicDoubleArray aa = new AtomicDoubleArray(VALUES.length)
    [all...]
AtomicDoubleTest.java 23 private static final double[] VALUES = {
58 for (double x : VALUES) {
78 for (double x : VALUES) {
90 for (double x : VALUES) {
103 for (double x : VALUES) {
140 for (double x : VALUES) {
158 for (double x : VALUES) {
168 for (double x : VALUES) {
169 for (double y : VALUES) {
182 for (double x : VALUES) {
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 5 INSERT INTO _deleted_people VALUES(1249441421793000,'20d08a710c3df43d','android.contacts.test.eclair@gmail.com',NULL);
7 INSERT INTO _sync_state VALUES(1,'android.contacts.test.eclair@gmail.com','');
9 INSERT INTO _sync_state_metadata VALUES(2);
11 INSERT INTO android_metadata VALUES('en_US');
13 INSERT INTO calls VALUES(1,18004664411,1249177360040,10,2,1,'Jane Doe',1,NULL);
15 INSERT INTO contact_methods VALUES(1,2,1,'a@acme.com',NULL,1,NULL,1);
16 INSERT INTO contact_methods VALUES(2,2,1,'b@acme.com',NULL,2,NULL,0);
17 INSERT INTO contact_methods VALUES(3,2,1,'c@acme.com',NULL,3,NULL,0);
18 INSERT INTO contact_methods VALUES(4,2,1,'d@acme.com',NULL,3,NULL,0);
19 INSERT INTO contact_methods VALUES(5,2,3,'a','pre:5',3,NULL,0)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 7 INSERT INTO _sync_state_metadata VALUES(2);
9 INSERT INTO android_metadata VALUES('en_US');
12 INSERT INTO contact_methods VALUES(1,1,1,'gdgjj.fxhnj@ggh.com',NULL,1,NULL,1);
13 INSERT INTO contact_methods VALUES(2,3,1,'weyj@xtdt.com',NULL,1,NULL,1);
14 INSERT INTO contact_methods VALUES(3,5,1,'mail@dom.com',NULL,1,NULL,1);
19 INSERT INTO faves VALUES(1,1,0,'','',000000000000,NULL,NULL,NULL);
20 INSERT INTO faves VALUES(2,2,0,'','',000000000000,NULL,NULL,NULL);
21 INSERT INTO faves VALUES(3,3,0,'','',000000000000,NULL,NULL,NULL);
22 INSERT INTO faves VALUES(4,4,0,'','',000000000000,NULL,NULL,NULL);
23 INSERT INTO faves VALUES(5,5,0,'','',000000000000,NULL,NULL,NULL)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DebugUtilities.java 35 * Count the number of available enum values for an item, from 0
37 * @return the number of available enum values
75 return DebugUtilitiesData.VALUES[type][field];
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
BooleansTest.java 43 private static final boolean[] VALUES = {false, true};
51 for (boolean x : VALUES) {
52 for (boolean y : VALUES) {
177 // Only for booleans, we lengthen VALUES
178 boolean[] VALUES = BooleansTest.VALUES;
179 VALUES = Booleans.concat(VALUES, VALUES);
182 for (int i = 0; i < VALUES.length; i++)
    [all...]
SignedBytesTest.java 42 private static final byte[] VALUES =
46 for (byte value : VALUES) {
56 for (byte value : VALUES) {
76 for (byte x : VALUES) {
77 for (byte y : VALUES) {
  /cts/common/util/tests/src/com/android/compatibility/common/util/
MetricsXmlSerializerTest.java 34 private static final double[] VALUES = new double[] {1, 11, 21, 1211, 111221};
73 mLocalReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
ReportLogTest.java 35 private static final double[] VALUES = new double[] {.1, 124, 4736, 835.683, 98, 395};
74 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
80 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
143 Metric metric = new Metric(SOURCE, MESSAGE, VALUES, ResultType.HIGHER_BETTER,
145 assertTrue("Expected values to be ok", Arrays.equals(VALUES, metric.getValues()));
147 double[] values = new double[1001]; local
148 for (int i = 0; i < values.length; i++) values[i] = i;
150 metric = new Metric(SOURCE, MESSAGE, values, ResultType.HIGHER_BETTER, ResultUnit.BYTE)
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
VerbosityCfg.java 34 return VALUES;
37 private static final String [] VALUES = new String []
  /external/guava/guava-tests/test/com/google/common/primitives/
SignedBytesTest.java 45 private static final byte[] VALUES =
49 for (byte value : VALUES) {
59 for (byte value : VALUES) {
79 for (byte x : VALUES) {
80 for (byte y : VALUES) {
UnsignedBytesTest.java 39 // Only in this class, VALUES must be strictly ascending
40 private static final byte[] VALUES =
53 for (byte value : VALUES) {
64 for (byte value : VALUES) {
87 for (int i = 0; i < VALUES.length; i++) {
88 for (int j = 0; j < VALUES.length; j++) {
89 byte x = VALUES[i];
90 byte y = VALUES[j];
177 // Valid radix values are Character.MIN_RADIX to Character.MAX_RADIX,
  /packages/providers/ContactsProvider/tests/assets/upgradeTest/
contacts2_1108.sql 5 INSERT INTO "_sync_state_metadata" VALUES(1);
7 INSERT INTO "properties" VALUES('database_time_created','20243770769');
8 INSERT INTO "properties" VALUES('icu_version','56.1');
9 INSERT INTO "properties" VALUES('locale','en-US');
10 INSERT INTO "properties" VALUES('aggregation_v2','5');
11 INSERT INTO "properties" VALUES('search_index','1');
12 INSERT INTO "properties" VALUES('known_accounts','twyen.dev@gmail.comcom.google');
13 INSERT INTO "properties" VALUES('directoryScanComplete','1');
23 INSERT INTO "mimetypes" VALUES(1,'vnd.android.cursor.item/email_v2');
24 INSERT INTO "mimetypes" VALUES(2,'vnd.android.cursor.item/im')
    [all...]

Completed in 4643 milliseconds

1 2 3 4 5 6 7 8 910