Searched refs:getAll (Results 1 - 25 of 74) sorted by relevance

123

/external/mockito/src/main/java/org/mockito/internal/verification/
H A DRegisteredInvocations.java19 List<Invocation> getAll(); method in interface:RegisteredInvocations
H A DSingleRegisteredInvocation.java26 public List<Invocation> getAll() { method in class:SingleRegisteredInvocation
H A DDefaultRegisteredInvocations.java39 public List<Invocation> getAll() { method in class:DefaultRegisteredInvocations
/external/mockito/src/test/java/org/mockito/internal/verification/
H A DDefaultRegisteredInvocationsTest.java34 assertTrue(invocations.getAll().contains(simpleMethod));
35 assertFalse(invocations.getAll().contains(toString));
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheEvictionTest.java190 getAll(cache, asList(0, 1, 2));
195 getAll(cache, asList(10, 11, 12));
200 getAll(cache, asList(6, 7, 8));
205 getAll(cache, asList(13, 14, 15));
223 getAll(cache, asList(0, 1, 2));
228 getAll(cache, asList(10));
233 getAll(cache, asList(6, 7, 8));
238 getAll(cache, asList(15));
243 getAll(cache, asList(9));
248 getAll(cach
303 private void getAll(LoadingCache<Integer, Integer> cache, List<Integer> keys) { method in class:CacheEvictionTest
[all...]
H A DForwardingLoadingCacheTest.java71 expect(mock.getAll(ImmutableList.of("key"))).andReturn(ImmutableMap.of("key", Boolean.TRUE));
73 assertEquals(ImmutableMap.of("key", Boolean.TRUE), forward.getAll(ImmutableList.of("key")));
H A DCacheExpirationTest.java270 getAll(cache, asList(0, 1, 2));
280 getAll(cache, asList(5, 7, 9));
322 getAll(cache, asList(0, 1, 2));
371 getAll(cache, asList(1, 3));
377 getAll(cache, asList(6, 8));
384 getAll(cache, asList(1));
443 private void getAll(LoadingCache<Integer, Integer> cache, List<Integer> keys) { method in class:CacheExpirationTest
H A DCacheLoadingTest.java338 assertEquals(ImmutableMap.of(), cache.getAll(ImmutableList.<Integer>of()));
344 assertEquals(ImmutableMap.of(1, 1), cache.getAll(asList(1)));
351 assertEquals(ImmutableMap.of(1, 1, 2, 2, 3, 3, 4, 4), cache.getAll(asList(1, 2, 3, 4)));
358 assertEquals(ImmutableMap.of(2, 2, 3, 3), cache.getAll(asList(2, 3)));
366 assertEquals(ImmutableMap.of(4, 4, 5, 5), cache.getAll(asList(4, 5)));
384 assertEquals(ImmutableMap.of(), cache.getAll(ImmutableList.<Integer>of()));
390 assertEquals(ImmutableMap.of(1, 1), cache.getAll(asList(1)));
397 assertEquals(ImmutableMap.of(1, 1, 2, 2, 3, 3, 4, 4), cache.getAll(asList(1, 2, 3, 4)));
404 assertEquals(ImmutableMap.of(2, 2, 3, 3), cache.getAll(asList(2, 3)));
412 assertEquals(ImmutableMap.of(4, 4, 5, 5), cache.getAll(asLis
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DForwardingLoadingCache.java57 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { method in class:ForwardingLoadingCache
58 return delegate().getAll(keys);
H A DAbstractLoadingCache.java34 * {@link #getUnchecked}, {@link #get(Object, Callable)}, and {@link #getAll} are implemented in
60 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { method in class:AbstractLoadingCache
H A DLoadingCache.java128 ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException; method in interface:LoadingCache
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/comments/
H A DCommentsCollection.java60 for (Comment c : getAll()){
73 public List<Comment> getAll(){ method in class:CommentsCollection
/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp120 getAll(AllChildren, MatchingChild);
137 void getAll(std::vector<StringRef> &Results, function in class:clang::tooling::FileMatchTrieNode
150 It->getValue().getAll(Results, Children.end());
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DPreferencesFacade.java63 return p.getAll().get(key);
96 return getPref(filename).getAll();
/external/guice/core/src/com/google/inject/internal/
H A DSingleParameterInjector.java47 static Object[] getAll(Errors errors, InternalContext context, method in class:SingleParameterInjector
H A DConstructorInjector.java104 Object[] parameters = SingleParameterInjector.getAll(errors, context, parameterInjectors);
H A DSingleMethodInjector.java84 parameters = SingleParameterInjector.getAll(errors, context, parameterInjectors);
/external/icu/icu4c/source/common/unicode/
H A Denumset.h52 inline uint32_t getAll() const { function in class:EnumSet
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformation.java278 ASN1EncodableVector allCSAttrs = unsignedAttributeTable.getAll(CMSAttributes.counterSignature);
460 if (unsignedAttrTable != null && unsignedAttrTable.getAll(CMSAttributes.cmsAlgorithmProtect).size() > 0)
466 ASN1EncodableVector protectionAttributes = signedAttrTable.getAll(CMSAttributes.cmsAlgorithmProtect);
525 && signedAttrTable.getAll(CMSAttributes.counterSignature).size() > 0)
533 ASN1EncodableVector csAttrs = unsignedAttrTable.getAll(CMSAttributes.counterSignature);
620 && unsignedAttrTable.getAll(attrOID).size() > 0)
632 ASN1EncodableVector v = signedAttrTable.getAll(attrOID);
/external/libbackup/src/com/google/android/libraries/backup/shadow/
H A DSharedPreferencesBackupHelperSimulator.java87 Map<String, ?> prefs = context.getSharedPreferences(prefGroup, MODE_PRIVATE).getAll();
119 if (context.getSharedPreferences(prefGroup, MODE_PRIVATE).getAll().isEmpty()) {
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowSharedPreferencesTest.java37 assertThat(sharedPreferences.getAll()).hasSize(0);
82 assertThat(sharedPreferences.getAll()).hasSize(6);
83 assertThat(sharedPreferences.getAll().get("int")).isEqualTo(2);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DRelation.java121 public Set<V> getAll(Object key) { method in class:Relation
184 for (V value : t.getAll(key)) {
314 Set<V> values = toBeRemoved.getAll(key);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRelation.java119 public Set<V> getAll(Object key) { method in class:Relation
182 for (V value : t.getAll(key)) {
312 Set<V> values = toBeRemoved.getAll(key);
/external/libbackup/src/com/google/android/libraries/backup/
H A DPersistentBackupAgentHelper.java100 Map<String, ?> srcMap = srcSharedPreferences.getAll();
169 for (Map.Entry<String, ?> entry : backupSharedPreferences.getAll().entrySet()) {
/external/icu/icu4c/source/test/intltest/
H A Ditutil.cpp760 logln("Value now: %d\n", flags.getAll());
762 logln("clear -Value now: %d\n", flags.getAll());
768 logln("set THING1 -Value now: %d\n", flags.getAll());
774 logln("set THING3 -Value now: %d\n", flags.getAll());
783 logln("remove THING2 -Value now: %d\n", flags.getAll());
789 logln("remove THING1 -Value now: %d\n", flags.getAll());
793 logln("clear -Value now: %d\n", flags.getAll());

Completed in 1243 milliseconds

123