Home
last modified time | relevance | path

Searched defs:expectedKeys (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/aosp_15_r20/packages/services/Car/tests/carservice_unit_test/src/com/android/car/bluetooth/
DFastPairAccountKeyStorageTest.java243 ArrayList<AccountKey> expectedKeys = in testAddKeyWhileStorageEmpty_keyAdded() local
262 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testAddKeyWhileStorageAtMax_keyAddedAndLruDropped() local
285 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testAddKeyAlreadyInStorage_KeysLruPositionReset() local
308 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testAddNullKey_nothingHappens() local
328 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testRemoveKeyInStorage_keyRemoved() local
355 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testRemoveKeyNotInStorage_keysUnchanged() local
379 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testRemoveNullKey_nothingHappens() local
403 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testClearKeys_keysEmpty() local
460 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testLoadWhileUserUnlocked_loadSucceeds() local
493 ArrayList<AccountKey> expectedKeys = new ArrayList<AccountKey>(List.of( in testCommitWhileUserUnlocked_commitSucceeds() local
/aosp_15_r20/packages/modules/AdServices/sdksandbox/tests/unittest/src/com/android/server/sdksandbox/
DSdkDexVerifierUnitTest.java85 String[] expectedKeys = { in getApiTokens_fullyQualifiedRule() local
107 String[] expectedKeys = { in getApiTokens_classAndMethodRule() local
131 String[] expectedKeys = { in getApiTokens_multiParam() local
154 String[] expectedKeys = { in getApiTokens_classReturn() local
170 String[] expectedKeys = { in getApiTokens_classAndParams() local
/aosp_15_r20/frameworks/av/drm/mediadrm/plugins/clearkey/default/tests/
H A DInitDataParserUnittest.cpp49 const Vector<String8>& expectedKeys) { in attemptParseExpectingSuccess()
93 Vector<String8> expectedKeys; in TEST_F() local
118 Vector<String8> expectedKeys; in TEST_F() local
134 Vector<String8> expectedKeys; in TEST_F() local
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DHashMultimap.java86 int expectedKeys, int expectedValuesPerKey) { in create()
110 private HashMultimap(int expectedKeys, int expectedValuesPerKey) { in HashMultimap()
H A DArrayListMultimap.java97 ArrayListMultimap<K, V> create(int expectedKeys, int expectedValuesPerKey) { in create()
119 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) { in ArrayListMultimap()
H A DImmutableListMultimap.java210 public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) { in builderWithExpectedKeys()
242 Builder(int expectedKeys) { in Builder()
H A DLinkedListMultimap.java183 LinkedListMultimap<K, V> create(int expectedKeys) { in create()
203 private LinkedListMultimap(int expectedKeys) { in LinkedListMultimap()
H A DImmutableSetMultimap.java237 public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) { in builderWithExpectedKeys()
270 Builder(int expectedKeys) { in Builder()
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DHashMultimap.java86 int expectedKeys, int expectedValuesPerKey) { in create()
110 private HashMultimap(int expectedKeys, int expectedValuesPerKey) { in HashMultimap()
H A DArrayListMultimap.java97 ArrayListMultimap<K, V> create(int expectedKeys, int expectedValuesPerKey) { in create()
119 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) { in ArrayListMultimap()
H A DLinkedListMultimap.java185 LinkedListMultimap<K, V> create(int expectedKeys) { in create()
205 private LinkedListMultimap(int expectedKeys) { in LinkedListMultimap()
H A DImmutableListMultimap.java206 public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) { in builderWithExpectedKeys()
238 Builder(int expectedKeys) { in Builder()
H A DImmutableMultimap.java141 public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) { in builderWithExpectedKeys()
179 Builder(int expectedKeys) { in Builder()
H A DImmutableSetMultimap.java233 public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) { in builderWithExpectedKeys()
266 Builder(int expectedKeys) { in Builder()
/aosp_15_r20/external/aws-sdk-java-v2/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/handlers/
H A DObjectMetadataInterceptorTest.java117 private List<String> expectedKeys; field in ObjectMetadataInterceptorTest.TestCase
119 public TestCase(List<String> inputKeys, List<String> expectedKeys) { in TestCase()
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/util/
H A DHashMapTest.java96 ArrayList<String> expectedKeys = new ArrayList<>( in test_spliterator_keySet() local
99 SpliteratorTester.runBasicIterationTests(keys.spliterator(), expectedKeys); in test_spliterator_keySet() local
H A DLinkedHashMapTest.java412 ArrayList<String> expectedKeys = new ArrayList<>( in test_spliterator_keySet() local
415 SpliteratorTester.runBasicIterationTests(keys.spliterator(), expectedKeys); in test_spliterator_keySet() local
H A DTreeMapTest.java638 List<String> expectedKeys = Arrays.asList( in test_spliterator_keySet() local
641 SpliteratorTester.runBasicIterationTests_unordered(keys.spliterator(), expectedKeys, in test_spliterator_keySet() local
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DHashSetTest.java270 ArrayList<String> expectedKeys = new ArrayList<>(keys); in test_spliterator() local
271 SpliteratorTester.runBasicIterationTests_unordered(hashSet.spliterator(), expectedKeys, in test_spliterator() local
H A DLinkedHashSetTest.java340 ArrayList<String> expectedKeys = new ArrayList<>(keys); in test_spliterator() local
341 SpliteratorTester.runBasicIterationTests_unordered(hashSet.spliterator(), expectedKeys, in test_spliterator() local
H A DTreeSetTest.java336 ArrayList<String> expectedKeys = new ArrayList<>(keys); in test_spliterator() local
337 SpliteratorTester.runBasicIterationTests_unordered(treeSet.spliterator(), expectedKeys, in test_spliterator() local
H A DWeakHashMapTest.java538 ArrayList<String> expectedKeys = new ArrayList<>(keys); in test_spliterator_keySet() local
540 SpliteratorTester.runBasicIterationTests_unordered(keys.spliterator(), expectedKeys, in test_spliterator_keySet() local
H A DLinkedHashMapTest.java844 ArrayList<String> expectedKeys = new ArrayList<>(keys); in test_spliterator_keySet() local
846 SpliteratorTester.runBasicIterationTests_unordered(keys.spliterator(), expectedKeys, in test_spliterator_keySet() local
/aosp_15_r20/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DExpectedKeyboardBuilder.java222 final ExpectedKey[] expectedKeys = joinKeys(keys); in insertKeysAtRow() local
239 final ExpectedKey[] expectedKeys = joinKeys(keys); in addKeysOnTheLeftOfRow() local
/aosp_15_r20/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
H A DFactoryModuleBuilderTest.java499 Set<Key<?>> expectedKeys = in testFactoryBindingDependencies() local
530 private void validateDependencies(Set<Key<?>> expectedKeys, Binding<?> binding) { in validateDependencies()

12345678910>>...15