HomeSort by relevance Sort by last modified time
    Searched refs:Maps (Results 226 - 250 of 569) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/caliper/caliper/src/main/java/com/google/caliper/util/
ShortDuration.java 25 import com.google.common.collect.Maps;
326 Map<TimeUnit, BigDecimal> map = Maps.newEnumMap(TimeUnit.class);
336 Map<TimeUnit, Long> map = Maps.newEnumMap(TimeUnit.class);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractBiMap.java 39 * supporting {@code IdentityHashMap} backing maps.
81 * Specifies the delegate maps going in each direction. Called by the
207 return Maps.keyIterator(entrySet().iterator());
230 return Maps.valueIterator(entrySet().iterator());
335 return Maps.containsEntryImpl(delegate(), o);
ImmutableMap.java 33 * GWT emulation of {@link ImmutableMap}. For non sorted maps, it is a thin
36 * for empty, singleton and regular maps respectively. For sorted maps, it's
85 return Maps.immutableEntry(key, value);
167 Map<K, V> orderPreservingCopy = Maps.newLinkedHashMap();
325 return Maps.equalsImpl(this, object);
335 return Maps.toStringImpl(this);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
UnmodifiableCollectionTests.java 27 import com.google.common.collect.Maps;
290 Maps.immutableEntry(sampleKey, sampleValueAsCollection));
305 Maps.immutableEntry(sampleKey, sampleValue));
  /external/guice/core/src/com/google/inject/util/
Modules.java 23 import com.google.common.collect.Maps;
203 Maps.newHashMap();
226 final Map<Scope, List<Object>> scopeInstancesInUse = Maps.newHashMap();
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 25 import com.google.common.collect.Maps;
276 Map<ParameterListKey, AssistedConstructor<?>> paramsToConstructor = Maps.newHashMap();
285 Map<Method, AssistedConstructor<?>> result = Maps.newHashMap();
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/facade/
FacadeConfiguration.java 29 import com.google.common.collect.Maps;
188 Map<String, MethodDescriptor> map = Maps.newHashMap();
204 Map<String, MethodDescriptor> map = Maps.newHashMap();
  /external/smali/smali/src/test/java/
ImplicitReferenceTest.java 33 import com.google.common.collect.Maps;
119 Map<String, Field> fields = Maps.newHashMap();
213 Map<String, Field> fields = Maps.newHashMap();
  /external/testng/src/main/java/org/testng/reporters/
JUnitXMLReporter.java 8 import org.testng.collections.Maps;
36 private static final Map<String, Pattern> ATTR_ESCAPES= Maps.newHashMap();
57 private Map<String, String> m_fileNameMap = Maps.newHashMap();
JqReporter.java 10 import org.testng.collections.Maps;
26 private Map<String, String> m_testMap = Maps.newHashMap();
135 ListMultiMap<Class<?>, ITestResult> map = Maps.newListMultiMap();
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsConfig.java 30 import com.google.common.collect.Maps;
56 private static final Map<String, String> sKeyTypeMap = Maps.newHashMap();
99 private static final Map<Integer, MmsConfig> sSubIdToMmsConfigMap = Maps.newHashMap();
  /bionic/tests/
utils.h 49 class Maps {
51 static bool parse_maps(std::vector<map_record>* maps) {
52 FILE* fp = fopen("/proc/self/maps", "re");
88 maps->push_back(record);
  /external/guava/guava/src/com/google/common/collect/
EnumHashBiMap.java 81 Maps.<V, K>newHashMapWithExpectedSize(
ForwardingSortedMap.java 103 protected class StandardKeySet extends Maps.SortedKeySet<K, V> {
ImmutableEnumMap.java 120 return Maps.immutableEntry(entry.getKey(), entry.getValue());
RegularImmutableSortedMap.java 68 return Maps.immutableEntry(keyList.get(index), valueList.get(index));
StandardRowSortedTable.java 99 return new Maps.SortedKeySet<R, Map<C, V>>(this);
Maps.java 72 * "http://code.google.com/p/guava-libraries/wiki/CollectionUtilitiesExplained#Maps">
73 * {@code Maps}</a>.
82 public final class Maps {
83 private Maps() {}
113 return Iterators.transform(entryIterator, Maps.<K>keyFunction());
117 return Iterators.transform(entryIterator, Maps.<V>valueFunction());
364 * Computes the difference between two maps. This difference is an immutable
365 * snapshot of the state of the maps at the time this method is called. It
366 * will never change, even if the maps change at a later time.
369 * the supplied maps must be well-behaved with respect t
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
SimpleAbstractMultisetTest.java 67 final Map<E, Integer> backingMap = Maps.newHashMap();
  /external/jcommander/src/main/java/com/beust/jcommander/internal/
DefaultConverterFactory.java 49 m_classConverters = Maps.newHashMap();
  /external/testng/src/main/java/org/testng/
TestRunner.java 21 import org.testng.collections.Maps;
105 transient private Map<Class<?>, ITestClass> m_classMap = Maps.newLinkedHashMap();
131 private Map<String, List<String>> m_metaGroups = Maps.newHashMap();
585 Map<String, String> result = Maps.newHashMap();
    [all...]
  /external/testng/src/main/java/org/testng/collections/
MultiMap.java 11 protected final Map<K, C> m_objects = Maps.newHashMap();
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
ConfigGenerator.java 58 import com.google.android.collect.Maps;
62 * provides utility methods to parse build.prop and attrs.xml to generate the appropriate maps.
204 Map<String, String> map = Maps.newHashMap();
217 Map<String, Map<String, Integer>> map = Maps.newHashMap();
236 attributeMap = Maps.newHashMap();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 24 import com.google.common.collect.Maps;
60 private Map<String, Image> mIconMap = Maps.newHashMap();
61 private Map<URL, Image> mUrlMap = Maps.newHashMap();
62 private Map<String, ImageDescriptor> mImageDescMap = Maps.newHashMap();
  /development/tools/idegen/src/com/android/idegen/
MakeFileParser.java 24 import com.google.common.collect.Maps;
75 values = Maps.newHashMap();

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>