HomeSort by relevance Sort by last modified time
    Searched defs:keySet (Results 1 - 25 of 1020) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DictionaryExtensions.cs 106 public static HashSet<object> keySet(IDictionary map) {
111 public static HashSet<TKey> keySet<TKey, TValue>(IDictionary<TKey, TValue> map) {
117 public static HashSet<TKey> keySet<TKey, TValue>(Dictionary<TKey, TValue> map) {
122 public static HashSet<object> keySet<TKey, TValue>(SortedList<TKey, TValue> map) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DictionaryExtensions.cs 111 public static HashSet<object> keySet( this IDictionary map )
117 public static HashSet<TKey> keySet<TKey, TValue>( this IDictionary<TKey, TValue> map )
124 public static HashSet<TKey> keySet<TKey, TValue>( this Dictionary<TKey, TValue> map )
130 public static HashSet<object> keySet<TKey, TValue>( this SortedList<TKey, TValue> map )
  /external/guava/guava/src/com/google/common/collect/
AbstractSortedKeySortedSetMultimap.java 52 public SortedSet<K> keySet() {
53 return (SortedSet<K>) super.keySet();
EmptyImmutableBiMap.java 70 public ImmutableSet<Object> keySet() {
EmptyImmutableSortedMap.java 34 private final transient ImmutableSortedSet<K> keySet;
37 this.keySet = ImmutableSortedSet.emptySet(comparator);
43 this.keySet = ImmutableSortedSet.emptySet(comparator);
52 public ImmutableSortedSet<K> keySet() {
53 return keySet;
RegularImmutableSortedMap.java 32 private final transient RegularImmutableSortedSet<K> keySet;
35 RegularImmutableSortedMap(RegularImmutableSortedSet<K> keySet, ImmutableList<V> valueList) {
36 this.keySet = keySet;
41 RegularImmutableSortedSet<K> keySet,
45 this.keySet = keySet;
64 private final ImmutableList<K> keyList = keySet().asList();
85 public ImmutableSortedSet<K> keySet() {
86 return keySet;
    [all...]
StandardRowSortedTable.java 73 return (SortedSet<R>) rowMap().keySet();
93 public SortedSet<R> keySet() {
94 return (SortedSet<R>) super.keySet();
ForwardingMultimap.java 92 public Set<K> keySet() {
93 return delegate().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();
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
BundleCoverageImpl.java 82 packageNames.addAll(classesByPackage.keySet());
83 packageNames.addAll(sourceFilesByPackage.keySet());
  /libcore/ojluni/src/main/java/sun/util/resources/
OpenListResourceBundle.java 97 return lookup.keySet();
101 public Set<String> keySet() {
102 if (keyset != null) {
103 return keyset;
108 ks.addAll(parent.keySet());
111 if (keyset == null) {
112 keyset = ks;
115 return keyset;
168 private volatile Set<String> keyset; field in class:OpenListResourceBundle
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableMapTest.java 86 // keySet
87 Set<?> keySet = map.keySet();
88 t_KeySet(keySet);
100 void t_KeySet(Set<?> keySet) {
101 // keySet should be a set of the strings "0" to "99"
105 keySet.contains("0"));
107 keySet.contains("50"));
110 !keySet.contains("100"));
119 keySet.containsAll(hs))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTransformValuesUnmodifiableIteratorTest.java 57 @Override public Set<K> keySet() {
60 return delegate.keySet();
63 return Iterators.unmodifiableIterator(delegate.keySet().iterator());
66 return delegate.keySet().removeAll(c);
69 return delegate.keySet().retainAll(c);
260 Set<String> keys = map.keySet();
348 // GWT's HashMap.keySet().removeAll(null) doesn't throws NPE.
  /libcore/ojluni/src/main/java/java/util/
SortedMap.java 34 * {@code entrySet}, {@code keySet} and {@code values} methods).
243 Set<K> keySet();
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 150 NavigableSet<K> keySet();
  /frameworks/base/telephony/java/android/telephony/mbms/
ServiceInfo.java 104 Set<Locale> keySet = names.keySet();
105 dest.writeInt(keySet.size());
106 for (Locale l : keySet) {
145 return Collections.unmodifiableSet(names.keySet());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 62 assertEquals("@+id/Button01", ids.keySet().iterator().next());
113 "@+id/Button012", "@+id/LinearLayout01"), ids.keySet());
157 .keySet());
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DoubleKeyMap.java 42 public Set<Key1> keySet() {
43 return data.keySet();
47 public Set<Key2> keySet(Key1 k1) {
50 return data2.keySet();
  /frameworks/support/collection/src/main/java/androidx/collection/
ArrayMap.java 190 public Set<K> keySet() {
  /frameworks/support/media/api21/android/support/v4/media/
MediaMetadataCompatApi21.java 30 public static Set<String> keySet(Object metadataObj) {
31 return ((MediaMetadata)metadataObj).keySet();
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DbQueryUtils.java 93 checkForSupportedColumns(projectionMap.keySet(), values, "Is invalid.");
101 for (String requestedColumn : values.keySet()) {
  /external/testng/src/main/java/org/testng/internal/
MethodGroupsHelper.java 217 includedMethods.addAll(newMethods.keySet());
221 outMethods.addAll(runningMethods.keySet());
222 outGroups.addAll(runningGroups.keySet());
  /development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
StatusTracker.java 78 public Set<String> keySet() {
79 return mStatusMap.keySet();
  /external/annotation-tools/scene-lib/src/annotations/util/coll/
WrapperMap.java 82 public Set<K> keySet() {
83 return back.keySet();
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarInsufficientPredicatesMessage.java 65 alts.addAll(altToLocations.keySet());

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 91011>>