/external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/ |
popup.js | 25 var map = document.getElementById("map"); 27 map.src = src; 28 map.addEventListener('click', function () { 39 function map() { function 45 window.onload = map;
|
/external/chromium_org/chrome/common/extensions/permissions/ |
permissions_info.h | 8 #include <map> 65 typedef std::map<APIPermission::ID, APIPermissionInfo*> IDMap; 68 typedef std::map<std::string, APIPermissionInfo*> NameMap;
|
/external/chromium_org/chromeos/dbus/ |
fake_bluetooth_profile_manager_client.h | 8 #include <map> 56 // Map of a D-Bus object path to the FakeBluetoothProfileServiceProvider 60 typedef std::map<dbus::ObjectPath, FakeBluetoothProfileServiceProvider*> 64 // Map of Profile UUID to the D-Bus object path of the service provider 67 typedef std::map<std::string, dbus::ObjectPath> ProfileMap;
|
/external/chromium_org/chromeos/dbus/ibus/ |
mock_ibus_engine_factory_service.h | 8 #include <map> 44 std::map<std::string, CreateEngineHandler> handler_map_; 45 std::map<std::string, dbus::ObjectPath> object_path_map_;
|
/external/chromium_org/components/autofill/content/renderer/ |
form_cache.h | 8 #include <map> 66 std::map<const WebKit::WebSelectElement, base::string16> 70 std::map<const WebKit::WebInputElement, bool> initial_checked_state_;
|
/external/chromium_org/components/autofill/core/common/ |
password_form_fill_data.h | 8 #include <map> 21 // Defined so that this struct can be used as a key in a std::map. 38 typedef std::map<base::string16, PasswordAndRealm> LoginCollection; 39 typedef std::map<UsernamesCollectionKey,
|
/external/chromium_org/content/browser/ |
cert_store_impl.h | 8 #include <map> 52 typedef std::map<int, scoped_refptr<net::X509Certificate> > CertMap; 53 typedef std::map<net::X509Certificate*, int, net::X509Certificate::LessThan>
|
/external/chromium_org/content/browser/renderer_host/java/ |
java_bridge_dispatcher_host_manager.h | 8 #include <map> 58 typedef std::map<RenderViewHost*, scoped_refptr<JavaBridgeDispatcherHost> > 61 typedef std::map<string16, NPObject*> ObjectMap;
|
/external/chromium_org/net/quic/ |
quic_stream_sequencer.h | 8 #include <map> 15 using std::map; 84 typedef map<QuicStreamOffset, string> FrameMap;
|
/external/chromium_org/ppapi/cpp/ |
module.h | 8 #include <map> 31 typedef std::map<PP_Instance, Instance*> InstanceMap; 167 typedef std::map<std::string, const void*> InterfaceMap;
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
NotificationPresenter.h | 36 #include <map> 73 // Map of active notifications. 74 std::map<std::string, WebKit::WebNotification> m_activeNotifications; 76 // Map of active replacement IDs to the titles of those notifications 77 std::map<std::string, std::string> m_replacements;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nouveau_render.h | 63 int map[VERT_ATTRIB_MAX]; member in struct:nouveau_render_state 74 for (i = 0; attr = (render)->map[i], i < NUM_VERTEX_ATTRS; i++) 77 for (i = 0; attr = (render)->map[i], i < render->attr_count; i++) \
|
/external/chromium_org/third_party/re2/re2/ |
prefilter_tree.h | 19 #include <map> 27 typedef std::map<int, int> StdIntMap; 112 // Map node string to canonical Prefilter node. 113 map<string, Prefilter*> node_map_;
|
/external/chromium_org/tools/memory_watcher/ |
memory_watcher.h | 14 #include <map> 33 typedef std::map<int32, AllocationStack*, std::less<int32>, 35 typedef std::map<int32, StackTrack, std::less<int32>,
|
/external/chromium_org/ui/base/clipboard/ |
custom_data_helper.h | 5 // Due to restrictions of most operating systems, we don't directly map each 13 #include <map> 46 std::map<string16, string16>* result); 48 UI_EXPORT void WriteCustomDataToPickle(const std::map<string16, string16>& data,
|
/external/chromium_org/ui/base/cursor/ |
cursor_loader_x11.h | 9 #include <map> 43 // A map to hold all image cursors. It maps the cursor ID to the X Cursor. 44 typedef std::map<int, ::Cursor> ImageCursorMap; 47 // A map to hold all animated cursors. It maps the cursor ID to the pair of 50 typedef std::map<int, std::pair< ::Cursor, XcursorImages*> >
|
/external/chromium_org/ui/base/x/ |
device_list_cache_x.h | 11 #include <map> 54 std::map<Display*, XDeviceList> x_dev_list_map_; 55 std::map<Display*, XIDeviceList> xi_dev_list_map_;
|
/external/clang/test/SemaCXX/ |
PR11358.cpp | 30 void MapTest(hash_map<KeyType, ValueType> map) { 31 for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'typename'}} 32 it != map.end(); it++) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MapMakerTest.java | 28 import java.util.Map; 55 final ConcurrentMap<String, String> map = new MapMaker() local 60 // seed the map, so its segment's count > 0 61 map.put("a", "a"); 68 map.get("b"); 75 map.clear(); 78 // don't check map.size() until we know the get("b") call is complete 81 // At this point, the listener should be holding the seed value (a -> a), and the map should 88 assertEquals(1, map.size()); 89 assertEquals("b", map.get("b")) 111 final Map<String, String> map = new MapMaker() local [all...] |
/external/llvm/include/llvm/ADT/ |
UniqueVector.h | 14 #include <map> 26 // Map - Used to handle the correspondence of entry to ID. 27 std::map<T, unsigned> Map; 37 // Check if the entry is already in the map. 38 unsigned &Val = Map[Entry]; 54 // Search for entry in the map. 55 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry); 58 if (MI != Map.end()) return MI->second [all...] |
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_render.h | 63 int map[VERT_ATTRIB_MAX]; member in struct:nouveau_render_state 74 for (i = 0; attr = (render)->map[i], i < NUM_VERTEX_ATTRS; i++) 77 for (i = 0; attr = (render)->map[i], i < render->attr_count; i++) \
|
/frameworks/support/v4/java/android/support/v4/util/ |
LruCache.java | 20 import java.util.Map; 30 private final LinkedHashMap<K, V> map; field in class:LruCache 52 this.map = new LinkedHashMap<K, V>(0, 0.75f, true); 68 mapValue = map.get(key); 77 * Attempt to create a value. This may take a long time, and the map 79 * added to the map while create() was working, we leave that value in 80 * the map and release the created value. 90 mapValue = map.put(key, createdValue); 94 map.put(key, mapValue); 124 previous = map.put(key, value) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.access/ |
index_rv_key.pass.cpp | 10 // <map> 12 // class map 16 #include <map> 27 std::map<MoveOnly, double> m; 44 std::map<MoveOnly, double, std::less<MoveOnly>, min_allocator<V>> m;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
assign_initializer_list.pass.cpp | 10 // <map> 12 // class map 14 // map& operator=(initializer_list<value_type> il); 16 #include <map> 26 std::map<int, double> m = 51 std::map<int, double, std::less<int>, min_allocator<V>> m =
|
compare_alloc.pass.cpp | 10 // <map> 12 // class map 14 // map(const key_compare& comp, const allocator_type& a); 16 #include <map> 28 std::map<int, double, C, A> m(C(4), A(5)); 38 std::map<int, double, C, A> m(C(4), A());
|