/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingMapTest.java | 37 import java.util.Map; 38 import java.util.Map.Entry; 49 private final Map<K, V> backingMap; 51 StandardImplForwardingMap(Map<K, V> backingMap) { 55 @Override protected Map<K, V> delegate() { 67 @Override public void putAll(Map<? extends K, ? extends V> map) { 68 standardPutAll(map); 115 Map<String, Boolean> forward; 123 @Override protected Map<String, String> create [all...] |
MapsTransformValuesUnmodifiableIteratorTest.java | 26 import java.util.Map; 32 * Tests for {@link Maps#transformValues} when the backing map's views 47 final Map<K, V> delegate; 49 UnmodifiableIteratorMap(Map<K, V> delegate) { 53 @Override protected Map<K, V> delegate() { 109 @Override protected Map<String, String> makeEmptyMap() { 110 Map<String, Integer> underlying = Maps.newHashMap(); 115 @Override protected Map<String, String> makePopulatedMap() { 116 Map<String, Integer> underlying = Maps.newHashMap(); 135 private void assertMapsEqual(Map<?, ?> expected, Map<?, ?> map) [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
RegisterMapper.java | 40 public abstract RegisterSpec map(RegisterSpec registerSpec); method in class:RegisterMapper 47 public final RegisterSpecList map(RegisterSpecList sources) { method in class:RegisterMapper 52 newSources.set(i, map(sources.get(i)));
|
/external/chromium/chrome/browser/chromeos/ |
name_value_pairs_parser.h | 9 #include <map> 21 typedef std::map<std::string, std::string> NameValueMap; 24 explicit NameValuePairsParser(NameValueMap* map);
|
/external/chromium/chrome/browser/extensions/ |
extension_devtools_manager.h | 9 #include <map> 53 // Map of tab IDs to the ExtensionDevToolsBridge connected to the tab 54 std::map<int, linked_ptr<ExtensionDevToolsBridge> > tab_id_to_bridge_; 56 // Map of tab IDs to the set of render_process_ids that have registered 58 std::map<int, std::set<int> > tab_id_to_render_process_ids_;
|
/external/chromium_org/base/metrics/ |
histogram_snapshot_manager.h | 8 #include <map> 47 std::map<std::string, HistogramSamples*> logged_samples_; 50 std::map<std::string, int> inconsistencies_;
|
/external/chromium_org/chrome/browser/content_settings/ |
mock_settings_observer.cc | 25 HostContentSettingsMap* map = local 29 OnContentSettingsChanged(map, 38 map->GetContentSetting(url, url, CONTENT_SETTINGS_TYPE_IMAGES, std::string());
|
/external/chromium_org/chrome/common/extensions/ |
extension_icon_set.h | 8 #include <map> 22 // Access to the underlying map from icon size->{path, bitmap}. 23 typedef std::map<int, std::string> IconMap; 28 const IconMap& map() const { return map_; } function in class:ExtensionIconSet
|
/external/chromium_org/components/precache/core/ |
precache_url_table.h | 8 #include <map> 48 void GetAllDataForTesting(std::map<GURL, base::Time>* map);
|
/external/chromium_org/content/public/renderer/ |
render_frame_observer_tracker.h | 29 #include <map> 55 static base::LazyInstance<std::map<const RenderFrame*, T*> > 62 base::LazyInstance<std::map<const RenderFrame*, T*> >
|
render_view_observer_tracker.h | 29 #include <map> 55 static base::LazyInstance<std::map<const RenderView*, T*> > 62 base::LazyInstance<std::map<const RenderView*, T*> >
|
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_registry.h | 9 #include <map> 57 typedef std::map<base::FilePath, scoped_refptr<PluginModule> > 67 typedef std::map<base::FilePath, PluginModule*> NonOwningModuleMap;
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
shortnumberinfo.h | 22 #include <map> 32 using std::map; 62 scoped_ptr<map<string, PhoneMetadata> >
|
/external/chromium_org/ui/views/focus/ |
view_storage.h | 8 #include <map> 65 std::map<int, View*> id_to_view_; 68 std::map<View*, std::vector<int>*> view_to_ids_;
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
RegisterMapper.java | 41 public abstract RegisterSpec map(RegisterSpec registerSpec); method in class:RegisterMapper 48 public final RegisterSpecList map(RegisterSpecList sources) { method in class:RegisterMapper 53 newSources.set(i, map(sources.get(i)));
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
H2Map_TypeForwardOnlyTest.java | 18 H2Map_TypeForwardOnly map; field in class:H2Map_TypeForwardOnlyTest 21 map = new H2Map_TypeForwardOnly(); 28 assertThat(map.getResultSetType(),equalTo(ResultSet.TYPE_FORWARD_ONLY));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.access/ |
empty.pass.cpp | 10 // <map> 12 // class map 16 #include <map> 24 typedef std::map<int, double> M; 34 typedef std::map<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
alloc.pass.cpp | 10 // <map> 12 // class map 14 // explicit map(const allocator_type& a); 16 #include <map> 27 std::map<int, double, C, A> m(A(5)); 36 std::map<int, double, C, A> m(A{});
|
compare.pass.cpp | 10 // <map> 12 // class map 14 // explicit map(const key_compare& comp); 16 #include <map> 26 std::map<int, double, C> m(C(3)); 34 std::map<int, double, C, min_allocator<std::pair<const int, double>>> m(C(3));
|
/packages/apps/Exchange/tests/src/com/android/exchange/ |
TagsTests.java | 32 HashMap<String, Boolean> map = new HashMap<String, Boolean>(); local 35 assertTrue(tag, !map.containsKey(tag)); 36 map.put(tag, true);
|
/frameworks/base/core/jni/ |
android_view_KeyCharacterMap.cpp | 48 NativeKeyCharacterMap(int32_t deviceId, const sp<KeyCharacterMap>& map) : 49 mDeviceId(deviceId), mMap(map) { 71 NativeKeyCharacterMap* map = new NativeKeyCharacterMap(deviceId, local 73 if (!map) { 78 reinterpret_cast<jint>(map)); 97 NativeKeyCharacterMap* map = new NativeKeyCharacterMap(deviceId, kcm); local 98 return reinterpret_cast<jint>(map); 102 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 105 parcel->writeInt32(map->getDeviceId()); 106 map->getMap()->writeToParcel(parcel) 111 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 117 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 123 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 137 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 143 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 158 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 163 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local 169 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local [all...] |
/external/eigen/test/ |
mapstride.cpp | 29 Map<VectorType, Alignment, InnerStride<3> > map(array, size); 30 map = v; 34 VERIFY(map[i] == v[i]); 39 Map<VectorType, Unaligned, InnerStride<Dynamic> > map(array, size, InnerStride<Dynamic>(2)); 40 map = v; 44 VERIFY(map[i] == v[i]); 69 Map<MatrixType, Alignment, OuterStride<Dynamic> > map(array, rows, cols, OuterStride<Dynamic>(m.innerSize()+1)) [all...] |
/external/ceres-solver/internal/ceres/ |
wall_time.h | 34 #include <map>
|
/external/chromium/base/ |
file_descriptor_shuffle.h | 70 bool PerformInjectiveMultimap(const InjectiveMultimap& map, 73 bool PerformInjectiveMultimapDestructive(InjectiveMultimap* map, 76 // This function will not call malloc but will mutate |map| 77 static inline bool ShuffleFileDescriptors(InjectiveMultimap* map) { 79 return PerformInjectiveMultimapDestructive(map, &delegate);
|
/external/chromium_org/base/posix/ |
file_descriptor_shuffle.h | 72 BASE_EXPORT bool PerformInjectiveMultimap(const InjectiveMultimap& map, 76 InjectiveMultimap* map, 79 // This function will not call malloc but will mutate |map| 80 static inline bool ShuffleFileDescriptors(InjectiveMultimap* map) { 82 return PerformInjectiveMultimapDestructive(map, &delegate);
|