/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableMultimapTest.java | 41 .put(Maps.immutableEntry("one", 1)) 49 builder.put(Maps.immutableEntry("one", (Integer) null)); 54 builder.put(Maps.immutableEntry((String) null, 1));
|
TreeBasedTableTest.java | 393 assertTrue(entrySet.contains(Maps.immutableEntry(10, 'X'))); 394 assertTrue(entrySet.contains(Maps.immutableEntry(20, 'X'))); 395 assertFalse(entrySet.contains(Maps.immutableEntry(15, 'X'))); 397 assertFalse(entrySet.contains(Maps.immutableEntry(10, 'X'))); 398 assertTrue(entrySet.contains(Maps.immutableEntry(20, 'X'))); 399 assertFalse(entrySet.contains(Maps.immutableEntry(15, 'X'))); 410 assertFalse(entrySet.remove(Maps.immutableEntry(10, 'X'))); 411 assertTrue(entrySet.remove(Maps.immutableEntry(20, 'X'))); 412 assertFalse(entrySet.remove(Maps.immutableEntry(15, 'X'))); 414 assertTrue(entrySet.remove(Maps.immutableEntry(10, 'X'))) [all...] |
/external/guice/core/src/com/google/inject/internal/ |
Initializer.java | 23 import com.google.common.collect.Maps; 49 /** Maps from instances that need injection to the MembersInjector that will inject them. */ 51 Maps.newIdentityHashMap(); 53 /** Maps instances that need injection to a source that registered them */ 54 private final Map<Object, InjectableReference<?>> pendingInjection = Maps.newIdentityHashMap();
|
InternalContext.java | 21 import com.google.common.collect.Maps; 41 private Map<Object, ConstructionContext<?>> constructionContexts = Maps.newHashMap();
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
ElementAndAttributePolicies.java | 33 import com.google.common.collect.Maps; 116 anded = Maps.newLinkedHashMap(); 127 anded = Maps.newLinkedHashMap();
|
/external/testng/src/main/java/org/testng/xml/ |
XmlInclude.java | 4 import org.testng.collections.Maps; 20 private Map<String, String> m_parameters = Maps.newHashMap(); 149 Map<String, String> result = Maps.newHashMap();
|
/packages/apps/Email/tests/src/com/android/email/ |
MockSharedPreferences.java | 19 import com.google.common.collect.Maps; 33 private HashMap<String, Object> mValues = Maps.newHashMap(); 34 private HashMap<String, Object> mTempValues = Maps.newHashMap();
|
/packages/apps/UnifiedEmail/src/com/android/mail/perf/ |
Timer.java | 23 import com.google.common.collect.Maps; 77 private final Map<String, ArrayList<PerformancePoint>> mPoints = Maps.newHashMap(); 78 private final Map<String, Integer> mCounts = Maps.newHashMap();
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Multimaps.java | 29 import com.google.common.collect.Maps.EntryTransformer; 427 Maps.transformValues(delegate.asMap(), new Function<Collection<V>, Collection<V>>() { 539 return Maps.unmodifiableEntrySet(delegate().entries()); 758 return Maps.unmodifiableEntrySet((Set<Entry<K, V>>) entries); 760 return new Maps.UnmodifiableEntries<K, V>( 863 return map.entrySet().contains(Maps.immutableEntry(key, value)); [all...] |
/external/testng/src/main/java/org/testng/internal/ |
MethodGroupsHelper.java | 16 import org.testng.collections.Maps;
129 Map<String, List<ITestNGMethod>> result = Maps.newHashMap();
159 Map<ITestNGMethod, ITestNGMethod> runningMethods = Maps.newHashMap();
164 Map<String, String> runningGroups = Maps.newHashMap();
171 Map<ITestNGMethod, ITestNGMethod> newMethods = Maps.newHashMap();
218 newMethods = Maps.newHashMap();
|
/external/testng/src/main/java/org/testng/reporters/ |
JUnitReportReporter.java | 11 import org.testng.collections.Maps; 36 Map<Class<?>, Set<ITestResult>> results = Maps.newHashMap(); 37 Map<Class<?>, Set<ITestResult>> failedConfigurations = Maps.newHashMap(); 38 ListMultiMap<Object, ITestResult> befores = Maps.newListMultiMap(); 39 ListMultiMap<Object, ITestResult> afters = Maps.newListMultiMap(); 60 // ListMultiMap<Class<?>, ITestResult> beforeConfigurations = Maps.newListMultiMap(); 61 // ListMultiMap<Class<?>, ITestResult> afterConfigurations = Maps.newListMultiMap(); 73 // Map<Object, Iterator<ITestResult>> befores = Maps.newHashMap(); 79 // Map<Class<?>, Iterator<ITestResult>> afters = Maps.newHashMap(); 195 Map<ITestNGMethod, ITestResult> seen = Maps.newHashMap() [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/config/ |
CaliperConfigLoader.java | 24 import com.google.common.collect.Maps; 82 Map<String, String> map = Maps.newHashMap(defaults);
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
ProductionComponentProcessingStep.java | 21 import com.google.common.collect.Maps; 94 Map<Element, ValidationReport<TypeElement>> builderReportsByComponent = Maps.newHashMap();
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
AnnotationWriter.java | 20 import com.google.common.collect.Maps; 32 private final SortedMap<String, Writable> memberMap = Maps.newTreeMap();
|
ConstructorWriter.java | 21 import com.google.common.collect.Maps; 36 this.parameterWriters = Maps.newLinkedHashMap();
|
TypeWriter.java | 19 import com.google.common.collect.Maps; 41 this.fieldWriters = Maps.newLinkedHashMap();
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
Property.java | 13 import com.google.common.collect.Maps; 151 m_arbitraryMap = Maps.newHashMap();
|
/external/guava/guava/src/com/google/common/collect/ |
ArrayListMultimap.java | 112 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys)); 161 Map<K, Collection<V>> map = Maps.newHashMapWithExpectedSize(distinctKeys);
|
HashBasedTable.java | 65 return Maps.newHashMapWithExpectedSize(expectedSize); 91 Maps.newHashMapWithExpectedSize(expectedRows);
|
StandardTable.java | 24 import static com.google.common.collect.Maps.safeContainsKey; 25 import static com.google.common.collect.Maps.safeGet; 31 import com.google.common.collect.Maps.ImprovedAbstractMap; 46 * column key / value secondary maps. This class provides rapid access to 290 && Maps.safeContainsKey(backingRowMap, key); 297 ? Maps.safeGet(backingRowMap, key) 317 V result = Maps.safeRemove(backingRowMap, key); 336 private final class RowEntrySet extends Maps.EntrySet<C, V> { 432 && predicate.apply(Maps.immutableEntry(entry.getKey(), value))) { 519 private class KeySet extends Maps.KeySet<R, V> [all...] |
/external/guava/guava-gwt/test-super/com/google/common/cache/super/com/google/common/cache/ |
TestingCacheLoaders.java | 20 import com.google.common.collect.Maps; 49 Map<K, V> result = Maps.newHashMap(); // allow nulls
|
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
ContinuingHttpServletRequest.java | 19 import com.google.common.collect.Maps; 40 private final Map<String, Object> attributes = Maps.newHashMap();
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
Opcodes.java | 34 import com.google.common.collect.Maps; 88 opcodesByName = Maps.newHashMap();
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
BuilderAnnotationPool.java | 34 import com.google.common.collect.Maps; 48 Maps.newConcurrentMap();
|
BuilderAnnotationSetPool.java | 37 import com.google.common.collect.Maps; 52 Maps.newConcurrentMap();
|