HomeSort by relevance Sort by last modified time
    Searched refs:keySet (Results 151 - 175 of 2278) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeMap.java 524 return putAll(keySet(null), value);
528 * Returns the keyset consisting of all the keys that would produce the given value. Deposits into
532 public UnicodeSet keySet(T value, UnicodeSet result) {
540 for (String key : stringMap.keySet()) {
551 * Returns the keyset consisting of all the keys that would produce the given value.
554 public UnicodeSet keySet(T value) {
555 return keySet(value,null);
559 * Returns the keyset consisting of all the keys that would produce (non-null) values.
561 public UnicodeSet keySet() {
569 result.addAll(stringMap.keySet());
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
ManagedServicesTest.java 148 for (int userId : mExpectedPrimary.get(approvalLevel).keySet()) {
156 for (int userId : mExpectedSecondary.get(approvalLevel).keySet()) {
198 for (int userId : mExpectedPrimary.get(approvalLevel).keySet()) {
205 for (int userId : mExpectedSecondary.get(approvalLevel).keySet()) {
212 for (int userId : backupPrimary.get(approvalLevel).keySet()) {
220 for (int userId : backupSecondary.get(approvalLevel).keySet()) {
489 for (int userId : expectedEnabled.keySet()) {
499 for (int userId : expectedEnabled.keySet()) {
512 for (int userId : expectedEnabled.keySet()) {
527 for (int userId : expectedEnabled.keySet()) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
HashMapTest.java 207 // get the keySet() and values() on the original Map
208 Set keys = map.keySet();
212 assertEquals("keySet() does not work",
218 // values() and keySet() on the cloned() map should be different
223 Set key2 = map2.keySet();
224 assertTrue("keySet() is identical", key2 != keys);
225 assertEquals("keySet() was not cloned",
304 assertTrue(hm.keySet().remove("A"));
353 * java.util.HashMap#keySet()
356 // Test for method java.util.Set java.util.HashMap.keySet()
    [all...]
LinkedHashMapTest.java 253 * java.util.LinkedHashMap#keySet()
256 // Test for method java.util.Set java.util.LinkedHashMap.keySet()
257 Set s = hm.keySet();
265 assertTrue("Failed with null key", m.keySet().contains(null));
266 assertNull("Failed with null key", m.keySet().iterator().next());
272 Iterator it = map.keySet().iterator();
284 assertTrue("Wrong contents", map.keySet().iterator().next().equals(
290 Iterator it2 = map2.keySet().iterator();
301 assertTrue("Wrong contents 2", map2.keySet().iterator().next().equals(
379 // get the keySet() and values() on the original Ma
    [all...]
  /art/test/545-tracing-and-jit/src/
Main.java 116 map.keySet();
132 map.keySet();
148 map.keySet();
164 map.keySet();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/
BaseResultsDialog.java 56 for (ResultType resultType : mResult.getResults().keySet()) {
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
CommonUtil.java 39 final Set<String> keySet = data.keySet();
40 builder.append("[Bundle with ").append(keySet.size()).append(" keys:");
41 for (String key : keySet) {
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
CommonUtil.java 39 final Set<String> keySet = data.keySet();
40 builder.append("[Bundle with ").append(keySet.size()).append(" keys:");
41 for (String key : keySet) {
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
Util.java 39 final Set<String> keySet = data.keySet();
40 builder.append("[Bundle with ").append(keySet.size()).append(" keys:");
41 for (String key : keySet) {
  /development/tools/mkstubs/src/com/android/mkstubs/
AsmAnalyzer.java 85 Set<String> keys = classes.keySet();
  /external/annotation-tools/scene-lib/test/annotations/tests/classfile/cases/
TestTypecastGenericArray.java 33 set = (HashSet<String>) map.keySet().iterator().next();
  /external/apache-http/src/org/apache/http/auth/
AuthSchemeRegistry.java 137 return new ArrayList<String>(registeredSchemes.keySet());
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 174 return new ArrayList<String>(registeredSchemes.keySet());
  /external/apache-http/src/org/apache/http/cookie/
CookieSpecRegistry.java 148 return new ArrayList<String>(registeredSpecs.keySet());
  /external/apache-http/src/org/apache/http/impl/client/
BasicCredentialsProvider.java 107 for (AuthScope current: map.keySet()) {
  /external/guava/guava/src/com/google/common/collect/
AbstractMultimap.java 145 private transient Set<K> keySet;
148 public Set<K> keySet() {
149 Set<K> result = keySet;
150 return (result == null) ? keySet = createKeySet() : result;
154 return new Maps.KeySet<K, Collection<V>>(asMap());
ExplicitOrdering.java 74 return "Ordering.explicit(" + rankMap.keySet() + ")";
ImmutableMapKeySet.java 28 * {@code keySet()} implementation for {@link ImmutableMap}.
91 return map.keySet();
Multimap.java 63 * for (String firstName : multimap.keySet()) {
86 * <li>{@link #keys}, {@link #keySet}, {@link #values}, {@link #entries}, which
171 * keys</i> in the multimap, which is given by {@code keySet().size()} or
270 * so it will not appear in {@link #keySet()}, {@link #asMap()}, or any other
305 Set<K> keySet();
RegularImmutableMultiset.java 66 return map.keySet();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
HashMultimap.java 97 multimap.keySet().size()));
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
AbstractListMultimapTester.java 50 assertEquals(values.size() > 0, multimap().keySet().contains(key));
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractBiMapTest.java 39 Iterator<Integer> iterator = bimap.keySet().iterator();
AbstractMultimapAsMapImplementsMapTest.java 75 keyToRemove = map.keySet().iterator().next();
NewCustomTableTest.java 59 assertThat(table.row("foo").keySet()).has().exactly(2, 3).inOrder();

Completed in 607 milliseconds

1 2 3 4 5 67 8 91011>>