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

1 2 3 4 5 6 7 8 91011>>

  /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 38 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
39 private static final int LENGTH = VALUES.length;
48 int length = VALUES.length;
51 sparseArray.put(KEYS[i], VALUES[i]);
60 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
65 Integer oldValue = VALUES[0]; // 0
85 sparseArray.setValueAt(size, VALUES[1]);
87 assertEquals(VALUES[1], sparseArray.valueAt(size));
90 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
91 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseArrayTest.java 35 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
36 private static final int LENGTH = VALUES.length;
45 int length = VALUES.length;
48 sparseArray.put(KEYS[i], VALUES[i]);
57 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
62 Integer oldValue = VALUES[0]; // 0
82 sparseArray.setValueAt(size, VALUES[1]);
84 assertEquals(VALUES[1], sparseArray.valueAt(size));
87 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
88 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseBooleanArrayTest.java 33 private static final boolean[] VALUES =
43 int length = VALUES.length;
45 sparseBooleanArray.put(KEYS[i], VALUES[i]);
49 assertEquals(VALUES[i], sparseBooleanArray.get(KEYS[i]));
57 assertEquals(VALUES[i], sparseBooleanArray.valueAt(keyIndex));
58 expectPos = VALUES[i] ? truePos : falsePos;
59 assertEquals(expectPos, sparseBooleanArray.indexOfValue(VALUES[i]));
64 boolean oldValue = VALUES[0]; // true
85 assertEquals(VALUES[1], sparseBooleanArray.get(KEYS[1]));
86 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1])
    [all...]
SparseLongArrayTest.java 36 private static final long[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
37 private static final int LENGTH = VALUES.length;
46 int length = VALUES.length;
49 sparseArray.put(KEYS[i], VALUES[i]);
58 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i]));
63 long oldValue = VALUES[0]; // 0
84 assertEquals(VALUES[1], sparseArray.get(KEYS[1]));
85 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1]);
92 assertEquals(VALUES[2], sparseArray.get(KEYS[2]));
93 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[2])
    [all...]
SparseIntArrayTest.java 33 private static final int[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
42 int length = VALUES.length;
44 sparseIntArray.put(KEYS[i], VALUES[i]);
48 assertEquals(VALUES[i], sparseIntArray.get(KEYS[i]));
51 assertEquals(sparseIntArray.indexOfValue(VALUES[i]),
57 int oldValue = VALUES[0]; // 0
77 assertEquals(VALUES[1], sparseIntArray.get(KEYS[1]));
78 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1]);
92 int length = VALUES.length;
94 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...]
  /frameworks/support/wear/src/android/support/wear/widget/
BezierSCurveInterpolator.java 39 * Lookup table values. Generated using a Bezier curve from (0,0) to (1,1) with control points:
42 * <p>Values sampled with x at regular intervals between 0 and 1.
44 private static final float[] VALUES = new float[]{
57 private static final float STEP_SIZE = 1.0f / (VALUES.length - 1);
76 int position = Math.min((int) (input * (VALUES.length - 1)), VALUES.length - 2);
82 return VALUES[position] + weight * (VALUES[position + 1] - VALUES[position]);
  /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 37 * Count the number of available enum values for an item, from 0
39 * @return the number of available enum values
77 return DebugUtilitiesData.VALUES[type][field];
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
TwoWayBindingObject.java 36 private static final String[] VALUES = {
70 this.adapter = new ArrayAdapter<>(context, android.R.layout.simple_list_item_1, VALUES);
77 for (int i = 0; i < VALUES.length; i++) {
78 map.put(VALUES[i], i + 1);
  /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 32 private static final double[] VALUES = new double[] {.1, 124, 4736, 835.683, 98, 395};
72 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
78 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
141 Metric metric = new Metric(SOURCE, MESSAGE, VALUES, ResultType.HIGHER_BETTER,
143 assertTrue("Expected values to be ok", Arrays.equals(VALUES, metric.getValues()));
145 double[] values = new double[1001]; local
146 for (int i = 0; i < values.length; i++) values[i] = i;
148 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) {

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 91011>>