/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/browser/extensions/activity_log/ |
database_string_table.h | 8 #include <map> 60 std::map<int64, std::string> id_to_value_; 61 std::map<std::string, int64> value_to_id_;
|
/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/chromeos/audio/ |
audio_devices_pref_handler_stub.h | 10 #include <map> 20 typedef std::map<uint64, bool> AudioDeviceMute; 21 typedef std::map<uint64, int> AudioDeviceVolumeGain;
|
/external/chromium_org/content/public/renderer/ |
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/media/android/ |
renderer_media_player_manager.h | 8 #include <map> 54 void RetrieveGeometryChanges(std::map<int, gfx::RectF>* changes); 60 std::map<int, WebMediaPlayerAndroid*> media_players_;
|
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_registry.h | 9 #include <map> 56 typedef std::map<base::FilePath, scoped_refptr<PluginModule> > 66 typedef std::map<base::FilePath, PluginModule*> NonOwningModuleMap;
|
/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));
|
/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...] |
/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);
|
/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/guava/guava-tests/test/com/google/common/collect/ |
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...] |
/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);
|
/external/chromium_org/base/threading/ |
thread_id_name_manager.h | 8 #include <map> 41 typedef std::map<PlatformThreadId, PlatformThreadHandle::Handle> 43 typedef std::map<PlatformThreadHandle::Handle, std::string*> 45 typedef std::map<std::string, std::string*> NameToInternedNameMap;
|
/external/chromium_org/chrome/browser/spellchecker/ |
feedback.h | 15 #include <map> 88 typedef std::map<uint32, Misspelling> HashMisspellingMap; 90 typedef std::map<int, HashCollection> RendererHashesMap; 91 typedef std::map<string16, HashCollection> TextHashesMap; 97 // A map of hashes that identify document markers to feedback data to be sent 101 // A map of renderer process ID to hashes that identify misspellings. 104 // A map of misspelled text to hashes that identify misspellings.
|