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

1 2 3 4 5 6 7 8 910

  /external/antlr/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/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());
  /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/cldr/tools/java/org/unicode/cldr/util/
IsoRegionData.java 119 available.addAll(_numeric.keySet());
120 available.addAll(_alpha3.keySet());
121 available.addAll(_fips10.keySet());
122 available.addAll(_internet.keySet());
  /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.
ForwardingMapTest.java 84 @Override public Set<K> keySet() {
222 forward().keySet();
223 assertEquals("[keySet]", getCalls());
311 @Override public Set<String> keySet() {
315 callAllPublicMethods(Set.class, forward.keySet());
ForwardingSortedMapTest.java 80 @Override public Set<K> keySet() {
  /external/cldr/tools/java/org/unicode/cldr/tool/
FindAttributeValueDifferences.java 66 Set<String> elements = new TreeSet<>(newValues.keySet());
67 elements.addAll(oldValues.keySet());
72 Set<String> attributes = new TreeSet<>(newSubmap.keySet());
73 attributes.addAll(oldSubmap.keySet());
77 Set<String> newAttValues = CldrUtility.ifNull(newSubmap.get(attribute), Collections.EMPTY_MAP).keySet();
79 Set<String> oldAttValues = CldrUtility.ifNull(oldSubmap.get(attribute), Collections.EMPTY_MAP).keySet();
SubdivisionNames.java 66 public Set<String> keySet() {
67 return subdivisionToName.keySet();
  /art/tools/class2greylist/src/com/android/class2greylist/
AnnotationPropertyWriter.java 37 mColumns.addAll(contents.keySet());
  /external/antlr/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();
  /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/antlr/tool/src/main/java/org/antlr/tool/
GrammarInsufficientPredicatesMessage.java 66 alts.addAll(altToLocations.keySet());
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
SafeTreeMapTest.java 94 SerializableTester.reserializeAndAssert(map.keySet());
SafeTreeSetTest.java 78 SerializableTester.reserializeAndAssert(map.keySet());
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
MemoryMultiReportOutput.java 61 assertEquals(Collections.emptySet(), files.keySet());
66 path, files.keySet()), files.get(path));
74 assertEquals(Collections.singleton(path), files.keySet());

Completed in 827 milliseconds

1 2 3 4 5 6 7 8 910