Searched refs:keyValueMap (Results 1 – 2 of 2) sorted by relevance
479 Map<String, String> keyValueMap = in testCall_listConfig() local481 assertThat(keyValueMap.size(), greaterThanOrEqualTo(2)); in testCall_listConfig()482 assertEquals(value, keyValueMap.get(name)); in testCall_listConfig()483 assertEquals(newValue, keyValueMap.get(newName)); in testCall_listConfig()488 keyValueMap = (HashMap) result.getSerializable(Settings.NameValueTable.VALUE); in testCall_listConfig()489 assertThat(keyValueMap, aMapWithSize(1)); in testCall_listConfig()490 assertEquals(value, keyValueMap.get(name)); in testCall_listConfig()
879 Properties(@NonNull String namespace, @Nullable Map<String, String> keyValueMap) { in Properties() argument883 if (keyValueMap != null) { in Properties()884 mMap.putAll(keyValueMap); in Properties()