HomeSort by relevance Sort by last modified time
    Searched full:synchronizedset (Results 1 - 17 of 17) sorted by null

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SourceShortcutRefresher.java 37 private final Set<String> mRefreshed = Collections.synchronizedSet(new HashSet<String>());
38 private final Set<String> mRefreshing = Collections.synchronizedSet(new HashSet<String>());
  /libcore/luni/src/main/java/java/util/
LinkedHashSet.java 31 * {@link Collections#synchronizedSet(Set)}.
Collections.java 690 return new SynchronizedSet<Map.Entry<K, V>>(m.entrySet(), mutex);
720 return new SynchronizedSet<K>(m.keySet(), mutex);
767 static class SynchronizedSet<E> extends SynchronizedCollection<E> implements Set<E> {
770 SynchronizedSet(Set<E> set) {
774 SynchronizedSet(Set<E> set, Object mutex) {
859 static class SynchronizedSortedSet<E> extends SynchronizedSet<E> implements SortedSet<E> {
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 152 * @tests java.util.Collections#synchronizedSet(java.util.Set)
157 Collections.synchronizedSet(null);
158 fail("Assert 0: synchronizedSet(set) must throw NPE");
CollectionsTest.java     [all...]
HashtableTest.java 264 "java.util.Collections$SynchronizedSet", s.getClass().getName());
422 "java.util.Collections$SynchronizedSet", s.getClass().getName());
  /external/guava/src/com/google/common/collect/
Synchronized.java 237 return new SynchronizedSet<E>(set, mutex);
241 static class SynchronizedSet<E> extends SynchronizedCollection<E>
243 public SynchronizedSet(Set<E> delegate, @Nullable Object mutex) {
298 static class SynchronizedSortedSet<E> extends SynchronizedSet<E>
997 extends SynchronizedSet<Map.Entry<K, Collection<V>>> {
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 184 * java.util.Collections#synchronizedSet(java.util.Set)
189 Collections.synchronizedSet(null);
190 fail("Assert 0: synchronizedSet(set) must throw NPE");
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java     [all...]
HashtableTest.java 315 // "java.util.Collections$SynchronizedSet", s.getClass().getName());
475 // "java.util.Collections$SynchronizedSet", s.getClass().getName());
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/
DownloadManagerBaseTest.java 133 private Set<Long> downloadIds = Collections.synchronizedSet(new HashSet<Long>());
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 360 eventListeners = Collections.synchronizedSet(new HashSet<SIPTransactionEventListener>());
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 128 private Set<Long> downloadIds = Collections.synchronizedSet(new HashSet<Long>());
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest3.java 951 Object col = Collections.synchronizedSet(SET);
    [all...]
  /prebuilt/sdk/13/
android.jar 
  /dalvik/hit/samples/
android.hprof     [all...]
  /prebuilt/sdk/5/
android.jar 

Completed in 469 milliseconds