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

1 2 3 4 5 6 7 8 91011>>

  /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...]
Support_MapTest2.java 44 assertTrue("Should not have keys", !map.keySet().iterator()
58 assertTrue("Should not have keys", !map.keySet().iterator()
  /libcore/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...]
Support_MapTest2.java 44 assertTrue("Should not have keys", !map.keySet().iterator()
58 assertTrue("Should not have keys", !map.keySet().iterator()
  /external/stlport/test/unit/
set_test.cpp 396 typedef set<Key, KeyCmp> KeySet;
397 KeySet keySet;
398 keySet.insert(Key(1));
399 keySet.insert(Key(2));
400 keySet.insert(Key(3));
401 keySet.insert(Key(4));
403 CPPUNIT_ASSERT( keySet.count(Key(1)) == 1 );
404 CPPUNIT_ASSERT( keySet.count(1) == 1 );
405 CPPUNIT_ASSERT( keySet.count(5) == 0 )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
set_test.cpp 396 typedef set<Key, KeyCmp> KeySet;
397 KeySet keySet;
398 keySet.insert(Key(1));
399 keySet.insert(Key(2));
400 keySet.insert(Key(3));
401 keySet.insert(Key(4));
403 CPPUNIT_ASSERT( keySet.count(Key(1)) == 1 );
404 CPPUNIT_ASSERT( keySet.count(1) == 1 );
405 CPPUNIT_ASSERT( keySet.count(5) == 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
set_test.cpp 396 typedef set<Key, KeyCmp> KeySet;
397 KeySet keySet;
398 keySet.insert(Key(1));
399 keySet.insert(Key(2));
400 keySet.insert(Key(3));
401 keySet.insert(Key(4));
403 CPPUNIT_ASSERT( keySet.count(Key(1)) == 1 );
404 CPPUNIT_ASSERT( keySet.count(1) == 1 );
405 CPPUNIT_ASSERT( keySet.count(5) == 0 )
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheEvictionTest.java 171 Set<Integer> keySet = cache.asMap().keySet();
172 ASSERT.that(keySet).hasContentsAnyOrder(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
177 ASSERT.that(keySet).hasContentsAnyOrder(3, 4, 5, 6, 7, 8, 9, 0, 1, 2);
182 ASSERT.that(keySet).hasContentsAnyOrder(6, 7, 8, 9, 0, 1, 2, 10, 11, 12);
187 ASSERT.that(keySet).hasContentsAnyOrder(9, 0, 1, 2, 10, 11, 12, 6, 7, 8);
192 ASSERT.that(keySet).hasContentsAnyOrder(2, 10, 11, 12, 6, 7, 8, 13, 14, 15);
204 Set<Integer> keySet = cache.asMap().keySet();
205 ASSERT.that(keySet).hasContentsAnyOrder(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
    [all...]
CacheExpirationTest.java 143 assertEquals(1, Iterators.size(cache.asMap().keySet().iterator()));
262 Set<Integer> keySet = cache.asMap().keySet();
263 ASSERT.that(keySet).hasContentsAnyOrder(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
267 ASSERT.that(keySet).hasContentsAnyOrder(1, 2, 3, 4, 5, 6, 7, 8, 9);
273 ASSERT.that(keySet).hasContentsAnyOrder(3, 4, 5, 6, 7, 8, 9, 0, 1, 2);
277 ASSERT.that(keySet).hasContentsAnyOrder(4, 5, 6, 7, 8, 9, 0, 1, 2);
282 ASSERT.that(keySet).hasContentsAnyOrder(4, 6, 8, 0, 1, 2, 5, 7, 9);
286 ASSERT.that(keySet).hasContentsAnyOrder(6, 8, 0, 1, 2, 5, 7, 9);
288 ASSERT.that(keySet).hasContentsAnyOrder(6, 8, 0, 1, 2, 5, 7, 9)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
SourceCSSTokenizer.re2js 47 this._propertyKeywords = WebInspector.cssNameCompletions.keySet();
97 ].keySet();
99 this._mediaTypes = ["all", "aural", "braille", "embossed", "handheld", "import", "print", "projection", "screen", "tty", "tv"].keySet();
CSSKeywordCompletions.js 71 ].keySet();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapExtendTest.java 141 assertEquals(tm.keySet(), treeMap.keySet());
160 assertEquals(subMap_default.keySet(), treeMap.keySet());
    [all...]
AbstractMapTest.java 74 * @tests java.util.AbstractMap#keySet()
78 assertSame("HashMap(0)", map1.keySet(), map1.keySet());
81 assertSame("HashMap(10)", map2.keySet(), map2.keySet());
84 assertSame("EMPTY_MAP", map3.keySet(), map3.keySet());
87 assertSame("IdentityHashMap", map4.keySet(), map4.keySet());
90 assertSame("LinkedHashMap", map5.keySet(), map5.keySet())
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 83 map.keySet().toArray());
97 found.keySet().toArray());
111 found.keySet().toArray());
120 found.keySet().toArray());
130 found.keySet().toArray());
139 found.keySet().toArray());
151 found.keySet().toArray());
153 for (String key : found.keySet()) {
173 found.keySet().toArray());
175 for (String key : found.keySet()) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldLinkedHashMapTest.java 35 Iterator iterator = map.keySet().iterator();
51 iterator = map.keySet().iterator();
  /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();
  /external/guava/guava-tests/test/com/google/common/collect/
TreeMultimapExplicitTest.java 99 ASSERT.that(tree.keySet()).hasContentsInOrder("tree", "google");
104 ASSERT.that(copy.keySet()).hasContentsInOrder("google", "tree");
131 ASSERT.that(multimap.keySet()).hasContentsInOrder(null, "tree", "google");
184 SortedSet<String> keySet = multimap.keySet();
186 assertEquals(null, keySet.first());
187 assertEquals("google", keySet.last());
188 assertEquals(StringLength.COMPARATOR, keySet.comparator());
189 assertEquals(Sets.newHashSet(null, "tree"), keySet.headSet("yahoo"));
190 assertEquals(Sets.newHashSet("google"), keySet.tailSet("yahoo"))
    [all...]
  /libcore/luni/src/main/java/java/util/
ListResourceBundle.java 52 Iterator<String> local = table.keySet().iterator();
94 Iterator<String> it = table.keySet().iterator();
137 return table.keySet();
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractMapTest.java 74 * java.util.AbstractMap#keySet()
78 assertSame("HashMap(0)", map1.keySet(), map1.keySet());
81 assertSame("HashMap(10)", map2.keySet(), map2.keySet());
84 assertSame("EMPTY_MAP", map3.keySet(), map3.keySet());
87 assertSame("IdentityHashMap", map4.keySet(), map4.keySet());
90 assertSame("LinkedHashMap", map5.keySet(), map5.keySet())
    [all...]
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
ExchangeServiceAccountTests.java 68 assertEquals(4, errorMap.keySet().size());
73 assertEquals(2, errorMap.keySet().size());
82 assertEquals(4, errorMap.keySet().size());
87 assertEquals(1, errorMap.keySet().size());
95 assertEquals(1, errorMap.keySet().size());
101 assertEquals(0, errorMap.keySet().size());
  /packages/apps/Exchange/tests/src/com/android/exchange/
ExchangeServiceAccountTests.java 68 assertEquals(4, errorMap.keySet().size());
73 assertEquals(2, errorMap.keySet().size());
82 assertEquals(4, errorMap.keySet().size());
87 assertEquals(1, errorMap.keySet().size());
95 assertEquals(1, errorMap.keySet().size());
101 assertEquals(0, errorMap.keySet().size());
  /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/smack/src/com/kenai/jbosh/
AbstractBody.java 61 return Collections.unmodifiableSet(attrs.keySet());
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSuggestionExtras.java 46 return mMap.keySet();

Completed in 1182 milliseconds

1 2 3 4 5 6 7 8 91011>>