HomeSort by relevance Sort by last modified time
    Searched defs:multimap (Results 51 - 75 of 314) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/
multimap.h 1 // Debugging multimap implementation -*- C++ -*-
25 /** @file debug/multimap.h
40 /// Class std::multimap with safety/checking/debug instrumentation.
43 class multimap class in namespace:__debug
44 : public _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator>,
45 public __gnu_debug::_Safe_sequence<multimap<_Key, _Tp,
48 typedef _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator> _Base;
63 typedef __gnu_debug::_Safe_iterator<_Base_iterator, multimap>
66 multimap> const_iterator;
76 explicit multimap(const _Compare& __comp = _Compare() function in class:__debug::multimap
81 multimap(_InputIterator __first, _InputIterator __last, function in class:__debug::multimap
89 multimap(const multimap& __x) function in class:__debug::multimap
92 multimap(const _Base& __x) function in class:__debug::multimap
101 multimap(initializer_list<value_type> __l, function in class:__debug::multimap
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
multimap.h 1 // Profiling multimap implementation -*- C++ -*-
25 /** @file profile/multimap.h
38 /// Class std::multimap wrapper with performance instrumentation.
41 class multimap class in namespace:__profile
42 : public _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator>
44 typedef _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator> _Base;
67 explicit multimap(const _Compare& __comp = _Compare(), function in class:__profile::multimap
77 multimap(_InputIterator __first, _InputIterator __last, function in class:__profile::multimap
82 multimap(const multimap& __x function in class:__profile::multimap
85 multimap(const _Base& __x) function in class:__profile::multimap
94 multimap(initializer_list<value_type> __l, function in class:__profile::multimap
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/config/
ConfigurationUtil.java 21 import com.android.tradefed.util.MultiMap;
118 } else if (fieldVal instanceof MultiMap) {
119 MultiMap multimap = (MultiMap) fieldVal; local
120 for (Object keyObj : multimap.keySet()) {
121 for (Object valueObj : multimap.get(keyObj)) {
Configuration.java 40 import com.android.tradefed.util.MultiMap;
110 private MultiMap<FieldDef, String> mFieldSources = new MultiMap<>();
530 // Unless the field is a Collection or MultiMap entry, it can only have one source
532 !MultiMap.class.isAssignableFrom(field.field.getType())) {
1079 MultiMap multimap = (MultiMap) value; local
    [all...]
OptionSetter.java 21 import com.android.tradefed.util.MultiMap;
144 MultiMap.class.isAssignableFrom(rawClass)) {
159 "can't handle parameterized type %s; only Collection, Map, and MultiMap "
182 } else if (MultiMap.class.isAssignableFrom(cType)) {
187 "Cannot handle non-parameterized multimap %s. Use a generic MultiMap to "
424 * @param key the key to an entry in a {@link Map} or {@link MultiMap} field or null.
484 } else if (MultiMap.class.isAssignableFrom(field.getType())) {
486 MultiMap map = (MultiMap)field.get(optionSource)
808 MultiMap multimap = (MultiMap)fieldValue; local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableMultimap.java 40 * An immutable {@link Multimap}. Does not permit null keys or values.
42 * <p>Unlike {@link Multimaps#unmodifiableMultimap(Multimap)}, which is
43 * a <i>view</i> of a separate multimap which can still change, an instance of
47 * you easily make a "defensive copy" of a multimap provided to your class by
54 * <p>In addition to methods defined by {@link Multimap}, an {@link #inverse}
68 /** Returns an empty multimap. */
74 * Returns an immutable multimap containing a single entry.
81 * Returns an immutable multimap containing the given entries, in order.
88 * Returns an immutable multimap containing the given entries, in order.
96 * Returns an immutable multimap containing the given entries, in order
502 final ImmutableMultimap<K, V> multimap; field in class:ImmutableMultimap.EntryCollection
    [all...]
ImmutableSetMultimap.java 46 * a <i>view</i> of a separate multimap which can still change, an instance of
50 * you easily make a "defensive copy" of a multimap provided to your class by
69 /** Returns the empty multimap. */
70 // Casting is safe because the multimap will never hold any elements.
77 * Returns an immutable multimap containing a single entry.
86 * Returns an immutable multimap containing the given entries, in order.
98 * Returns an immutable multimap containing the given entries, in order.
112 * Returns an immutable multimap containing the given entries, in order.
127 * Returns an immutable multimap containing the given entries, in order.
152 * Multimap for {@link ImmutableSetMultimap.Builder} that maintains ke
426 private transient final ImmutableSetMultimap<K, V> multimap; field in class:ImmutableSetMultimap.EntrySet
    [all...]
Synchronized.java 505 static <K, V> Multimap<K, V> multimap( method in class:Synchronized
506 Multimap<K, V> multimap, @Nullable Object mutex) {
507 if (multimap instanceof SynchronizedMultimap ||
508 multimap instanceof ImmutableMultimap) {
509 return multimap;
511 return new SynchronizedMultimap<K, V>(multimap, mutex);
515 implements Multimap<K, V> {
523 @Override Multimap<K, V> delegate()
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimap.java 39 * An immutable {@link Multimap}. Does not permit null keys or values.
41 * <p>Unlike {@link Multimaps#unmodifiableMultimap(Multimap)}, which is
42 * a <i>view</i> of a separate multimap which can still change, an instance of
46 * you easily make a "defensive copy" of a multimap provided to your class by
53 * <p>In addition to methods defined by {@link Multimap}, an {@link #inverse}
67 /** Returns an empty multimap. */
73 * Returns an immutable multimap containing a single entry.
80 * Returns an immutable multimap containing the given entries, in order.
87 * Returns an immutable multimap containing the given entries, in order.
95 * Returns an immutable multimap containing the given entries, in order
489 final ImmutableMultimap<K, V> multimap; field in class:ImmutableMultimap.EntryCollection
    [all...]
Synchronized.java 489 static <K, V> Multimap<K, V> multimap( method in class:Synchronized
490 Multimap<K, V> multimap, @Nullable Object mutex) {
491 if (multimap instanceof SynchronizedMultimap ||
492 multimap instanceof ImmutableMultimap) {
493 return multimap;
495 return new SynchronizedMultimap<K, V>(multimap, mutex);
499 implements Multimap<K, V> {
507 @Override Multimap<K, V> delegate()
    [all...]
  /prebuilts/misc/common/truth/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.26/
truth-0.26.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.28/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.36/
truth-0.36.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /external/dagger2/lib/
auto-value-1.4.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/
auto-value-1.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3-rc1/
auto-value-1.3-rc1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/10.0.1/
guava-10.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.31/
truth-0.31.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.34/
truth-0.34.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.0/
gradle-tooling-api-2.0.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.1/
gradle-tooling-api-2.1.jar 

Completed in 444 milliseconds

1 23 4 5 6 7 8 91011>>