Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 14 of 14) sorted by relevance

/cts/tests/tests/util/src/android/util/cts/
DSparseBooleanArrayTest.java65 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()
DSparseIntArrayTest.java58 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()
DSparseLongArrayTest.java64 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()
DLongSparseArrayTest.java66 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()
DSparseArrayTest.java63 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/
DBNNMTest.java56 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/
DTarget.java436 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/
DCustomPreference.java54 protected boolean callChangeListener(Object newValue) { in callChangeListener() argument
55 return super.callChangeListener(newValue); in callChangeListener()
/cts/tests/autofillservice/src/android/autofillservice/cts/
DHelper.java202 final String newValue = complete ? "1" : null; in setUserComplete() local
203 runShellCommand("settings put secure %s %s default", USER_SETUP_COMPLETE, newValue); in setUserComplete()
/cts/tests/tests/telecom/src/android/telecom/cts/
DBaseTelecomTestWithMockServices.java1062 final Object newValue = newExtras.get(key); in areBundlesEqual() local
1063 if (!Objects.equals(value, newValue)) { in areBundlesEqual()
/cts/tests/libcore/javautilcollections/libs/
Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
Dguava-testlib-20.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/cts/tools/vm-tests-tf/lib/
Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/ ...
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java7273 final int newValue = 33;
7277 newValue,
7279 assertEquals(newValue, textView.getAutoSizeStepGranularity());