Searched refs:map (Results 201 - 225 of 5687) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/apps/
H A Dper_app_settings_service.h8 #include <map>
29 typedef std::map<std::string, chrome::HostDesktopType> DesktopMap;
/external/chromium_org/chrome/browser/extensions/api/copresence/
H A Dcopresence_translations.h8 #include <map>
30 // A 1-1 map of of which app a subscription id belongs to.
32 typedef std::map<std::string, std::string> SubscriptionToAppMap;
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_component_extension_resource_manager.h8 #include <map>
33 // A map from a resource path to the resource ID. Used by
35 std::map<base::FilePath, int> path_to_resource_id_;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dnode_state.js15 * [state, opt_arg, opt_arg, ...]. These sub arrays map directly to a
35 return state.map(function(s) {
39 var args = s.slice(1).map(function(a) {
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dsalsa_ui.h8 #include <map>
43 std::map<int, const base::Value*> orig_values_;
/external/chromium_org/components/autofill/core/browser/
H A Demail_field.cc28 bool EmailField::ClassifyField(ServerFieldTypeMap* map) const {
29 return AddClassification(field_, EMAIL_ADDRESS, map);
/external/chromium_org/components/storage_monitor/
H A Dtransient_device_ids.h13 #include <map>
37 typedef std::map<std::string, std::string> IdMap;
/external/chromium_org/content/shell/browser/
H A Dshell_notification_manager.h8 #include <map>
41 typedef std::map<GURL, blink::WebNotificationPermission>
/external/chromium_org/extensions/browser/
H A Dscript_execution_observer.h8 #include <map>
25 typedef std::map<std::string, std::set<std::string> > ExecutingScriptsMap;
/external/chromium_org/google_apis/gcm/engine/
H A Dregistration_info.h8 #include <map>
30 typedef std::map<std::string, linked_ptr<RegistrationInfo> >
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup_util.h8 #include <map>
24 typedef std::map<std::string, Rule> RuleMap;
/external/chromium_org/ppapi/shared_impl/
H A Dppapi_preferences.h8 #include <map>
18 typedef std::map<std::string, base::string16> ScriptFontFamilyMap;
/external/chromium_org/remoting/client/plugin/
H A Dnormalizing_input_filter_mac.h5 #include <map>
54 typedef std::map<int, protocol::KeyEvent> KeyPressedMap;
59 // A map that stores pressed keycodes and the corresponding key event.
/external/chromium_org/sync/engine/
H A Dcommit_processor.h8 #include <map>
34 typedef std::map<ModelType, CommitContribution*> ContributionMap;
36 // Contructs a CommitProcessor from a map of CommitContributors.
37 // The CommitProcessor does not own this map.
44 // map, gather any entries queued for commit into CommitContributions. The
53 // A map of 'commit contributors', one for each enabled type.
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIInputMap.cpp13 MIDIInputMap::MIDIInputMap(const HeapHashMap<String, Member<MIDIInput> >map) argument
14 : MIDIPortMap<MIDIInput>(map)
H A DMIDIOutputMap.cpp13 MIDIOutputMap::MIDIOutputMap(HeapHashMap<String, Member<MIDIOutput> > map) argument
14 : MIDIPortMap<MIDIOutput>(map)
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Dmock_source.cc18 #include <map>
29 std::map<std::string, std::string>::const_iterator it = data_.find(key);
H A Dmock_source.h23 #include <map>
29 // Gets address metadata from a key-value map. Sample usage:
65 std::map<std::string, std::string> data_;
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dmucroomdiscoverytask.h31 #include <map>
50 const std::map<std::string, std::string>& > SignalResult;
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/interface/
H A Dvie_autotest_main.h15 #include <map>
27 std::map<int, std::string> index_to_test_method_map_;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
H A Dnomultisect2.asm3 [map all]
/external/chromium_org/tools/gn/
H A Dimport_manager.h8 #include <map>
35 typedef std::map<SourceFile, const Scope*> ImportMap;
/external/chromium_org/ui/views/accessibility/
H A Dax_aura_obj_cache.h8 #include <map>
63 AuraView* aura_view, std::map<AuraView*, int32>& aura_view_to_id_map);
66 AuraView* aura_view, std::map<AuraView*, int32>& aura_view_to_id_map);
69 AuraView* aura_view, std::map<AuraView*, int32>& aura_view_to_id_map);
71 std::map<views::View*, int32> view_to_id_map_;
72 std::map<views::Widget*, int32> widget_to_id_map_;
73 std::map<aura::Window*, int32> window_to_id_map_;
75 std::map<int32, AXAuraObjWrapper*> cache_;
/external/deqp/framework/common/
H A DtcuStringTemplate.hpp26 #include <map>
41 std::string specialize (const std::map<std::string, std::string>& params) const;
/external/guava/guava-tests/test/com/google/common/cache/
H A DLocalCacheTest.java122 LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder());
124 assertSame(Strength.STRONG, map.keyStrength);
125 assertSame(Strength.STRONG, map.valueStrength);
126 assertSame(map.keyStrength.defaultEquivalence(), map.keyEquivalence);
127 assertSame(map.valueStrength.defaultEquivalence(), map.valueEquivalence);
129 assertEquals(0, map.expireAfterAccessNanos);
130 assertEquals(0, map.expireAfterWriteNanos);
131 assertEquals(0, map
331 checkStrength( LocalCache<Object, Object> map, Strength keyStrength, Strength valueStrength) argument
949 assertConnected( LocalCache<K, V> map, ReferenceEntry<K, V> one, ReferenceEntry<K, V> two) argument
1560 countLiveEntries(LocalCache<K, V> map, long now) argument
1774 assertNotificationEnqueued( LocalCache<K, V> map, K key, V value, int hash) argument
1974 checkAndDrainRecencyQueue(LocalCache<K, V> map, Segment<K, V> segment, List<ReferenceEntry<K, V>> reads) argument
1982 checkEvictionQueues(LocalCache<K, V> map, Segment<K, V> segment, List<ReferenceEntry<K, V>> readOrder, List<ReferenceEntry<K, V>> writeOrder) argument
2005 checkExpirationTimes(LocalCache<K, V> map) argument
[all...]

Completed in 5070 milliseconds

1234567891011>>