HomeSort by relevance Sort by last modified time
    Searched refs:Maps (Results 201 - 225 of 308) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/guava/guava/src/com/google/common/collect/
MapConstraints.java 602 return Maps.containsEntryImpl(delegate(), o);
608 return Maps.removeEntryImpl(delegate(), o);
676 return Maps.containsEntryImpl(delegate(), o);
692 return Maps.removeEntryImpl(delegate(), o);
Maps.java 70 public final class Maps {
71 private Maps() {}
279 * BiMap<Long, String> map = Maps.synchronizedBiMap(
304 * Computes the difference between two maps. This difference is an immutable
305 * snapshot of the state of the maps at the time this method is called. It
306 * will never change, even if the maps change at a later time.
309 * the supplied maps must be well-behaved with respect to
312 * <p><b>Note:</b>If you only need to know whether two maps have the same
317 * @return the difference between the two maps
331 * Computes the difference between two maps. This difference is an immutabl
    [all...]
ArrayTable.java 110 * column key pair in not in {@code table}, the pair maps to {@code null} in
647 return Maps.<C, Map<R, V>>immutableEntry(columnList.get(index),
793 return Maps.<R, Map<C, V>>immutableEntry(rowList.get(index),
RegularImmutableTable.java 180 Map<A, ImmutableMap.Builder<B, V>> indexBuilder = Maps.newLinkedHashMap();
188 * Builds the value maps of the index and creates an immutable copy of the
193 return ImmutableMap.copyOf(Maps.transformValues(indexBuilder,
221 // value maps are guaranteed to be immutable maps
236 // value maps are guaranteed to be immutable maps
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedListMultimap.java 164 keyToKeyHead = Maps.newHashMap();
165 keyToKeyTail = Maps.newHashMap();
170 keyToKeyHead = Maps.newHashMapWithExpectedSize(expectedKeys);
171 keyToKeyTail = Maps.newHashMapWithExpectedSize(expectedKeys);
Maps.java 67 public final class Maps {
68 private Maps() {}
276 * BiMap<Long, String> map = Maps.synchronizedBiMap(
301 * Computes the difference between two maps. This difference is an immutable
302 * snapshot of the state of the maps at the time this method is called. It
303 * will never change, even if the maps change at a later time.
306 * the supplied maps must be well-behaved with respect to
309 * <p><b>Note:</b>If you only need to know whether two maps have the same
314 * @return the difference between the two maps
328 * Computes the difference between two maps. This difference is an immutabl
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheReferencesTest.java 19 import static com.google.common.collect.Maps.immutableEntry;
CacheBuilderTest.java 33 import com.google.common.collect.Maps;
508 Map<String, String> removalNotifications = Maps.newHashMap();
CacheTesting.java 33 import com.google.common.collect.Maps;
314 Map<K, V> map = Maps.newLinkedHashMap();
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /frameworks/base/services/core/java/com/android/server/
NetworkManagementService.java 80 import com.google.android.collect.Maps;
178 private HashMap<String, Long> mActiveQuotas = Maps.newHashMap();
180 private HashMap<String, Long> mActiveAlerts = Maps.newHashMap();
197 private HashMap<String, IdleTimerParams> mActiveIdleTimers = Maps.newHashMap();
504 mActiveQuotas = Maps.newHashMap();
514 mActiveAlerts = Maps.newHashMap();
    [all...]
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.6/
gradle-tooling-api-1.6.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.6-rc-1/
gradle-tooling-api-1.6-rc-1.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.7/
gradle-tooling-api-1.7.jar 
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractListMultimapTest.java 104 Map<String, Collection<Integer>> equalMap = Maps.newHashMap();
111 Map<String, Collection<Integer>> unequalMap = Maps.newHashMap();
AbstractMultisetTest.java 647 assertFalse(es.contains(Maps.immutableEntry("a", 3)));
657 assertFalse(es.remove(Maps.immutableEntry("a", 3)));
  /external/jsilver/src/com/google/streamhtmlparser/impl/
HtmlParserImpl.java 20 import com.google.common.collect.Maps;
123 Maps.newHashMap();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassProto.java 39 import com.google.common.collect.Maps;
128 LinkedHashMap<String, ClassDef> interfaces = Maps.newLinkedHashMap();
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 43 import com.google.android.collect.Maps;
301 final HashMap<NetworkIdentitySet, ArrayList<Key>> keysByIdent = Maps.newHashMap();
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredAidCache.java 26 import com.google.android.collect.Maps;
45 // mAidServices maps AIDs to services that have registered them.
517 final HashMap<String, Boolean> routingEntries = Maps.newHashMap();
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 20 import com.google.android.collect.Maps;
71 private HashMap<String, ArrayList<ValuesDelta>> mEntries = Maps.newHashMap();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 26 import com.google.common.collect.Maps;
129 mAttributeMap = Maps.newHashMapWithExpectedSize(expectedAttributeCount);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 47 import com.google.common.collect.Maps;
294 Maps.newHashMapWithExpectedSize(resourceFiles.size());

Completed in 2014 milliseconds

1 2 3 4 5 6 7 891011>>