/cts/tests/tests/content/src/android/content/cts/ |
D | ContentQueryMapTest.java | 53 DummyProvider.NAME, DummyProvider.VALUE}; 69 values0.put(DummyProvider.VALUE, VALUE0); in setUp() 74 values1.put(DummyProvider.VALUE, VALUE1); in setUp() 101 new ContentQueryMap(mCursor, DummyProvider.VALUE, false, new Handler()); in testConstructor() 123 assertEquals(VALUE0, rows.get(NAME0).getAsString(DummyProvider.VALUE)); in testGetRows() 125 assertEquals(VALUE1, rows.get(NAME1).getAsString(DummyProvider.VALUE)); in testGetRows() 143 assertEquals(VALUE0, contentValues.getAsString(DummyProvider.VALUE)); in testRequery() 147 assertEquals(VALUE1, contentValues.getAsString(DummyProvider.VALUE)); in testRequery() 155 values.put(DummyProvider.VALUE, VALUE2); in testRequery() 165 assertEquals(VALUE1, contentValues.getAsString(DummyProvider.VALUE)); in testRequery() [all …]
|
D | DummyProvider.java | 55 public static final String VALUE = "value"; field in DummyProvider 83 + NAME + " TEXT," + VALUE + " TEXT"+ ");"); in onCreate() 103 db.insert(tbName, VALUE, values); in insert()
|
/cts/common/device-side/bedstead/nene/src/test/java/com/android/bedstead/nene/properties/ |
D | PropertiesTest.kt | 17 TestApis.properties().set(KEY, VALUE).use { in set_valueIsSet() 19 assertThat(TestApis.properties().get(KEY)).isEqualTo(VALUE) in set_valueIsSet() 25 TestApis.properties().set(KEY, VALUE).use { in set_autoclose_resetsValue() 30 assertThat(TestApis.properties().get(KEY)).isEqualTo(VALUE) in set_autoclose_resetsValue() 42 val VALUE = "value123" constant
|
/cts/tests/tests/deviceconfig/src/android/deviceconfig/cts/ |
D | DeviceConfigApiPermissionTests.java | 49 private static final String VALUE = "value"; field in DeviceConfigApiPermissionTests 176 VALUE, property); in testDeviceConfigWithAllPermissions() 179 VALUE, properties.getString(KEY2, "default_value")); in testDeviceConfigWithAllPermissions() 201 DeviceConfig.setProperty(PUBLIC_NAMESPACE, KEY, VALUE, /*makeDefault=*/ false); in testDeviceConfigPublicNamespacesWithoutReadPermission() 209 new Properties.Builder(PUBLIC_NAMESPACE).setString(KEY2, VALUE).build(); in testDeviceConfigPublicNamespacesWithoutReadPermission() 223 DeviceConfig.setProperty(PUBLIC_NAMESPACE, KEY, VALUE, /*makeDefault=*/ false); in testDeviceConfigPublicNamespacesWithoutReadPermission() 231 new Properties.Builder(PUBLIC_NAMESPACE).setString(KEY, VALUE).build(); in testDeviceConfigPublicNamespacesWithoutReadPermission() 244 + " value.", VALUE, property); in testDeviceConfigPublicNamespacesWithoutReadPermission() 253 + " value.", VALUE, properties.getString(KEY, "default_value")); in testDeviceConfigPublicNamespacesWithoutReadPermission() 282 DeviceConfig.setProperty(NAMESPACE, KEY, VALUE, /*makeDefault=*/ false); in trySetPropertyWithoutWritePermission() [all …]
|
/cts/tests/tests/car/src/android/car/cts/ |
D | SyncResultCallbackTest.java | 36 private static final double VALUE = 1.75; field in SyncResultCallbackTest 44 mBundle.putDouble(KEY, VALUE); in setup() 51 assertThat(mCallback.get().getDouble(KEY)).isEqualTo(VALUE); in testGet() 58 assertThat(mCallback.get(1000, TimeUnit.MILLISECONDS).getDouble(KEY)).isEqualTo(VALUE); in testGetWithTimeout()
|
/cts/tests/sample/src/android/sample/cts/ |
D | SampleDeviceTest.java | 39 private static final String VALUE = "bar"; field in SampleDeviceTest 59 mActivityRule.getActivity().savePreference(KEY, VALUE); in testSharedPreferences() 60 Assert.assertEquals("Preferences were not saved", VALUE, in testSharedPreferences()
|
/cts/tests/JobScheduler/src/android/jobscheduler/ |
D | DummyJobContentProvider.java | 45 public static final String VALUE = "value"; field in DummyJobContentProvider 72 + NAME + " TEXT," + VALUE + " TEXT"+ ");"); in onCreate() 92 db.insert(tbName, VALUE, values); in insert()
|
/cts/tests/JobSchedulerSharedUid/src/android/jobscheduler/ |
D | DummyJobContentProvider.java | 45 public static final String VALUE = "value"; field in DummyJobContentProvider 72 + NAME + " TEXT," + VALUE + " TEXT"+ ");"); in onCreate() 92 db.insert(tbName, VALUE, values); in insert()
|
/cts/tests/tests/os/src/android/os/cts/ |
D | MessageTest.java | 58 public static final int VALUE = 3; field in MessageTest 200 bundle.putInt(KEY, VALUE); in testCopyFrom() 208 assertEquals(VALUE, mMessage.getData().getInt(KEY)); in testCopyFrom() 231 bundle.putInt(KEY, VALUE); in testWriteToParcel() 241 assertEquals(VALUE, mMessage.getData().getInt(KEY)); in testWriteToParcel()
|
/cts/tests/signature/tests/src/android/signature/cts/tests/ |
D | ApiComplianceCheckerTest.java | 246 "FINAL_FIELD", "java.lang.String", Modifier.PUBLIC | Modifier.FINAL, VALUE); in testFinalField() 256 "STATIC_FIELD", "java.lang.String", Modifier.PUBLIC | Modifier.STATIC, VALUE); in testStaticField() 266 "VOLATILE_FIELD", "java.lang.String", Modifier.PUBLIC | Modifier.VOLATILE, VALUE); in testVolatileFiled() 277 Modifier.PUBLIC | Modifier.TRANSIENT, VALUE); in testTransientField() 288 "PACAKGE_FIELD", "java.lang.String", 0, VALUE); in testPackageField() 298 "PRIVATE_FIELD", "java.lang.String", Modifier.PRIVATE, VALUE); in testPrivateField() 308 "PROTECTED_FIELD", "java.lang.String", Modifier.PROTECTED, VALUE); in testProtectedField() 343 "innerClassData", "java.lang.String", Modifier.PRIVATE, VALUE); in testInnerClass() 354 "innerInnerClassData", "java.lang.String", Modifier.PRIVATE, VALUE); in testInnerInnerClass()
|
D | ApiPresenceCheckerTest.java | 40 static final String VALUE = "VALUE"; field in ApiPresenceCheckerTest 85 name, "boolean", Modifier.PUBLIC, VALUE); in addPublicBooleanField()
|
/cts/tests/tests/provider/src/android/provider/cts/settings/ |
D | SettingsTest.java | 88 Settings.System._ID, Settings.System.NAME, Settings.System.VALUE in testSystemTable() 107 value.put(Settings.System.VALUE, insertValue); in testSystemTable() 123 value.put(Settings.System.VALUE, updateValue); in testSystemTable() 146 Settings.Secure._ID, Settings.Secure.NAME, Settings.Secure.VALUE in testSecureTable() 169 new String[] { Settings.NameValueTable.VALUE };
|
/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/ |
D | ContactsTest.java | 670 Settings.KEY, Settings.VALUE}; 686 value.put(Settings.VALUE, insertValue); 714 value.put(Settings.VALUE, updateValue); 742 value.put(Settings.VALUE, updateValue); 789 Extensions.VALUE, Extensions.PERSON_ID}; 808 value.put(Extensions.VALUE, insertValue); 825 value.put(Settings.VALUE, updateValue);
|
/cts/tests/tests/calendarprovider/src/android/provider/cts/calendar/ |
D | CalendarTest.java | 816 ExtendedProperties.VALUE 839 ep.put(ExtendedProperties.VALUE, value); in addExtendedProperty() 1042 extended.put(ExtendedProperties.VALUE, "bar"); in testEventsEntityQuery() 1048 extended.put(ExtendedProperties.VALUE, "bar2"); in testEventsEntityQuery() 1086 CalendarContract.ExtendedProperties.VALUE); in testEventsEntityQuery() 1929 newValues.put(ExtendedProperties.VALUE, "Big"); in testExtendedProperties()
|
/cts/common/device-side/bedstead/remoteframeworkclasses/java/apis/ |
D | current.txt | 35507 field public static final String VALUE = "value"; 35666 field public static final String VALUE = "value"; 35887 field @Deprecated public static final String VALUE = "value"; 36115 field @Deprecated public static final String VALUE = "value"; 37466 field public static final String VALUE = "value";
|