map               102 Source/bindings/v8/DOMWrapperMap.h             MapType map;
map               103 Source/bindings/v8/DOMWrapperMap.h             map.swap(m_map);
map               104 Source/bindings/v8/DOMWrapperMap.h             for (typename MapType::iterator it = map.begin(); it != map.end(); ++it) {
map                74 Source/bindings/v8/DOMWrapperWorld.cpp     DEFINE_STATIC_LOCAL(WorldMap, map, ());
map                75 Source/bindings/v8/DOMWrapperWorld.cpp     return map;
map                96 Source/bindings/v8/DOMWrapperWorld.cpp     WorldMap& map = isolatedWorldMap();
map                97 Source/bindings/v8/DOMWrapperWorld.cpp     WorldMap::iterator i = map.find(m_worldId);
map                98 Source/bindings/v8/DOMWrapperWorld.cpp     if (i == map.end()) {
map               104 Source/bindings/v8/DOMWrapperWorld.cpp     map.remove(i);
map               106 Source/bindings/v8/DOMWrapperWorld.cpp     ASSERT(map.size() == isolatedWorldCount);
map               125 Source/bindings/v8/DOMWrapperWorld.cpp     WorldMap& map = isolatedWorldMap();
map               126 Source/bindings/v8/DOMWrapperWorld.cpp     WorldMap::AddResult result = map.add(worldId, 0);
map               137 Source/bindings/v8/DOMWrapperWorld.cpp     ASSERT(map.size() == isolatedWorldCount);
map               146 Source/bindings/v8/DOMWrapperWorld.cpp     DEFINE_STATIC_LOCAL(IsolatedWorldSecurityOriginMap, map, ());
map               147 Source/bindings/v8/DOMWrapperWorld.cpp     return map;
map               177 Source/bindings/v8/DOMWrapperWorld.cpp     DEFINE_STATIC_LOCAL(IsolatedWorldContentSecurityPolicyMap, map, ());
map               178 Source/bindings/v8/DOMWrapperWorld.cpp     return map;
map               299 Source/bindings/v8/ScriptProfiler.cpp     AtomicallyInitializedStatic(WTF::ThreadSpecific<ProfileNameIdleTimeMap>*, map = new WTF::ThreadSpecific<ProfileNameIdleTimeMap>);
map               300 Source/bindings/v8/ScriptProfiler.cpp     return *map;
map                19 Source/bindings/v8/V8DOMActivityLogger.cpp     DEFINE_STATIC_LOCAL(DOMActivityLoggerMap, map, ());
map                20 Source/bindings/v8/V8DOMActivityLogger.cpp     return map;
map               188 Source/bindings/v8/V8NPObject.cpp         DEFINE_STATIC_LOCAL(V8NPTemplateMap, map, (isolate));
map               189 Source/bindings/v8/V8NPObject.cpp         ASSERT(isolate == map.m_isolate);
map               190 Source/bindings/v8/V8NPObject.cpp         return map;
map                44 Source/bindings/v8/V8PerContextData.cpp static void disposeMapWithUnsafePersistentValues(Map* map)
map                46 Source/bindings/v8/V8PerContextData.cpp     typename Map::iterator it = map->begin();
map                47 Source/bindings/v8/V8PerContextData.cpp     for (; it != map->end(); ++it)
map                49 Source/bindings/v8/V8PerContextData.cpp     map->clear();
map               144 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp     DEFINE_STATIC_LOCAL(CSSPropertyInfoMap, map, ());
map               145 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp     CSSPropertyInfo* propInfo = map.get(propertyName);
map               149 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp         map.add(propertyName, propInfo);
map              2187 Source/core/accessibility/AXRenderObject.cpp     HTMLMapElement* map = toRenderImage(cssBox)->imageMap();
map              2188 Source/core/accessibility/AXRenderObject.cpp     if (!map)
map              2191 Source/core/accessibility/AXRenderObject.cpp     for (HTMLAreaElement* area = Traversal<HTMLAreaElement>::firstWithin(*map); area; area = Traversal<HTMLAreaElement>::next(*area, map)) {
map              2196 Source/core/accessibility/AXRenderObject.cpp             areaObject->setHTMLMapElement(map);
map              1352 Source/core/css/CSSComputedStyleDeclaration.cpp     const CounterDirectiveMap* map = style.counterDirectives();
map              1353 Source/core/css/CSSComputedStyleDeclaration.cpp     if (!map)
map              1357 Source/core/css/CSSComputedStyleDeclaration.cpp     for (CounterDirectiveMap::const_iterator it = map->begin(); it != map->end(); ++it) {
map               142 Source/core/css/RuleSet.cpp void RuleSet::addToRuleSet(const AtomicString& key, PendingRuleMap& map, const RuleData& ruleData)
map               144 Source/core/css/RuleSet.cpp     OwnPtrWillBeMember<WillBeHeapLinkedStack<RuleData> >& rules = map.add(key, nullptr).storedValue->value;
map                45 Source/core/dom/ChildListMutationScope.cpp     DEFINE_STATIC_LOCAL(AccumulatorMap, map, ());
map                46 Source/core/dom/ChildListMutationScope.cpp     return map;
map               118 Source/core/dom/Element.cpp     DEFINE_STATIC_LOCAL(AttrNodeListMap, map, ());
map               119 Source/core/dom/Element.cpp     return map;
map              2007 Source/core/dom/Node.cpp     DEFINE_STATIC_LOCAL(EventTargetDataMap, map, ());
map              2008 Source/core/dom/Node.cpp     return map;
map               152 Source/core/dom/SpaceSplitString.cpp     DEFINE_STATIC_LOCAL(SpaceSplitStringDataMap, map, ());
map               153 Source/core/dom/SpaceSplitString.cpp     return map;
map                38 Source/core/dom/custom/CustomElementObserver.cpp     DEFINE_STATIC_LOCAL(ElementObserverMap, map, ());
map                39 Source/core/dom/custom/CustomElementObserver.cpp     return map;
map               504 Source/core/html/HTMLAnchorElement.cpp     DEFINE_STATIC_LOCAL(RootEditableElementMap, map, ());
map               505 Source/core/html/HTMLAnchorElement.cpp     return map;
map                77 Source/core/html/HTMLCollection.h         static void addElementToMap(StringToElementsMap& map, const AtomicString& key, Element* element)
map                79 Source/core/html/HTMLCollection.h             OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).storedValue->value;
map               198 Source/core/html/HTMLDocument.cpp void HTMLDocument::addItemToMap(HashCountedSet<AtomicString>& map, const AtomicString& name)
map               202 Source/core/html/HTMLDocument.cpp     map.add(name);
map               207 Source/core/html/HTMLDocument.cpp void HTMLDocument::removeItemFromMap(HashCountedSet<AtomicString>& map, const AtomicString& name)
map               211 Source/core/html/HTMLDocument.cpp     map.remove(name);
map                44 Source/core/html/HTMLFrameOwnerElement.cpp     DEFINE_STATIC_LOCAL(WidgetToParentMap, map, ());
map                45 Source/core/html/HTMLFrameOwnerElement.cpp     return map;
map                57 Source/core/html/HTMLFrameOwnerElement.cpp     WidgetToParentMap map;
map                58 Source/core/html/HTMLFrameOwnerElement.cpp     widgetNewParentMap().swap(map);
map                59 Source/core/html/HTMLFrameOwnerElement.cpp     WidgetToParentMap::iterator end = map.end();
map                60 Source/core/html/HTMLFrameOwnerElement.cpp     for (WidgetToParentMap::iterator it = map.begin(); it != end; ++it) {
map               128 Source/core/html/HTMLMediaElement.cpp     DEFINE_STATIC_LOCAL(DocumentElementSetMap, map, ());
map               129 Source/core/html/HTMLMediaElement.cpp     return map;
map               134 Source/core/html/HTMLMediaElement.cpp     DocumentElementSetMap& map = documentToElementSetMap();
map               135 Source/core/html/HTMLMediaElement.cpp     HashSet<HTMLMediaElement*> set = map.take(document);
map               137 Source/core/html/HTMLMediaElement.cpp     map.add(document, set);
map               142 Source/core/html/HTMLMediaElement.cpp     DocumentElementSetMap& map = documentToElementSetMap();
map               143 Source/core/html/HTMLMediaElement.cpp     HashSet<HTMLMediaElement*> set = map.take(document);
map               146 Source/core/html/HTMLMediaElement.cpp         map.add(document, set);
map               447 Source/core/html/forms/FormController.cpp void FormController::formStatesFromStateVector(const Vector<String>& stateVector, SavedFormStateMap& map)
map               449 Source/core/html/forms/FormController.cpp     map.clear();
map               462 Source/core/html/forms/FormController.cpp         map.add(formKey, state.release());
map               465 Source/core/html/forms/FormController.cpp         map.clear();
map               508 Source/core/html/forms/FormController.cpp     SavedFormStateMap map;
map               509 Source/core/html/forms/FormController.cpp     formStatesFromStateVector(stateVector, map);
map               510 Source/core/html/forms/FormController.cpp     for (SavedFormStateMap::const_iterator it = map.begin(); it != map.end(); ++it)
map                83 Source/core/html/forms/InputType.cpp     OwnPtr<InputTypeFactoryMap> map = adoptPtr(new InputTypeFactoryMap);
map                84 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::button, ButtonInputType::create);
map                85 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::checkbox, CheckboxInputType::create);
map                86 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::color, ColorInputType::create);
map                87 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::date, DateInputType::create);
map                88 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::datetime_local, DateTimeLocalInputType::create);
map                89 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::email, EmailInputType::create);
map                90 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::file, FileInputType::create);
map                91 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::hidden, HiddenInputType::create);
map                92 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::image, ImageInputType::create);
map                93 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::month, MonthInputType::create);
map                94 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::number, NumberInputType::create);
map                95 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::password, PasswordInputType::create);
map                96 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::radio, RadioInputType::create);
map                97 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::range, RangeInputType::create);
map                98 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::reset, ResetInputType::create);
map                99 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::search, SearchInputType::create);
map               100 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::submit, SubmitInputType::create);
map               101 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::tel, TelephoneInputType::create);
map               102 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::time, TimeInputType::create);
map               103 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::url, URLInputType::create);
map               104 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::week, WeekInputType::create);
map               106 Source/core/html/forms/InputType.cpp     return map.release();
map               499 Source/core/html/parser/HTMLTreeBuilder.cpp static void mapLoweredLocalNameToName(PrefixedNameToQualifiedNameMap* map, const QualifiedName* const* names, size_t length)
map               506 Source/core/html/parser/HTMLTreeBuilder.cpp             map->add(loweredLocalName, name);
map               553 Source/core/html/parser/HTMLTreeBuilder.cpp static void addNamesWithPrefix(PrefixedNameToQualifiedNameMap* map, const AtomicString& prefix, const QualifiedName* const* names, size_t length)
map               560 Source/core/html/parser/HTMLTreeBuilder.cpp         map->add(prefixColonLocalName, nameWithPrefix);
map               566 Source/core/html/parser/HTMLTreeBuilder.cpp     static PrefixedNameToQualifiedNameMap* map = 0;
map               567 Source/core/html/parser/HTMLTreeBuilder.cpp     if (!map) {
map               568 Source/core/html/parser/HTMLTreeBuilder.cpp         map = new PrefixedNameToQualifiedNameMap;
map               571 Source/core/html/parser/HTMLTreeBuilder.cpp         addNamesWithPrefix(map, xlinkAtom, attrs.get(), XLinkNames::XLinkAttrsCount);
map               574 Source/core/html/parser/HTMLTreeBuilder.cpp         addNamesWithPrefix(map, xmlAtom, xmlAttrs.get(), XMLNames::XMLAttrsCount);
map               576 Source/core/html/parser/HTMLTreeBuilder.cpp         map->add(WTF::xmlnsAtom, XMLNSNames::xmlnsAttr);
map               577 Source/core/html/parser/HTMLTreeBuilder.cpp         map->add("xmlns:xlink", QualifiedName(xmlnsAtom, xlinkAtom, XMLNSNames::xmlnsNamespaceURI));
map               582 Source/core/html/parser/HTMLTreeBuilder.cpp         const QualifiedName& name = map->get(tokenAttribute.localName());
map                88 Source/core/inspector/AsyncCallStackTracker.cpp         EventListenerAsyncCallChainVectorHashMap& map = *mapPtr;
map                89 Source/core/inspector/AsyncCallStackTracker.cpp         EventListenerAsyncCallChainVectorHashMap::iterator it2 = map.find(eventType);
map                90 Source/core/inspector/AsyncCallStackTracker.cpp         if (it2 == map.end())
map                91 Source/core/inspector/AsyncCallStackTracker.cpp             map.set(eventType, EventListenerAsyncCallChainVector()).storedValue->value.append(item);
map               106 Source/core/inspector/AsyncCallStackTracker.cpp         EventListenerAsyncCallChainVectorHashMap& map = it->value;
map               107 Source/core/inspector/AsyncCallStackTracker.cpp         EventListenerAsyncCallChainVectorHashMap::iterator it2 = map.find(eventType);
map               108 Source/core/inspector/AsyncCallStackTracker.cpp         if (it2 == map.end())
map               118 Source/core/inspector/AsyncCallStackTracker.cpp                         map.remove(it2);
map               119 Source/core/inspector/AsyncCallStackTracker.cpp                     if (map.isEmpty())
map               511 Source/core/inspector/DOMPatchSupport.cpp void DOMPatchSupport::dumpMap(const ResultMap& map, const String& name)
map               514 Source/core/inspector/DOMPatchSupport.cpp     for (size_t i = 0; i < map.size(); ++i)
map               515 Source/core/inspector/DOMPatchSupport.cpp         fprintf(stderr, "%s[%lu]: %s (%p) - [%lu]\n", name.utf8().data(), i, map[i].first ? nodeName(map[i].first->m_node).utf8().data() : "", map[i].first, map[i].second);
map               662 Source/core/inspector/InspectorDOMAgent.cpp     NodeToIdMap* map = danglingMap ? danglingMap : &m_documentNodeToIdMap;
map               664 Source/core/inspector/InspectorDOMAgent.cpp         int nodeId = map->get(path.at(i));
map               668 Source/core/inspector/InspectorDOMAgent.cpp     return map->get(nodeToPush);
map               684 Source/core/inspector/InspectorDOMAgent.cpp     NodeToBackendIdMap& map = m_nodeGroupToBackendIdMap.find(nodeGroup)->value;
map               685 Source/core/inspector/InspectorDOMAgent.cpp     BackendNodeId id = map.get(node);
map               688 Source/core/inspector/InspectorDOMAgent.cpp         map.set(node, id);
map               698 Source/core/inspector/InspectorDOMAgent.cpp         NodeToBackendIdMap& map = m_nodeGroupToBackendIdMap.find(nodeGroup)->value;
map               699 Source/core/inspector/InspectorDOMAgent.cpp         for (NodeToBackendIdMap::iterator it = map.begin(); it != map.end(); ++it)
map               237 Source/core/page/WindowFeatures.cpp void WindowFeatures::parseDialogFeatures(const String& string, DialogFeaturesMap& map)
map               261 Source/core/page/WindowFeatures.cpp         map.set(key, value);
map               392 Source/core/page/scrolling/ScrollingCoordinator.cpp static void makeLayerChildFrameMap(const LocalFrame* currentFrame, LayerFrameMap* map)
map               394 Source/core/page/scrolling/ScrollingCoordinator.cpp     map->clear();
map               401 Source/core/page/scrolling/ScrollingCoordinator.cpp         LayerFrameMap::iterator iter = map->find(containingLayer);
map               402 Source/core/page/scrolling/ScrollingCoordinator.cpp         if (iter == map->end())
map               403 Source/core/page/scrolling/ScrollingCoordinator.cpp             map->add(containingLayer, Vector<const LocalFrame*>()).storedValue->value.append(child);
map               276 Source/core/rendering/FloatingObjects.cpp void FloatingObjects::moveAllToFloatInfoMap(RendererToFloatInfoMap& map)
map               280 Source/core/rendering/FloatingObjects.cpp         map.add((*it)->renderer(), *it);
map               450 Source/core/rendering/RenderCounter.cpp     CounterMap* map = mapsIterator->value.get();
map               451 Source/core/rendering/RenderCounter.cpp     CounterMap::const_iterator end = map->end();
map               452 Source/core/rendering/RenderCounter.cpp     for (CounterMap::const_iterator it = map->begin(); it != end; ++it) {
map               461 Source/core/rendering/RenderCounter.cpp     CounterMap* map = counterMaps().get(&owner);
map               462 Source/core/rendering/RenderCounter.cpp     if (!map)
map               464 Source/core/rendering/RenderCounter.cpp     CounterMap::iterator mapIterator = map->find(identifier);
map               465 Source/core/rendering/RenderCounter.cpp     if (mapIterator == map->end())
map               468 Source/core/rendering/RenderCounter.cpp     map->remove(mapIterator);
map               542 Source/core/rendering/RenderImage.cpp         if (HTMLMapElement* map = imageMap()) {
map               548 Source/core/rendering/RenderImage.cpp             if (map->mapMouseEvent(mapLocation, contentBox.size(), tempResult))
map              1030 Source/core/rendering/style/RenderStyle.cpp     OwnPtr<CounterDirectiveMap>& map = rareNonInheritedData.access()->m_counterDirectives;
map              1031 Source/core/rendering/style/RenderStyle.cpp     if (!map)
map              1032 Source/core/rendering/style/RenderStyle.cpp         map = adoptPtr(new CounterDirectiveMap);
map              1033 Source/core/rendering/style/RenderStyle.cpp     return *map;
map               138 Source/core/rendering/svg/SVGPathData.cpp     static HashMap<StringImpl*, PathUpdateFunction>* map = 0;
map               139 Source/core/rendering/svg/SVGPathData.cpp     if (!map) {
map               140 Source/core/rendering/svg/SVGPathData.cpp         map = new HashMap<StringImpl*, PathUpdateFunction>;
map               141 Source/core/rendering/svg/SVGPathData.cpp         map->set(SVGNames::circleTag.localName().impl(), updatePathFromCircleElement);
map               142 Source/core/rendering/svg/SVGPathData.cpp         map->set(SVGNames::ellipseTag.localName().impl(), updatePathFromEllipseElement);
map               143 Source/core/rendering/svg/SVGPathData.cpp         map->set(SVGNames::lineTag.localName().impl(), updatePathFromLineElement);
map               144 Source/core/rendering/svg/SVGPathData.cpp         map->set(SVGNames::pathTag.localName().impl(), updatePathFromPathElement);
map               145 Source/core/rendering/svg/SVGPathData.cpp         map->set(SVGNames::polygonTag.localName().impl(), updatePathFromPolygonElement);
map               146 Source/core/rendering/svg/SVGPathData.cpp         map->set(SVGNames::polylineTag.localName().impl(), updatePathFromPolylineElement);
map               147 Source/core/rendering/svg/SVGPathData.cpp         map->set(SVGNames::rectTag.localName().impl(), updatePathFromRectElement);
map               150 Source/core/rendering/svg/SVGPathData.cpp     if (PathUpdateFunction pathUpdateFunction = map->get(element->localName().impl()))
map                96 Source/core/svg/SVGPoint.cpp     transform.map(static_cast<double>(x()), static_cast<double>(y()), newX, newY);
map                43 Source/core/timing/PerformanceUserTiming.cpp     DEFINE_STATIC_LOCAL(RestrictedKeyMap, map, ());
map                44 Source/core/timing/PerformanceUserTiming.cpp     if (map.isEmpty()) {
map                45 Source/core/timing/PerformanceUserTiming.cpp         map.add("navigationStart", &PerformanceTiming::navigationStart);
map                46 Source/core/timing/PerformanceUserTiming.cpp         map.add("unloadEventStart", &PerformanceTiming::unloadEventStart);
map                47 Source/core/timing/PerformanceUserTiming.cpp         map.add("unloadEventEnd", &PerformanceTiming::unloadEventEnd);
map                48 Source/core/timing/PerformanceUserTiming.cpp         map.add("redirectStart", &PerformanceTiming::redirectStart);
map                49 Source/core/timing/PerformanceUserTiming.cpp         map.add("redirectEnd", &PerformanceTiming::redirectEnd);
map                50 Source/core/timing/PerformanceUserTiming.cpp         map.add("fetchStart", &PerformanceTiming::fetchStart);
map                51 Source/core/timing/PerformanceUserTiming.cpp         map.add("domainLookupStart", &PerformanceTiming::domainLookupStart);
map                52 Source/core/timing/PerformanceUserTiming.cpp         map.add("domainLookupEnd", &PerformanceTiming::domainLookupEnd);
map                53 Source/core/timing/PerformanceUserTiming.cpp         map.add("connectStart", &PerformanceTiming::connectStart);
map                54 Source/core/timing/PerformanceUserTiming.cpp         map.add("connectEnd", &PerformanceTiming::connectEnd);
map                55 Source/core/timing/PerformanceUserTiming.cpp         map.add("secureConnectionStart", &PerformanceTiming::secureConnectionStart);
map                56 Source/core/timing/PerformanceUserTiming.cpp         map.add("requestStart", &PerformanceTiming::requestStart);
map                57 Source/core/timing/PerformanceUserTiming.cpp         map.add("responseStart", &PerformanceTiming::responseStart);
map                58 Source/core/timing/PerformanceUserTiming.cpp         map.add("responseEnd", &PerformanceTiming::responseEnd);
map                59 Source/core/timing/PerformanceUserTiming.cpp         map.add("domLoading", &PerformanceTiming::domLoading);
map                60 Source/core/timing/PerformanceUserTiming.cpp         map.add("domInteractive", &PerformanceTiming::domInteractive);
map                61 Source/core/timing/PerformanceUserTiming.cpp         map.add("domContentLoadedEventStart", &PerformanceTiming::domContentLoadedEventStart);
map                62 Source/core/timing/PerformanceUserTiming.cpp         map.add("domContentLoadedEventEnd", &PerformanceTiming::domContentLoadedEventEnd);
map                63 Source/core/timing/PerformanceUserTiming.cpp         map.add("domComplete", &PerformanceTiming::domComplete);
map                64 Source/core/timing/PerformanceUserTiming.cpp         map.add("loadEventStart", &PerformanceTiming::loadEventStart);
map                65 Source/core/timing/PerformanceUserTiming.cpp         map.add("loadEventEnd", &PerformanceTiming::loadEventEnd);
map                67 Source/core/timing/PerformanceUserTiming.cpp     return map;
map               150 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java     private static <K, T> Set<T> getOrCreateSetByKey(Map<K, Set<T>> map, K key) {
map               151 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java         Set<T> set = map.get(key);
map               154 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java             map.put(key, set);
map               149 Source/modules/webdatabase/DatabaseBackendBase.cpp     DEFINE_STATIC_LOCAL(GuidVersionMap, map, ());
map               150 Source/modules/webdatabase/DatabaseBackendBase.cpp     return map;
map               174 Source/modules/webdatabase/DatabaseBackendBase.cpp     DEFINE_STATIC_LOCAL(GuidDatabaseMap, map, ());
map               175 Source/modules/webdatabase/DatabaseBackendBase.cpp     return map;
map               117 Source/platform/blob/BlobRegistry.cpp     AtomicallyInitializedStatic(ThreadSpecific<BlobURLOriginMap>*, map = new ThreadSpecific<BlobURLOriginMap>);
map               118 Source/platform/blob/BlobRegistry.cpp     return *map;
map               103 Source/platform/exported/WebHTTPLoadInfo.cpp static void addHeader(HTTPHeaderMap* map, const WebString& name, const WebString& value)
map               105 Source/platform/exported/WebHTTPLoadInfo.cpp     HTTPHeaderMap::AddResult result = map->add(name, value);
map               192 Source/platform/exported/WebURLRequest.cpp     const HTTPHeaderMap& map = m_private->m_resourceRequest->httpHeaderFields();
map               193 Source/platform/exported/WebURLRequest.cpp     for (HTTPHeaderMap::const_iterator it = map.begin(); it != map.end(); ++it)
map               269 Source/platform/exported/WebURLResponse.cpp     const HTTPHeaderMap& map = m_private->m_resourceResponse->httpHeaderFields();
map               270 Source/platform/exported/WebURLResponse.cpp     for (HTTPHeaderMap::const_iterator it = map.begin(); it != map.end(); ++it)
map                84 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp typedef std::map<std::wstring, CachedShapingResults*> CachedShapingResultsMap;
map               152 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp     bool getSubstitutions(HashMap<Glyph, Glyph>* map, const SharedBuffer& buffer) const
map               183 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp                     map->set(coverage1->glyphArray[i], singleSubstitution2->substitute[i]);
map               199 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp                         map->set(from, singleSubstitution2->substitute[indexTo]);
map               229 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp     bool getGlyphSubstitutions(const LookupList* lookups, HashMap<Glyph, Glyph>* map, const SharedBuffer& buffer) const
map               236 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp             if (!lookup || !lookup->getSubstitutions(map, buffer))
map               386 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp     bool getVerticalGlyphSubstitutions(HashMap<Glyph, Glyph>* map, const SharedBuffer& buffer) const
map               392 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp         return lookups && verticalFeatureTable->getGlyphSubstitutions(lookups, map, buffer);
map               558 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp     const HashMap<Glyph, Glyph>& map = m_verticalGlyphMap;
map               559 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp     if (map.isEmpty())
map               566 Source/platform/fonts/opentype/OpenTypeVerticalData.cpp             Glyph to = map.get(glyph);
map                69 Source/platform/graphics/GraphicsLayer.cpp     DEFINE_STATIC_LOCAL(RepaintMap, map, ());
map                70 Source/platform/graphics/GraphicsLayer.cpp     return map;
map               959 Source/platform/heap/HeapTest.cpp         ObserverMap& map = observers();
map               960 Source/platform/heap/HeapTest.cpp         ObserverMap::AddResult result = map.add(&target, nullptr);
map               965 Source/platform/heap/HeapTest.cpp         return map;
map              1702 Source/platform/heap/HeapTest.cpp         Persistent<HeapObjectIdentityMap> map = new HeapObjectIdentityMap();
map              1704 Source/platform/heap/HeapTest.cpp         map->clear();
map              1719 Source/platform/heap/HeapTest.cpp         map->add(one, one);
map              1725 Source/platform/heap/HeapTest.cpp         HeapObjectIdentityMap::iterator it(map->begin());
map              1726 Source/platform/heap/HeapTest.cpp         HeapObjectIdentityMap::iterator it2(map->begin());
map              1730 Source/platform/heap/HeapTest.cpp         map->add(anotherOne, one);
map              1743 Source/platform/heap/HeapTest.cpp         EXPECT_EQ(map->size(), 2u); // Two different wrappings of '1' are distinct.
map              1746 Source/platform/heap/HeapTest.cpp         EXPECT_TRUE(map->contains(one));
map              1747 Source/platform/heap/HeapTest.cpp         EXPECT_TRUE(map->contains(anotherOne));
map              1749 Source/platform/heap/HeapTest.cpp         IntWrapper* gotten(map->get(one));
map              1762 Source/platform/heap/HeapTest.cpp             map->add(iWrapper, iSquared);
map              1770 Source/platform/heap/HeapTest.cpp         IntWrapper* gross(map->get(dozen));
map              1859 Source/platform/heap/HeapTest.cpp     HeapHashMap<Member<IntWrapper>, Member<IntWrapper> > map;
map              1867 Source/platform/heap/HeapTest.cpp         visitor->trace(map);
map              2123 Source/platform/heap/HeapTest.cpp             container->map.swap(memberMember2);
map              2124 Source/platform/heap/HeapTest.cpp             MemberMember& containedMap = container->map;
map              2336 Source/platform/heap/HeapTest.cpp     Persistent<Map> map(new Map());
map              2373 Source/platform/heap/HeapTest.cpp     map->add(IntWrapper::create(42), ThingWithDestructor(1729));
map              2374 Source/platform/heap/HeapTest.cpp     map->add(luck, ThingWithDestructor(8128));
map              2383 Source/platform/heap/HeapTest.cpp         map->clear(); // Clear map.
map              2386 Source/platform/heap/HeapTest.cpp         map.clear(); // Clear Persistent handle, not map.
map              2813 Source/platform/heap/HeapTest.cpp     FinalizationObserverWithHashMap::ObserverMap& map = FinalizationObserverWithHashMap::observe(*foo);
map              2814 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(1u, map.size());
map              2820 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(0u, map.size());
map              2971 Source/platform/heap/HeapTest.cpp     HeapHashMap<void*, IntVector>* map = new HeapHashMap<void*, IntVector>();
map              2973 Source/platform/heap/HeapTest.cpp     map->add(key, IntVector());
map              2975 Source/platform/heap/HeapTest.cpp     HeapHashMap<void*, IntVector>::iterator it = map->find(key);
map              2976 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(0u, map->get(key).size());
map              2979 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(1u, map->get(key).size());
map              2981 Source/platform/heap/HeapTest.cpp     Persistent<HeapHashMap<void*, IntVector> > keepAlive(map);
map              2983 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(1u, map->get(key).size());
map              3019 Source/platform/heap/HeapTest.cpp     HeapHashMap<void*, IntSet>* map = new HeapHashMap<void*, IntSet>();
map              3021 Source/platform/heap/HeapTest.cpp     map->add(key, IntSet());
map              3023 Source/platform/heap/HeapTest.cpp     HeapHashMap<void*, IntSet>::iterator it = map->find(key);
map              3024 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(0u, map->get(key).size());
map              3027 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(1u, map->get(key).size());
map              3029 Source/platform/heap/HeapTest.cpp     Persistent<HeapHashMap<void*, IntSet> > keepAlive(map);
map              3031 Source/platform/heap/HeapTest.cpp     EXPECT_EQ(1u, map->get(key).size());
map              3227 Source/platform/heap/HeapTest.cpp     HeapHashMap<SimpleClassWithDestructor*, OwnPtr<SimpleClassWithDestructor> > map;
map              3229 Source/platform/heap/HeapTest.cpp     map.add(hasDestructor, adoptPtr(hasDestructor));
map              3231 Source/platform/heap/HeapTest.cpp     map.clear();
map               272 Source/platform/heap/Visitor.h     void trace(const HashMap<T, U, V, W, X, WTF::DefaultAllocator>& map)
map               274 Source/platform/heap/Visitor.h         OffHeapCollectionTraceTrait<HashMap<T, U, V, W, X, WTF::DefaultAllocator> >::trace(this, map);
map               434 Source/platform/heap/Visitor.h     static void trace(Visitor* visitor, const HashMap& map)
map               436 Source/platform/heap/Visitor.h         if (map.isEmpty())
map               439 Source/platform/heap/Visitor.h             HashMap& iterMap = const_cast<HashMap&>(map);
map                53 Source/platform/network/WebSocketHandshakeRequest.cpp void WebSocketHandshakeRequest::addAndMergeHeader(HTTPHeaderMap* map, const AtomicString& name, const AtomicString& value)
map                55 Source/platform/network/WebSocketHandshakeRequest.cpp     HTTPHeaderMap::AddResult result = map->add(name, value);
map               167 Source/platform/text/BidiTestHarness.h     static std::map<std::string, UChar> charClassExamples;
map                71 Source/platform/text/LocaleWin.cpp static void ensureNameToLCIDMap(NameToLCIDMap& map)
map                73 Source/platform/text/LocaleWin.cpp     if (!map.isEmpty())
map                77 Source/platform/text/LocaleWin.cpp     map.add("ar", 0x0001);
map                78 Source/platform/text/LocaleWin.cpp     map.add("ar-eg", 0x0C01);
map                79 Source/platform/text/LocaleWin.cpp     map.add("de", 0x0007);
map                80 Source/platform/text/LocaleWin.cpp     map.add("de-de", 0x0407);
map                81 Source/platform/text/LocaleWin.cpp     map.add("el", 0x0008);
map                82 Source/platform/text/LocaleWin.cpp     map.add("el-gr", 0x0408);
map                83 Source/platform/text/LocaleWin.cpp     map.add("en", 0x0009);
map                84 Source/platform/text/LocaleWin.cpp     map.add("en-gb", 0x0809);
map                85 Source/platform/text/LocaleWin.cpp     map.add("en-us", 0x0409);
map                86 Source/platform/text/LocaleWin.cpp     map.add("fr", 0x000C);
map                87 Source/platform/text/LocaleWin.cpp     map.add("fr-fr", 0x040C);
map                88 Source/platform/text/LocaleWin.cpp     map.add("he", 0x000D);
map                89 Source/platform/text/LocaleWin.cpp     map.add("he-il", 0x040D);
map                90 Source/platform/text/LocaleWin.cpp     map.add("hi", 0x0039);
map                91 Source/platform/text/LocaleWin.cpp     map.add("hi-in", 0x0439);
map                92 Source/platform/text/LocaleWin.cpp     map.add("ja", 0x0011);
map                93 Source/platform/text/LocaleWin.cpp     map.add("ja-jp", 0x0411);
map                94 Source/platform/text/LocaleWin.cpp     map.add("ko", 0x0012);
map                95 Source/platform/text/LocaleWin.cpp     map.add("ko-kr", 0x0412);
map                96 Source/platform/text/LocaleWin.cpp     map.add("ru", 0x0019);
map                97 Source/platform/text/LocaleWin.cpp     map.add("ru-ru", 0x0419);
map                98 Source/platform/text/LocaleWin.cpp     map.add("zh-cn", 0x0804);
map                99 Source/platform/text/LocaleWin.cpp     map.add("zh-tw", 0x0404);
map               110 Source/platform/text/LocaleWin.cpp     DEFINE_STATIC_LOCAL(NameToLCIDMap, map, ());
map               111 Source/platform/text/LocaleWin.cpp     ensureNameToLCIDMap(map);
map               115 Source/platform/text/LocaleWin.cpp         NameToLCIDMap::const_iterator iterator = map.find(localeName);
map               116 Source/platform/text/LocaleWin.cpp         if (iterator != map.end())
map               243 Source/platform/transforms/AffineTransform.cpp     map(point.x(), point.y(), x2, y2);
map               252 Source/platform/transforms/AffineTransform.cpp     map(point.x(), point.y(), x2, y2);
map                54 Source/platform/transforms/AffineTransform.h     void map(double x, double y, double& x2, double& y2) const;
map               115 Source/platform/transforms/TransformationMatrix.h     void map(double x, double y, double& x2, double& y2) const { multVecMatrix(x, y, x2, y2); }
map               137 Source/platform/weborigin/SecurityPolicy.cpp     OriginAccessMap& map = originAccessMap();
map               138 Source/platform/weborigin/SecurityPolicy.cpp     OriginAccessMap::iterator it = map.find(sourceString);
map               139 Source/platform/weborigin/SecurityPolicy.cpp     if (it == map.end())
map               150 Source/platform/weborigin/SecurityPolicy.cpp         map.remove(it);
map               151 Source/web/InspectorClientImpl.cpp void InspectorClientImpl::dumpUncountedAllocatedObjects(const HashMap<const void*, size_t>& map)
map               154 Source/web/InspectorClientImpl.cpp         agent->dumpUncountedAllocatedObjects(map);
map               462 Source/web/WebDevToolsAgentImpl.cpp void WebDevToolsAgentImpl::dumpUncountedAllocatedObjects(const HashMap<const void*, size_t>& map)
map               466 Source/web/WebDevToolsAgentImpl.cpp         InstrumentedObjectSizeProvider(const HashMap<const void*, size_t>& map) : m_map(map) { }
map               477 Source/web/WebDevToolsAgentImpl.cpp     InstrumentedObjectSizeProvider provider(map);
map               358 Source/web/tests/WebFrameTest.cpp     std::map<WebLocalFrame*, std::set<std::string> > m_matchedSelectors;
map                41 Source/wtf/HashMapTest.cpp     IntHashMap map;
map                42 Source/wtf/HashMapTest.cpp     map.add(1, 2);
map                43 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(map.begin() != map.end());
map                44 Source/wtf/HashMapTest.cpp     ASSERT_FALSE(map.begin() == map.end());
map                46 Source/wtf/HashMapTest.cpp     IntHashMap::const_iterator begin = map.begin();
map                47 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(begin == map.begin());
map                48 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(map.begin() == begin);
map                49 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(begin != map.end());
map                50 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(map.end() != begin);
map                51 Source/wtf/HashMapTest.cpp     ASSERT_FALSE(begin != map.begin());
map                52 Source/wtf/HashMapTest.cpp     ASSERT_FALSE(map.begin() != begin);
map                53 Source/wtf/HashMapTest.cpp     ASSERT_FALSE(begin == map.end());
map                54 Source/wtf/HashMapTest.cpp     ASSERT_FALSE(map.end() == begin);
map                77 Source/wtf/HashMapTest.cpp     DoubleHashMap map;
map                79 Source/wtf/HashMapTest.cpp     map.add(clobberKey, 1);
map                80 Source/wtf/HashMapTest.cpp     map.add(zeroKey, 2);
map                81 Source/wtf/HashMapTest.cpp     map.add(negativeZeroKey, 3);
map                84 Source/wtf/HashMapTest.cpp     ASSERT_EQ(map.get(clobberKey), 1);
map                85 Source/wtf/HashMapTest.cpp     ASSERT_EQ(map.get(zeroKey), 2);
map                86 Source/wtf/HashMapTest.cpp     ASSERT_EQ(map.get(negativeZeroKey), 3);
map               109 Source/wtf/HashMapTest.cpp     OwnPtrHashMap map;
map               110 Source/wtf/HashMapTest.cpp     map.add(1, adoptPtr(new DestructCounter(1, &destructNumber)));
map               111 Source/wtf/HashMapTest.cpp     map.add(2, adoptPtr(new DestructCounter(2, &destructNumber)));
map               113 Source/wtf/HashMapTest.cpp     DestructCounter* counter1 = map.get(1);
map               115 Source/wtf/HashMapTest.cpp     DestructCounter* counter2 = map.get(2);
map               119 Source/wtf/HashMapTest.cpp     for (OwnPtrHashMap::iterator iter = map.begin(); iter != map.end(); ++iter) {
map               125 Source/wtf/HashMapTest.cpp     OwnPtr<DestructCounter> ownCounter1 = map.take(1);
map               127 Source/wtf/HashMapTest.cpp     ASSERT_FALSE(map.contains(1));
map               130 Source/wtf/HashMapTest.cpp     map.remove(2);
map               131 Source/wtf/HashMapTest.cpp     ASSERT_FALSE(map.contains(2));
map               132 Source/wtf/HashMapTest.cpp     ASSERT_EQ(0UL, map.size());
map               164 Source/wtf/HashMapTest.cpp     HashMap<RefPtr<DummyRefCounted>, int> map;
map               165 Source/wtf/HashMapTest.cpp     map.add(ptr, 1);
map               168 Source/wtf/HashMapTest.cpp     ASSERT_EQ(1, map.get(ptr));
map               172 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(map.contains(rawPtr));
map               173 Source/wtf/HashMapTest.cpp     ASSERT_NE(map.end(), map.find(rawPtr));
map               174 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(map.contains(ptr));
map               175 Source/wtf/HashMapTest.cpp     ASSERT_NE(map.end(), map.find(ptr));
map               181 Source/wtf/HashMapTest.cpp     map.remove(rawPtr);
map               184 Source/wtf/HashMapTest.cpp     ASSERT_TRUE(map.isEmpty());
map               140 Source/wtf/ThreadingPthreads.cpp     DEFINE_STATIC_LOCAL(ThreadMap, map, ());
map               141 Source/wtf/ThreadingPthreads.cpp     return map;