/cts/tests/autofillservice/src/android/autofillservice/cts/common/ |
D | SettingsHelper.java | 73 final String newValue = get(namespace, key); in syncSet() local 74 assertWithMessage("invalid value for '%s' settings", key).that(newValue).isEqualTo(value); in syncSet() 110 final String newValue = get(namespace, key); in syncDelete() local 111 assertWithMessage("invalid value for '%s' settings", key).that(newValue).isEqualTo("null"); in syncDelete()
|
/cts/tests/tests/util/src/android/util/cts/ |
D | SparseBooleanArrayTest.java | 65 boolean newValue = false; in testSparseBooleanArrayWithDefaultCapacity() 68 sparseBooleanArray.put(existKey, newValue); in testSparseBooleanArrayWithDefaultCapacity() 69 assertEquals(newValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithDefaultCapacity() 122 boolean newValue = false; in testSparseBooleanArrayWithSpecifiedCapacity() 125 sparseBooleanArray.put(existKey, newValue); in testSparseBooleanArrayWithSpecifiedCapacity() 126 assertEquals(newValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithSpecifiedCapacity()
|
D | SparseIntArrayTest.java | 58 int newValue = 23; in testSparseIntArrayWithDefaultCapacity() local 61 sparseIntArray.put(existKey, newValue); in testSparseIntArrayWithDefaultCapacity() 62 assertEquals(newValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithDefaultCapacity() 107 int newValue = 23; in testSparseIntArrayWithSpecifiedCapacity() local 110 sparseIntArray.put(existKey, newValue); in testSparseIntArrayWithSpecifiedCapacity() 111 assertEquals(newValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithSpecifiedCapacity()
|
D | SparseLongArrayTest.java | 64 long newValue = 100; in testSparseArrayWithDefaultCapacity() local 67 sparseArray.put(existKey, newValue); in testSparseArrayWithDefaultCapacity() 68 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 126 long newValue = 100; in testSparseArrayWithSpecifiedCapacity() local 129 sparseArray.put(existKey, newValue); in testSparseArrayWithSpecifiedCapacity() 130 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithSpecifiedCapacity()
|
D | LongSparseArrayTest.java | 66 Integer newValue = 100; in testSparseArrayWithDefaultCapacity() local 69 sparseArray.put(existKey, newValue); in testSparseArrayWithDefaultCapacity() 70 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 132 Integer newValue = 100; in testSparseArrayWithSpecifiedCapacity() local 135 sparseArray.put(existKey, newValue); in testSparseArrayWithSpecifiedCapacity() 136 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithSpecifiedCapacity()
|
D | SparseArrayTest.java | 63 Integer newValue = 100; in testSparseArrayWithDefaultCapacity() local 66 sparseArray.put(existKey, newValue); in testSparseArrayWithDefaultCapacity() 67 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 129 Integer newValue = 100; in testSparseArrayWithSpecifiedCapacity() local 132 sparseArray.put(existKey, newValue); in testSparseArrayWithSpecifiedCapacity() 133 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithSpecifiedCapacity()
|
/cts/tests/tests/rsblas/src/android/renderscript/cts/ |
D | BNNMTest.java | 56 int newValue = (originalValue + delta); in addByteNoise() local 57 if (newValue < -127) { in addByteNoise() 58 newValue = -127; in addByteNoise() 60 if (newValue > 127) { in addByteNoise() 61 newValue = 127; in addByteNoise() 63 data[n] = (byte)(newValue); in addByteNoise()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | Target.java | 436 double newValue = mMinValue + delta; in ExpandMin() local 441 if (newValue < 0 && mMinValue > 0.f) { in ExpandMin() 444 mMinValue = newValue; in ExpandMin() 477 double newValue = mMaxValue + delta; in ExpandMax() local 482 if (newValue > 0 && mMaxValue < 0.f) { in ExpandMax() 485 mMaxValue = newValue; in ExpandMax()
|
/cts/tests/tests/preference2/src/android/preference2/cts/ |
D | CustomPreference.java | 54 protected boolean callChangeListener(Object newValue) { in callChangeListener() argument 55 return super.callChangeListener(newValue); in callChangeListener()
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
D | BaseTelecomTestWithMockServices.java | 1211 final Object newValue = newExtras.get(key); in areBundlesEqual() local 1212 if (!Objects.equals(value, newValue)) { in areBundlesEqual()
|
/cts/tests/libcore/javautilcollections/libs/ |
D | guava-20.0.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
D | guava-testlib-20.0.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/cts/tools/vm-tests-tf/lib/ |
D | junit.jar | META-INF/
META-INF/MANIFEST.MF
junit/
junit/awtui/
junit/ ... |
/cts/tests/tests/widget/src/android/widget/cts/ |
D | TextViewTest.java | 7513 final int newValue = 33; 7517 newValue, 7519 assertEquals(newValue, textView.getAutoSizeStepGranularity());
|