add                41 ManualTests/accessibility/resources/AppletTest.java         add(button); 
add                42 ManualTests/accessibility/resources/AppletTest.java         add(textField); 
add                89 Source/bindings/v8/DOMWrapperMap.h         typename MapType::AddResult result = m_map.add(key, UnsafePersistent<v8::Object>());
add               126 Source/bindings/v8/DOMWrapperWorld.cpp     WorldMap::AddResult result = map.add(worldId, 0);
add               387 Source/bindings/v8/Dictionary.cpp         value.add(stringValue);
add                65 Source/bindings/v8/ScriptProfiler.cpp     profileNameIdleTimeMap->add(title, 0);
add              1263 Source/bindings/v8/SerializedScriptValue.cpp         m_blobDataHandles.add(blob->uuid(), blob->blobDataHandle());
add              1286 Source/bindings/v8/SerializedScriptValue.cpp         m_blobDataHandles.add(file->uuid(), file->blobDataHandle());
add              1298 Source/bindings/v8/SerializedScriptValue.cpp             m_blobDataHandles.add(fileList->item(i)->uuid(), fileList->item(i)->blobDataHandle());
add              2800 Source/bindings/v8/SerializedScriptValue.cpp         visited.add(arrayBuffers[i].get());
add               146 Source/bindings/v8/V8PerContextData.cpp     m_customElementBindings->add(definition, binding);
add               110 Source/bindings/v8/V8PerIsolateData.cpp     domTemplateMap.add(domTemplateKey, v8::Eternal<v8::FunctionTemplate>(m_isolate, templ));
add               125 Source/bindings/v8/V8PerIsolateData.cpp     currentDOMTemplateMap().add(domTemplateKey, v8::Eternal<v8::FunctionTemplate>(m_isolate, v8::Local<v8::FunctionTemplate>(templ)));
add               149 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp         map.add(propertyName, propInfo);
add                57 Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp             impl->add(option, exceptionState);
add                63 Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp             impl->add(option, index, exceptionState);
add               403 Source/bindings/v8/npruntime.cpp             rootObjectMap().get(owner)->add(npObject);
add                78 Source/core/accessibility/AXARIAGrid.cpp     appendedRows.add(row);
add               596 Source/core/accessibility/AXObjectCache.cpp     m_idsInUse.add(objID);
add               213 Source/core/accessibility/AXObjectCache.h     void setNodeInUse(Node* n) { m_textMarkerNodes.add(n); }
add               367 Source/core/accessibility/AXTable.cpp             appendedRows.add(row);
add                84 Source/core/animation/AnimatableDoubleTest.cpp     EXPECT_EQ(-10, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(-2).get(), AnimatableDouble::create(-8).get()).get())->toDouble());
add                85 Source/core/animation/AnimatableDoubleTest.cpp     EXPECT_EQ(0, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(50).get(), AnimatableDouble::create(-50).get()).get())->toDouble());
add                86 Source/core/animation/AnimatableDoubleTest.cpp     EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(4).get(), AnimatableDouble::create(6).get()).get())->toDouble());
add                87 Source/core/animation/AnimatableDoubleTest.cpp     EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(0).get(), AnimatableDouble::create(20).get()).get())->toDouble());
add                88 Source/core/animation/AnimatableDoubleTest.cpp     EXPECT_EQ(30, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(30).get(), AnimatableDouble::create(0).get()).get())->toDouble());
add                50 Source/core/animation/AnimatableLengthBox.cpp         AnimatableValue::add(this->left(), lengthBox->left()),
add                51 Source/core/animation/AnimatableLengthBox.cpp         AnimatableValue::add(this->right(), lengthBox->right()),
add                52 Source/core/animation/AnimatableLengthBox.cpp         AnimatableValue::add(this->top(), lengthBox->top()),
add                53 Source/core/animation/AnimatableLengthBox.cpp         AnimatableValue::add(this->bottom(), lengthBox->bottom()));
add                60 Source/core/animation/AnimatableLengthBoxAndBool.cpp             AnimatableValue::add(box(), lengthBox->box()),
add                48 Source/core/animation/AnimatableLengthPoint.cpp         AnimatableValue::add(this->x(), lengthPoint->x()),
add                49 Source/core/animation/AnimatableLengthPoint.cpp         AnimatableValue::add(this->y(), lengthPoint->y()));
add                49 Source/core/animation/AnimatableLengthPoint3D.cpp         AnimatableValue::add(this->x(), lengthPoint->x()),
add                50 Source/core/animation/AnimatableLengthPoint3D.cpp         AnimatableValue::add(this->y(), lengthPoint->y()),
add                51 Source/core/animation/AnimatableLengthPoint3D.cpp         AnimatableValue::add(this->z(), lengthPoint->z()));
add                48 Source/core/animation/AnimatableLengthSize.cpp         AnimatableValue::add(this->width(), lengthSize->width()),
add                49 Source/core/animation/AnimatableLengthSize.cpp         AnimatableValue::add(this->height(), lengthSize->height()));
add               287 Source/core/animation/AnimatableLengthTest.cpp         AnimatableValue::add(create(10, CSSPrimitiveValue::CSS_PX).get(), create(0, CSSPrimitiveValue::CSS_MM).get()));
add               289 Source/core/animation/AnimatableLengthTest.cpp         AnimatableValue::add(create(4, CSSPrimitiveValue::CSS_PX).get(), create(1, CSSPrimitiveValue::CSS_IN).get()));
add               292 Source/core/animation/AnimatableLengthTest.cpp         AnimatableValue::add(create(10, CSSPrimitiveValue::CSS_EMS).get(), create(20, CSSPrimitiveValue::CSS_REMS).get()));
add               295 Source/core/animation/AnimatableLengthTest.cpp         AnimatableValue::add(create(10, CSSPrimitiveValue::CSS_EMS).get(), create(0, CSSPrimitiveValue::CSS_REMS).get()));
add               298 Source/core/animation/AnimatableLengthTest.cpp         AnimatableValue::add(create(0, CSSPrimitiveValue::CSS_EMS).get(), create(20, CSSPrimitiveValue::CSS_REMS).get()));
add               302 Source/core/animation/AnimatableLengthTest.cpp     EXPECT_EQ(rems20.get(), AnimatableValue::add(create(0, CSSPrimitiveValue::CSS_EMS).get(), rems20.get()).get());
add               303 Source/core/animation/AnimatableLengthTest.cpp     EXPECT_EQ(rems20.get(), AnimatableValue::add(rems20.get(), create(0, CSSPrimitiveValue::CSS_EMS).get()).get());
add               308 Source/core/animation/AnimatableLengthTest.cpp         AnimatableValue::add(zeropercent.get(), create(-10, CSSPrimitiveValue::CSS_REMS).get()));
add               310 Source/core/animation/AnimatableLengthTest.cpp         AnimatableValue::add(create(-10, CSSPrimitiveValue::CSS_REMS).get(), zeropercent.get()));
add                53 Source/core/animation/AnimatableNeutralTest.cpp     EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::add(animatableUnknown.get(), AnimatableValue::neutralValue()).get())->toCSSValue());
add                54 Source/core/animation/AnimatableNeutralTest.cpp     EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::add(AnimatableValue::neutralValue(), animatableUnknown.get()).get())->toCSSValue());
add               101 Source/core/animation/AnimatableRepeatable.cpp         addedValues[i] = add(left, right);
add                50 Source/core/animation/AnimatableTransform.cpp     return AnimatableTransform::create(m_transform.add(transform->m_transform));
add                87 Source/core/animation/AnimatableUnknownTest.cpp     EXPECT_EQ(otherCSSValue, toAnimatableUnknown(AnimatableValue::add(animatableUnknown.get(), otherAnimatableUnknown.get()).get())->toCSSValue());
add                88 Source/core/animation/AnimatableUnknownTest.cpp     EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::add(otherAnimatableUnknown.get(), animatableUnknown.get()).get())->toCSSValue());
add                48 Source/core/animation/AnimatableValue.h     static PassRefPtrWillBeRawPtr<AnimatableValue> add(const AnimatableValue*, const AnimatableValue*);
add                25 Source/core/animation/AnimatableValueKeyframe.cpp         properties.add(*iter.keys());
add                21 Source/core/animation/AnimatableValueKeyframe.h         m_propertyValues.add(property, value);
add               100 Source/core/animation/Animation.cpp         m_target->ensureActiveAnimations().players().add(player());
add               123 Source/core/animation/Animation.cpp         ensureAnimationStack(m_target.get()).add(this);
add                46 Source/core/animation/AnimationStack.h     void add(Animation* animation) { m_activeAnimations.append(animation); }
add               102 Source/core/animation/AnimationStackTest.cpp     cancelledAnimationPlayers.add(play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 0));
add               344 Source/core/animation/CompositorAnimations.cpp         curve.add(keyframe);
add               350 Source/core/animation/CompositorAnimations.cpp         curve.add(keyframe, blink::WebAnimationCurve::TimingFunctionTypeLinear);
add               357 Source/core/animation/CompositorAnimations.cpp             curve.add(keyframe, cubic->x1(), cubic->y1(), cubic->x2(), cubic->y2());
add               382 Source/core/animation/CompositorAnimations.cpp             curve.add(keyframe, easeType);
add               561 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               562 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 5.0)));
add               608 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               609 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(10.0, 5.0)));
add               659 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               660 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.25, -1.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               661 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.5, 20.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               662 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 5.0)));
add               710 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               711 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.75, 5.0)));
add               767 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeEase));
add               768 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.5, -1.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               769 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 20.0), 1.0, 2.0, 3.0, 4.0));
add               770 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(2.0, 5.0)));
add               827 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 5.0), 1.0, 0.0, 1.0, 1.0));
add               828 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.5, 20.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               829 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.75, -1.0), blink::WebAnimationCurve::TimingFunctionTypeEaseOut));
add               830 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 2.0)));
add               879 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 5.0), blink::WebAnimationCurve::TimingFunctionTypeLinear));
add               880 Source/core/animation/CompositorAnimationsTest.cpp     usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.5, 2.0)));
add                98 Source/core/animation/CompositorAnimationsTestHelper.h     MOCK_METHOD1_T(add, void(const KeyframeType&));
add                99 Source/core/animation/CompositorAnimationsTestHelper.h     MOCK_METHOD2_T(add, void(const KeyframeType&, blink::WebAnimationCurve::TimingFunctionType));
add               100 Source/core/animation/CompositorAnimationsTestHelper.h     MOCK_METHOD5_T(add, void(const KeyframeType&, double, double, double, double));
add                75 Source/core/animation/DocumentTimeline.cpp     m_players.add(result);
add               181 Source/core/animation/DocumentTimeline.cpp     m_playersNeedingUpdate.add(player);
add                54 Source/core/animation/KeyframeEffectModel.cpp             result.add(*it);
add               150 Source/core/animation/KeyframeEffectModel.cpp                 group = m_keyframeGroups->add(property, adoptPtrWillBeNoop(new PropertySpecificKeyframeGroup)).storedValue->value.get();
add                25 Source/core/animation/StringKeyframe.cpp         properties.add(*iter.keys());
add                21 Source/core/animation/StringKeyframe.h         m_propertyValues.add(property, value);
add               125 Source/core/animation/css/CSSAnimations.cpp             specifiedPropertiesForUseCounter.add(properties.propertyAt(j).id());
add               181 Source/core/animation/css/CSSAnimations.cpp             allProperties.add(*iter);
add               315 Source/core/animation/css/CSSAnimations.cpp             inactive.add(iter->key);
add               395 Source/core/animation/css/CSSAnimations.cpp         element->document().cssPendingAnimations().add(player.get());
add               412 Source/core/animation/css/CSSAnimations.cpp             retargetedCompositorTransitions.add(id, std::pair<RefPtr<Animation>, double>(toAnimation(player->source()), player->startTime()));
add               449 Source/core/animation/css/CSSAnimations.cpp         element->document().cssPendingAnimations().add(player.get());
add               631 Source/core/animation/css/CSSAnimations.cpp                 cancelledAnimationPlayers.add(transitionMap.get(*iter).transition->player());
add                69 Source/core/animation/css/CSSAnimations.h         m_cancelledAnimationPlayers.add(&player);
add                87 Source/core/animation/css/CSSAnimations.h     void cancelTransition(CSSPropertyID id) { m_cancelledTransitions.add(id); }
add                44 Source/core/animation/css/CSSPendingAnimations.h     void add(AnimationPlayer*);
add                51 Source/core/clipboard/DataObject.cpp         types.add(webTypes[i]);
add               141 Source/core/clipboard/DataObject.cpp             results.add(m_itemList[i]->type());
add               149 Source/core/clipboard/DataObject.cpp         results.add(mimeTypeFiles);
add               165 Source/core/clipboard/DataObject.cpp     if (!add(data, type))
add                68 Source/core/clipboard/DataObject.h     PassRefPtrWillBeRawPtr<DataObjectItem> add(const String& data, const String& type);
add                69 Source/core/clipboard/DataObject.h     PassRefPtrWillBeRawPtr<DataObjectItem> add(PassRefPtrWillBeRawPtr<File>);
add                85 Source/core/clipboard/DataTransferItemList.cpp     RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->add(data, type);
add                97 Source/core/clipboard/DataTransferItemList.cpp     RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->add(file);
add                58 Source/core/clipboard/DataTransferItemList.h     PassRefPtrWillBeRawPtr<DataTransferItem> add(const String& data, const String& type, ExceptionState&);
add                59 Source/core/clipboard/DataTransferItemList.h     PassRefPtrWillBeRawPtr<DataTransferItem> add(PassRefPtrWillBeRawPtr<File>);
add              1368 Source/core/css/CSSComputedStyleDeclaration.cpp     if (!propertyIDSet.add(propertyID).isNewEntry)
add               110 Source/core/css/CSSCursorImageValue.cpp         m_referencedElements.add(svgElement);
add                59 Source/core/css/CSSFontFaceSource.cpp     RefPtr<SimpleFontData>& fontData = m_fontDataTable.add(key.hash(), nullptr).storedValue->value;
add               129 Source/core/css/CSSFontSelector.cpp     m_clients.add(client);
add                51 Source/core/css/CSSImageGeneratorValue.cpp         m_sizes.add(size);
add                55 Source/core/css/CSSImageGeneratorValue.cpp         m_clients.add(renderer, SizeAndCount(size, 1));
add               108 Source/core/css/CSSImageGeneratorValue.cpp     m_images.add(size, image);
add               135 Source/core/css/CSSSegmentedFontFace.cpp     RefPtr<SegmentedFontData>& fontData = m_fontDataTable.add(key.hash(), nullptr).storedValue->value;
add                92 Source/core/css/CSSValuePool.cpp     ColorValueCache::AddResult entry = m_colorValueCache.add(rgbValue, dummyValue);
add               132 Source/core/css/CSSValuePool.cpp     RefPtrWillBeMember<CSSPrimitiveValue>& value = m_fontFamilyValueCache.add(familyName, nullptr).storedValue->value;
add               145 Source/core/css/CSSValuePool.cpp     RefPtrWillBeMember<CSSValueList>& value = m_fontFaceValueCache.add(string, nullptr).storedValue->value;
add                52 Source/core/css/FontFaceCache.cpp     if (!m_styleRuleToFontFace.add(fontFaceRule, fontFace).isNewEntry)
add                61 Source/core/css/FontFaceCache.cpp     OwnPtr<TraitsMap>& familyFontFaces = m_fontFaces.add(fontFace->family(), nullptr).storedValue->value;
add                65 Source/core/css/FontFaceCache.cpp     RefPtr<CSSSegmentedFontFace>& segmentedFontFace = familyFontFaces->add(fontFace->traits().mask(), nullptr).storedValue->value;
add                71 Source/core/css/FontFaceCache.cpp         m_cssConnectedFontFaces.add(fontFace);
add               196 Source/core/css/FontFaceCache.cpp     OwnPtr<TraitsMap>& segmentedFontFaceCache = m_fonts.add(family, nullptr).storedValue->value;
add               201 Source/core/css/FontFaceCache.cpp     RefPtr<CSSSegmentedFontFace>& face = segmentedFontFaceCache->add(traits.mask(), nullptr).storedValue->value;
add                49 Source/core/css/FontFaceCache.h     void add(CSSFontSelector*, const StyleRuleFontFace*, PassRefPtr<FontFace>);
add               258 Source/core/css/FontFaceSet.cpp     m_loadingFonts.add(fontFace);
add               294 Source/core/css/FontFaceSet.cpp     m_nonCSSConnectedFaces.add(fontFace);
add                73 Source/core/css/FontFaceSet.h     void add(FontFace*, ExceptionState&);
add               233 Source/core/css/MediaList.cpp     bool success = m_mediaQueries->add(medium);
add                52 Source/core/css/MediaList.h     bool add(const String&);
add               276 Source/core/css/PropertySetCSSStyleDeclaration.cpp     RefPtrWillBeMember<CSSValue>& clonedValue = m_cssomCSSValueClones->add(internalValue, RefPtrWillBeMember<CSSValue>()).storedValue->value;
add               249 Source/core/css/RuleFeature.cpp     m_metadata.add(metadata);
add               259 Source/core/css/RuleFeature.cpp     InvalidationSetMap::AddResult addResult = m_classInvalidationSets.add(className, nullptr);
add               267 Source/core/css/RuleFeature.cpp     InvalidationSetMap::AddResult addResult = m_attributeInvalidationSets.add(attributeName, nullptr);
add               275 Source/core/css/RuleFeature.cpp     InvalidationSetMap::AddResult addResult = m_idInvalidationSets.add(id, nullptr);
add               349 Source/core/css/RuleFeature.cpp     m_metadata.add(other.m_metadata);
add                59 Source/core/css/RuleFeature.h     void add(const RuleFeatureSet&);
add               119 Source/core/css/RuleFeature.h         void add(const FeatureMetadata& other);
add               144 Source/core/css/RuleSet.cpp     OwnPtrWillBeMember<WillBeHeapLinkedStack<RuleData> >& rules = map.add(key, nullptr).storedValue->value;
add               333 Source/core/css/RuleSet.cpp         CompactRuleMap::ValueType* compactRules = compactMap.add(it->key, nullptr).storedValue;
add                64 Source/core/css/SelectorFilter.cpp         m_ancestorIdentifierFilter->add(parentFrame.identifierHashes[i]);
add               452 Source/core/css/StylePropertySet.cpp         toRemove.add(set[i]);
add               304 Source/core/css/StyleSheetContents.cpp     PrefixNamespaceURIMap::AddResult result = m_namespaces.add(prefix, uri);
add               549 Source/core/css/StyleSheetContents.cpp     m_loadingClients.add(sheet);
add               574 Source/core/css/StyleSheetContents.cpp     m_completedClients.add(sheet);
add               581 Source/core/css/StyleSheetContents.cpp     m_loadingClients.add(sheet);
add                44 Source/core/css/TreeBoundaryCrossingRules.cpp         m_treeBoundaryCrossingRuleSetMap.add(scopingNode, ruleSetForScope.release());
add                45 Source/core/css/TreeBoundaryCrossingRules.cpp         m_scopingNodes.add(scopingNode);
add                59 Source/core/css/TreeBoundaryCrossingRules.cpp         features.add(ruleSet->features());
add               116 Source/core/css/invalidation/DescendantInvalidationSet.cpp     ensureClassSet().add(className);
add               123 Source/core/css/invalidation/DescendantInvalidationSet.cpp     ensureIdSet().add(id);
add               130 Source/core/css/invalidation/DescendantInvalidationSet.cpp     ensureTagNameSet().add(tagName);
add               137 Source/core/css/invalidation/DescendantInvalidationSet.cpp     ensureAttributeSet().add(attribute);
add                36 Source/core/css/invalidation/StyleInvalidator.cpp     PendingInvalidationMap::AddResult addResult = m_pendingInvalidationMap.add(&element, nullptr);
add                70 Source/core/css/invalidation/StyleSheetInvalidationAnalysis.cpp             idScopes.add(scopeSelector->value().impl());
add                72 Source/core/css/invalidation/StyleSheetInvalidationAnalysis.cpp             classScopes.add(scopeSelector->value().impl());
add              3860 Source/core/css/parser/CSSPropertyParser.cpp             gridAreaMap.add(gridAreaName, GridCoordinate(GridSpan(rowCount, rowCount), GridSpan(currentCol, lookAheadCol)));
add              4589 Source/core/css/parser/CSSPropertyParser.cpp                 familyBuilder.add(value->string);
add              4594 Source/core/css/parser/CSSPropertyParser.cpp                 familyBuilder.add(value->string);
add              4604 Source/core/css/parser/CSSPropertyParser.cpp                 familyBuilder.add(value->string);
add              4609 Source/core/css/parser/CSSPropertyParser.cpp                 familyBuilder.add(value->string);
add                96 Source/core/css/resolver/MatchedPropertiesCache.cpp     Cache::AddResult addResult = m_cache.add(hash, nullptr);
add                54 Source/core/css/resolver/MatchedPropertiesCache.h     void add(const RenderStyle*, const RenderStyle* parentStyle, unsigned hash, const MatchResult&);
add                85 Source/core/css/resolver/ScopedStyleResolver.cpp         if (contents->hasOneClient() || visitedSharedStyleSheetContents.add(contents).isNewEntry)
add                86 Source/core/css/resolver/ScopedStyleResolver.cpp             features.add(contents->ruleSet().features());
add                60 Source/core/css/resolver/ScopedStyleTree.cpp     HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::AddResult addResult = m_authorStyles.add(&scopingNode, nullptr);
add              1093 Source/core/css/resolver/StyleBuilderCustom.cpp                 NamedGridLinesMap::AddResult result = namedGridLines.add(namedGridLine, Vector<size_t>());
add              1095 Source/core/css/resolver/StyleBuilderCustom.cpp                 OrderedNamedGridLines::AddResult orderedInsertionResult = orderedNamedGridLines.add(currentNamedGridLine, Vector<String>());
add               128 Source/core/css/resolver/StyleResolver.cpp         cssFontSelector->fontFaceCache()->add(cssFontSelector, fontFaceRule, fontFace);
add               185 Source/core/css/resolver/StyleResolver.cpp         m_pendingStyleSheets.add(styleSheets[i].get());
add               315 Source/core/css/resolver/StyleResolver.cpp         m_features.add(defaultStyleSheets.defaultStyle()->features());
add               318 Source/core/css/resolver/StyleResolver.cpp         m_features.add(defaultStyleSheets.defaultViewSourceStyle()->features());
add               321 Source/core/css/resolver/StyleResolver.cpp         m_features.add(m_watchedSelectorsRules->features());
add              1338 Source/core/css/resolver/StyleResolver.cpp         m_matchedPropertiesCache.add(state.style(), state.parentStyle(), cacheHash, matchResult);
add               101 Source/core/dom/CSSSelectorWatch.cpp             m_removedSelectors.add(selector);
add               106 Source/core/dom/CSSSelectorWatch.cpp         HashCountedSet<String>::AddResult result = m_matchingCallbackSelectors.add(selector);
add               114 Source/core/dom/CSSSelectorWatch.cpp             m_addedSelectors.add(selector);
add                65 Source/core/dom/ChildListMutationScope.cpp     AccumulatorMap::AddResult result = accumulatorMap().add(&target, 0);
add               924 Source/core/dom/ContainerNode.cpp     SelectorQuery* selectorQuery = document().selectorQueryCache().add(selectors, document(), exceptionState);
add               937 Source/core/dom/ContainerNode.cpp     SelectorQuery* selectorQuery = document().selectorQueryCache().add(selectors, document(), exceptionState);
add                52 Source/core/dom/ContextLifecycleNotifier.cpp         m_activeDOMObjects.add(static_cast<ActiveDOMObject*>(observer));
add                67 Source/core/dom/DOMImplementation.cpp     set.add(string);
add                57 Source/core/dom/DOMSettableTokenList.cpp     DOMTokenList::add(tokens, exceptionState);
add                63 Source/core/dom/DOMSettableTokenList.cpp             m_tokens.add(AtomicString(tokens[i]));
add                73 Source/core/dom/DOMSettableTokenList.cpp         m_tokens.add(token);
add                52 Source/core/dom/DOMSettableTokenList.h     virtual void add(const Vector<String>&, ExceptionState&) OVERRIDE;
add                74 Source/core/dom/DOMTokenList.cpp     add(tokens, exceptionState);
add                53 Source/core/dom/DOMTokenList.h     virtual void add(const Vector<String>&, ExceptionState&);
add                54 Source/core/dom/DOMTokenList.h     void add(const AtomicString&, ExceptionState&);
add              1420 Source/core/dom/Document.cpp     m_visibilityObservers.add(observer);
add              2024 Source/core/dom/Document.cpp     m_layerUpdateElements.add(&element);
add              2036 Source/core/dom/Document.cpp     m_useElementsNeedingUpdate.add(&element);
add              3589 Source/core/dom/Document.cpp         m_listsInvalidatedAtDocument.add(list);
add              3603 Source/core/dom/Document.cpp     m_nodeIterators.add(ni);
add              4745 Source/core/dom/Document.cpp     m_ranges.add(range);
add              4774 Source/core/dom/Document.cpp     RefPtr<HTMLCanvasElement>& element = m_cssCanvasElements.add(name, nullptr).storedValue->value;
add              5035 Source/core/dom/Document.cpp     if (!m_touchEventTargets->add(handler).isNewEntry) {
add              5350 Source/core/dom/Document.cpp     LocaleIdentifierToLocaleMap::AddResult result = m_localeCache.add(localeKey, nullptr);
add              5380 Source/core/dom/Document.cpp     m_associatedFormControls.add(element);
add                44 Source/core/dom/DocumentLifecycleNotifier.cpp         m_documentObservers.add(static_cast<DocumentLifecycleObserver*>(observer));
add                65 Source/core/dom/DocumentMarker.h         void add(const MarkerTypes& types) { m_mask |= types.m_mask; }
add               201 Source/core/dom/DocumentMarkerController.cpp     m_possiblyExistingMarkerTypes.add(newMarker.type());
add               203 Source/core/dom/DocumentMarkerController.cpp     OwnPtr<MarkerLists>& markers = m_markers.add(node, nullptr).storedValue->value;
add                38 Source/core/dom/DocumentOrderedList.cpp         m_nodes.add(node);
add                64 Source/core/dom/DocumentOrderedList.cpp     m_nodes.add(node);
add                43 Source/core/dom/DocumentOrderedList.h     void add(Node*);
add                69 Source/core/dom/DocumentOrderedMap.cpp     Map::AddResult addResult = m_map.add(key, adoptPtr(new MapEntry(element)));
add                45 Source/core/dom/DocumentOrderedMap.h     void add(StringImpl*, Element*);
add                58 Source/core/dom/DocumentStyleSheetCollector.h     void willVisit(Document* document) { m_visitedDocuments.add(document); }
add               138 Source/core/dom/Element.cpp     AttrNodeListMap::AddResult result = attrNodeListMap().add(element, adoptPtr(new AttrNodeList));
add              2621 Source/core/dom/Element.cpp     SelectorQuery* selectorQuery = document().selectorQueryCache().add(AtomicString(selectors), document(), exceptionState);
add                50 Source/core/dom/ElementDataCache.cpp     ShareableElementDataCache::ValueType* it = m_shareableElementDataCache.add(attributeHash(attributes), nullptr).storedValue;
add               205 Source/core/dom/ExecutionContext.cpp     TimeoutMap::AddResult result = m_timeouts.add(timeoutID, DOMTimer::create(this, action, timeout, singleShot, timeoutID));
add                43 Source/core/dom/IdTargetObserverRegistry.cpp     IdToObserverSetMap::AddResult result = m_registry.add(id.impl(), nullptr);
add                47 Source/core/dom/IdTargetObserverRegistry.cpp     result.storedValue->value->add(observer);
add               235 Source/core/dom/MessagePort.cpp         portSet.add(port);
add               163 Source/core/dom/MutationObserver.cpp     m_registrations.add(registration);
add               191 Source/core/dom/MutationObserver.cpp     activeMutationObservers().add(observer);
add               273 Source/core/dom/MutationObserver.cpp             suspendedMutationObservers().add(observers[i]);
add                81 Source/core/dom/MutationObserverRegistration.cpp     m_transientRegistrationNodes->add(&node);
add               126 Source/core/dom/MutationObserverRegistration.cpp     nodes.add(&m_registrationNode);
add               130 Source/core/dom/MutationObserverRegistration.cpp         nodes.add(iter->get());
add               161 Source/core/dom/Node.cpp                 HashMap<String, size_t>::AddResult result = perTagCount.add(element->tagName(), 1);
add               251 Source/core/dom/Node.cpp     liveNodeSet.add(this);
add              2060 Source/core/dom/Node.cpp             HashMap<MutationObserver*, MutationRecordDeliveryOptions>::AddResult result = observers.add(&registration.observer(), deliveryOptions);
add              2118 Source/core/dom/Node.cpp     ensureRareData().ensureMutationObserverData().transientRegistry.add(registration);
add               102 Source/core/dom/NodeRareData.h         NodeListAtomicNameCacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, name), 0);
add               114 Source/core/dom/NodeRareData.h         NodeListAtomicNameCacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, starAtom), 0);
add               132 Source/core/dom/NodeRareData.h         TagCollectionCacheNS::AddResult result = m_tagCollectionCacheNS.add(name, 0);
add               168 Source/core/dom/PresentationAttributeStyle.cpp         cacheValue = presentationAttributeCache().add(cacheHash, nullptr).storedValue;
add                79 Source/core/dom/QualifiedName.cpp     QualifiedNameCache::AddResult addResult = qualifiedNameCache().add<QNameComponentsTranslator>(components);
add              1838 Source/core/dom/Range.cpp             nodeSet.add(node);
add               117 Source/core/dom/ScriptLoader.cpp         languages.add("javascript");
add               118 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.0");
add               119 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.1");
add               120 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.2");
add               121 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.3");
add               122 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.4");
add               123 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.5");
add               124 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.6");
add               125 Source/core/dom/ScriptLoader.cpp         languages.add("javascript1.7");
add               126 Source/core/dom/ScriptLoader.cpp         languages.add("livescript");
add               127 Source/core/dom/ScriptLoader.cpp         languages.add("ecmascript");
add               128 Source/core/dom/ScriptLoader.cpp         languages.add("jscript");
add                67 Source/core/dom/ScriptRunner.cpp         m_pendingAsyncScripts.add(scriptLoader, PendingScript(element, resource.get()));
add               172 Source/core/dom/ScriptedAnimationController.cpp     if (!m_perFrameEvents.add(eventTargetKey(event.get())).isNewEntry)
add               509 Source/core/dom/SelectorQuery.cpp     m_entries.add(selectors, selectorQuery.release());
add               102 Source/core/dom/SelectorQuery.h     SelectorQuery* add(const AtomicString&, const Document&, ExceptionState&);
add               126 Source/core/dom/SpaceSplitString.cpp         m_data->add(string);
add               178 Source/core/dom/SpaceSplitString.cpp     SpaceSplitStringData*& data = sharedDataMap().add(string, 0).storedValue->value;
add                49 Source/core/dom/SpaceSplitString.h         void add(const AtomicString&);
add                80 Source/core/dom/SpaceSplitString.h         void add(const AtomicString&);
add               118 Source/core/dom/StyleEngine.cpp         treeScopes.add(treeScope);
add               147 Source/core/dom/StyleEngine.cpp     WillBeHeapHashMap<TreeScope*, OwnPtrWillBeMember<ShadowTreeStyleSheetCollection> >::AddResult result = m_styleSheetCollectionMap.add(&treeScope, nullptr);
add               381 Source/core/dom/StyleEngine.cpp                 treeScopesRemoved.add(treeScope);
add               558 Source/core/dom/StyleEngine.cpp     m_dirtyTreeScopes.add(&scope);
add               592 Source/core/dom/StyleEngine.cpp         WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<StyleSheetContents> >::AddResult result = m_textToSheetCache.add(textContent, nullptr);
add               597 Source/core/dom/StyleEngine.cpp                 m_sheetToTextCache.add(styleSheet->contents(), textContent);
add                44 Source/core/dom/StyleSheetScopingNodeList.cpp     m_scopingNodes->add(node);
add                62 Source/core/dom/StyleSheetScopingNodeList.cpp     m_scopingNodesRemoved->add(node);
add                42 Source/core/dom/StyleSheetScopingNodeList.h     void add(ContainerNode*);
add               159 Source/core/dom/TreeScope.cpp     m_elementsById->add(elementId.impl(), element);
add               192 Source/core/dom/TreeScope.cpp     m_imageMapsByName->add(name, imageMap);
add               258 Source/core/dom/TreeScope.cpp     m_labelsByForAttribute->add(forAttributeValue.impl(), element);
add                60 Source/core/dom/TreeScopeStyleSheetCollection.cpp         m_styleSheetCandidateNodes.add(node);
add                67 Source/core/dom/TreeScopeStyleSheetCollection.cpp         m_scopingNodesForStyleScoped.add(scopingNode);
add               116 Source/core/dom/UserActionElementSet.cpp     m_elements.add(element, flags);
add               101 Source/core/dom/VisitedLinkState.cpp         m_linksCheckedForVisitedState.add(hash);
add                60 Source/core/dom/custom/CustomElementObserver.cpp     ElementObserverMap::AddResult result = elementObservers().add(element, this);
add               108 Source/core/dom/custom/CustomElementRegistrationContext.cpp         m_candidates.add(descriptor, element);
add               108 Source/core/dom/custom/CustomElementRegistry.cpp     m_definitions.add(descriptor, definition);
add               109 Source/core/dom/custom/CustomElementRegistry.cpp     m_registeredTypeNames.add(descriptor.type());
add               104 Source/core/dom/custom/CustomElementScheduler.cpp     ElementCallbackQueueMap::ValueType* it = m_elementCallbackQueueMap.add(element.get(), nullptr).storedValue;
add                49 Source/core/dom/custom/CustomElementUpgradeCandidateMap.cpp     UpgradeCandidateMap::AddResult result = m_upgradeCandidates.add(element, descriptor);
add                55 Source/core/dom/custom/CustomElementUpgradeCandidateMap.cpp         elements = &m_unresolvedDefinitions.add(descriptor, ElementSet()).storedValue->value;
add                58 Source/core/dom/custom/CustomElementUpgradeCandidateMap.cpp     elements->add(element);
add                55 Source/core/dom/custom/CustomElementUpgradeCandidateMap.h     void add(const CustomElementDescriptor&, Element*);
add               337 Source/core/dom/shadow/ElementShadow.cpp     NodeToDestinationInsertionPoints::AddResult result = m_nodeToInsertionPoints.add(node, DestinationInsertionPoints());
add               360 Source/core/dom/shadow/ElementShadow.cpp             m_selectFeatures.add(shadow->ensureSelectFeatureSet());
add                47 Source/core/dom/shadow/SelectRuleFeatureSet.cpp     m_cssRuleFeatureSet.add(featureSet.m_cssRuleFeatureSet);
add                46 Source/core/dom/shadow/SelectRuleFeatureSet.h     void add(const SelectRuleFeatureSet&);
add              1638 Source/core/editing/EditorCommand.cpp         idSet.add(command.command.idForUserMetrics);
add               127 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(addressTag);
add               128 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(articleTag);
add               129 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(asideTag);
add               130 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(blockquoteTag);
add               131 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(ddTag);
add               132 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(divTag);
add               133 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(dlTag);
add               134 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(dtTag);
add               135 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(footerTag);
add               136 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(h1Tag);
add               137 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(h2Tag);
add               138 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(h3Tag);
add               139 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(h4Tag);
add               140 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(h5Tag);
add               141 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(h6Tag);
add               142 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(headerTag);
add               143 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(hgroupTag);
add               144 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(mainTag);
add               145 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(navTag);
add               146 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(pTag);
add               147 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(preTag);
add               148 Source/core/editing/FormatBlockCommand.cpp         blockTags.add(sectionTag);
add                60 Source/core/editing/HTMLInterchange.cpp                 unsigned add = count % 3;
add                61 Source/core/editing/HTMLInterchange.cpp                 switch (add) {
add                66 Source/core/editing/HTMLInterchange.cpp                         add = 3;
add                89 Source/core/editing/HTMLInterchange.cpp                 count -= add;
add                52 Source/core/editing/RemoveFormatCommand.cpp         elements.add(acronymTag);
add                53 Source/core/editing/RemoveFormatCommand.cpp         elements.add(bTag);
add                54 Source/core/editing/RemoveFormatCommand.cpp         elements.add(bdoTag);
add                55 Source/core/editing/RemoveFormatCommand.cpp         elements.add(bigTag);
add                56 Source/core/editing/RemoveFormatCommand.cpp         elements.add(citeTag);
add                57 Source/core/editing/RemoveFormatCommand.cpp         elements.add(codeTag);
add                58 Source/core/editing/RemoveFormatCommand.cpp         elements.add(dfnTag);
add                59 Source/core/editing/RemoveFormatCommand.cpp         elements.add(emTag);
add                60 Source/core/editing/RemoveFormatCommand.cpp         elements.add(fontTag);
add                61 Source/core/editing/RemoveFormatCommand.cpp         elements.add(iTag);
add                62 Source/core/editing/RemoveFormatCommand.cpp         elements.add(insTag);
add                63 Source/core/editing/RemoveFormatCommand.cpp         elements.add(kbdTag);
add                64 Source/core/editing/RemoveFormatCommand.cpp         elements.add(nobrTag);
add                65 Source/core/editing/RemoveFormatCommand.cpp         elements.add(qTag);
add                66 Source/core/editing/RemoveFormatCommand.cpp         elements.add(sTag);
add                67 Source/core/editing/RemoveFormatCommand.cpp         elements.add(sampTag);
add                68 Source/core/editing/RemoveFormatCommand.cpp         elements.add(smallTag);
add                69 Source/core/editing/RemoveFormatCommand.cpp         elements.add(strikeTag);
add                70 Source/core/editing/RemoveFormatCommand.cpp         elements.add(strongTag);
add                71 Source/core/editing/RemoveFormatCommand.cpp         elements.add(subTag);
add                72 Source/core/editing/RemoveFormatCommand.cpp         elements.add(supTag);
add                73 Source/core/editing/RemoveFormatCommand.cpp         elements.add(ttTag);
add                74 Source/core/editing/RemoveFormatCommand.cpp         elements.add(uTag);
add                75 Source/core/editing/RemoveFormatCommand.cpp         elements.add(varTag);
add               560 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(addressTag.localName());
add               561 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(articleTag.localName());
add               562 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(asideTag.localName());
add               563 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(blockquoteTag.localName());
add               564 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(captionTag.localName());
add               565 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(centerTag.localName());
add               566 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(colTag.localName());
add               567 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(colgroupTag.localName());
add               568 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(ddTag.localName());
add               569 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(detailsTag.localName());
add               570 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(dirTag.localName());
add               571 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(divTag.localName());
add               572 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(dlTag.localName());
add               573 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(dtTag.localName());
add               574 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(fieldsetTag.localName());
add               575 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(figcaptionTag.localName());
add               576 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(figureTag.localName());
add               577 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(footerTag.localName());
add               578 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(formTag.localName());
add               579 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(h1Tag.localName());
add               580 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(h2Tag.localName());
add               581 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(h3Tag.localName());
add               582 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(h4Tag.localName());
add               583 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(h5Tag.localName());
add               584 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(h6Tag.localName());
add               585 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(headerTag.localName());
add               586 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(hgroupTag.localName());
add               587 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(hrTag.localName());
add               588 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(liTag.localName());
add               589 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(listingTag.localName());
add               590 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(mainTag.localName()); // Missing in the specification.
add               591 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(menuTag.localName());
add               592 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(navTag.localName());
add               593 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(olTag.localName());
add               594 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(pTag.localName());
add               595 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(plaintextTag.localName());
add               596 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(preTag.localName());
add               597 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(sectionTag.localName());
add               598 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(summaryTag.localName());
add               599 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(tableTag.localName());
add               600 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(tbodyTag.localName());
add               601 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(tdTag.localName());
add               602 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(tfootTag.localName());
add               603 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(thTag.localName());
add               604 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(theadTag.localName());
add               605 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(trTag.localName());
add               606 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(ulTag.localName());
add               607 Source/core/editing/ReplaceSelectionCommand.cpp         elements.add(xmpTag.localName());
add               706 Source/core/editing/SpellChecker.cpp         markerTypes.add(DocumentMarker::Grammar);
add                71 Source/core/events/DOMWindowEventQueue.cpp     bool wasAdded = m_queuedEvents.add(event).isNewEntry;
add               105 Source/core/events/DOMWindowEventQueue.cpp     bool wasAdded = m_queuedEvents.add(nullptr).isNewEntry;
add                83 Source/core/events/EventDispatcher.cpp     gNodesDispatchingSimulatedClicks->add(node);
add                56 Source/core/events/EventListenerMap.h     bool add(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture);
add               174 Source/core/events/EventPath.cpp         treeScopeEventContextMap.add(&m_treeScopeEventContexts[i]->treeScope(), m_treeScopeEventContexts[i].get());
add               197 Source/core/events/EventPath.cpp     TreeScopeEventContextMap::AddResult addResult = treeScopeEventContextMap.add(treeScope, TreeScopeEventContext::create(*treeScope));
add               227 Source/core/events/EventPath.cpp                 TreeScopeEventContextMap::AddResult addResult = treeScopeEventContextMap.add(&currentTreeScope, TreeScopeEventContext::create(currentTreeScope));
add               247 Source/core/events/EventPath.cpp         relatedTargetMap.add(&treeScopeEventContext->treeScope(), treeScopeEventContext->target());
add               266 Source/core/events/EventPath.cpp         relatedTargetMap.add(*iter, relatedNode);
add                89 Source/core/events/EventTarget.cpp     if (ensureEventTargetData().eventListenerMap.add(eventType, listener, useCapture)) {
add                74 Source/core/fetch/CachingCorrectnessTest.cpp         memoryCache()->add(resource.get());
add               335 Source/core/fetch/CachingCorrectnessTest.cpp     memoryCache()->add(firstResource.get());
add               369 Source/core/fetch/CachingCorrectnessTest.cpp     memoryCache()->add(firstResource.get());
add                86 Source/core/fetch/CrossOriginAccessControl.cpp     headerSet->add("cache-control");
add                87 Source/core/fetch/CrossOriginAccessControl.cpp     headerSet->add("content-language");
add                88 Source/core/fetch/CrossOriginAccessControl.cpp     headerSet->add("content-type");
add                89 Source/core/fetch/CrossOriginAccessControl.cpp     headerSet->add("expires");
add                90 Source/core/fetch/CrossOriginAccessControl.cpp     headerSet->add("last-modified");
add                91 Source/core/fetch/CrossOriginAccessControl.cpp     headerSet->add("pragma");
add               208 Source/core/fetch/CrossOriginAccessControl.cpp             headerSet.add(strippedHeader);
add               116 Source/core/fetch/ImageResourceTest.cpp     memoryCache()->add(cachedImage.get());
add               123 Source/core/fetch/MemoryCache.cpp     add(newResource);
add               137 Source/core/fetch/MemoryCache.h     void add(Resource*);
add               131 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(cachedResource.get());
add               167 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(cachedResource.get());
add               212 Source/core/fetch/MemoryCacheTest.cpp             memoryCache()->add(m_dead.get());
add               213 Source/core/fetch/MemoryCacheTest.cpp             memoryCache()->add(m_live.get());
add               273 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(resource1.get());
add               274 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(resource2.get());
add               339 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(cachedImageHighPriority.get());
add               343 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(cachedImageLowPriority.get());
add               373 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(resource1.get());
add               389 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(resource1.get());
add               393 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(resource2.get());
add               399 Source/core/fetch/MemoryCacheTest.cpp     memoryCache()->add(resource3.get());
add               134 Source/core/fetch/RawResource.cpp         m_headers.add("Cache-Control");
add               135 Source/core/fetch/RawResource.cpp         m_headers.add("If-Modified-Since");
add               136 Source/core/fetch/RawResource.cpp         m_headers.add("If-None-Match");
add               137 Source/core/fetch/RawResource.cpp         m_headers.add("Origin");
add               138 Source/core/fetch/RawResource.cpp         m_headers.add("Pragma");
add               139 Source/core/fetch/RawResource.cpp         m_headers.add("Purpose");
add               140 Source/core/fetch/RawResource.cpp         m_headers.add("Referer");
add               141 Source/core/fetch/RawResource.cpp         m_headers.add("User-Agent");
add                73 Source/core/fetch/RawResourceTest.cpp     memoryCache()->add(oldResource.get());
add                75 Source/core/fetch/RawResourceTest.cpp     memoryCache()->add(newResource.get());
add               476 Source/core/fetch/Resource.cpp         m_clientsAwaitingCallback.add(client);
add               481 Source/core/fetch/Resource.cpp     m_clients.add(client);
add               606 Source/core/fetch/Resource.cpp         m_clients.add(client);
add               761 Source/core/fetch/Resource.cpp         m_handlesToRevalidate.add(h);
add               860 Source/core/fetch/Resource.cpp     m_resourcesWithPendingClients.add(resource);
add               303 Source/core/fetch/ResourceFetcher.cpp         memoryCache()->add(resource);
add               392 Source/core/fetch/ResourceFetcher.cpp     memoryCache()->add(resource.get());
add               699 Source/core/fetch/ResourceFetcher.cpp             m_scheduledResourceTimingReports.add(info, resource->type() == Resource::MainResource);
add               704 Source/core/fetch/ResourceFetcher.cpp         m_validatedURLs.add(request.resourceRequest().url());
add               806 Source/core/fetch/ResourceFetcher.cpp     memoryCache()->add(newResource.get());
add               821 Source/core/fetch/ResourceFetcher.cpp     memoryCache()->add(resource.get());
add               838 Source/core/fetch/ResourceFetcher.cpp             m_resourceTimingInfoMap.add(resource.get(), info);
add               842 Source/core/fetch/ResourceFetcher.cpp         m_resourceTimingInfoMap.add(resource.get(), info);
add              1138 Source/core/fetch/ResourceFetcher.cpp     m_preloads->add(resource.get());
add              1221 Source/core/fetch/ResourceFetcher.cpp         m_multipartLoaders->add(loader);
add              1235 Source/core/fetch/ResourceFetcher.cpp     m_loaders->add(loader);
add                66 Source/core/fetch/ResourceLoadPriorityOptimizer.cpp     m_objects.add(renderer);
add               119 Source/core/fetch/ResourceLoadPriorityOptimizer.cpp     ImageResourceMap::AddResult result = m_imageResources.add(img->identifier(), adoptPtr(new ResourceAndVisibility(img, status, screenArea)));
add                43 Source/core/fetch/ResourceLoaderSet.h     void add(const RefPtr<ResourceLoader>& loader) { m_set.add(loader); }
add                87 Source/core/fileapi/FileReader.cpp             m_runningReaders.add(reader);
add               126 Source/core/fileapi/FileReader.cpp             m_runningReaders.add(reader);
add               182 Source/core/frame/DOMWindow.cpp     set.add(domWindow);
add               212 Source/core/frame/DOMWindow.cpp     set.add(domWindow);
add               573 Source/core/frame/DOMWindow.cpp     m_properties.add(property);
add                41 Source/core/frame/DOMWindowLifecycleNotifier.cpp         m_windowObservers.add(static_cast<DOMWindowLifecycleObserver*>(observer));
add               108 Source/core/frame/Frame.cpp     m_destructionObservers.add(observer);
add              1169 Source/core/frame/FrameView.cpp     m_widgets.add(object);
add              1200 Source/core/frame/FrameView.cpp     m_widgetUpdateSet.add(&object);
add              1320 Source/core/frame/FrameView.cpp         m_viewportConstrainedObjects->add(object);
add              3154 Source/core/frame/FrameView.cpp     m_resizerAreas->add(resizerBox);
add              3172 Source/core/frame/FrameView.cpp     return m_scrollableAreas->add(scrollableArea).isNewEntry;
add               134 Source/core/frame/ImageBitmapTest.cpp     memoryCache()->add(cachedImageNoCrop.get());
add               135 Source/core/frame/ImageBitmapTest.cpp     memoryCache()->add(cachedImageInteriorCrop.get());
add               136 Source/core/frame/ImageBitmapTest.cpp     memoryCache()->add(cachedImageExteriorCrop.get());
add               137 Source/core/frame/ImageBitmapTest.cpp     memoryCache()->add(cachedImageOutsideCrop.get());
add               504 Source/core/frame/csp/CSPSourceList.cpp     m_nonces.add(nonce);
add               509 Source/core/frame/csp/CSPSourceList.cpp     m_hashes.add(CSPHashValue(algorithm, hash));
add               797 Source/core/frame/csp/ContentSecurityPolicy.cpp     m_violationReportsSent.add(report.impl()->hash());
add                80 Source/core/frame/csp/MediaListDirective.cpp         m_pluginTypes.add(String(begin, position - begin));
add               130 Source/core/html/HTMLCanvasElement.cpp     m_observers.add(observer);
add               420 Source/core/html/HTMLCollection.cpp             HashSet<AtomicString>::AddResult addResult = existingNames.add(idAttribute);
add               428 Source/core/html/HTMLCollection.cpp             HashSet<AtomicString>::AddResult addResult = existingNames.add(nameAttribute);
add                79 Source/core/html/HTMLCollection.h             OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).storedValue->value;
add               202 Source/core/html/HTMLDocument.cpp     map.add(name);
add               238 Source/core/html/HTMLDocument.cpp     set->add(qName.localName().impl());
add               169 Source/core/html/HTMLFormControlsCollection.cpp                 foundInputElements.add(idAttrVal.impl());
add               173 Source/core/html/HTMLFormControlsCollection.cpp                 foundInputElements.add(nameAttrVal.impl());
add               224 Source/core/html/HTMLFormControlsCollection.cpp             HashSet<AtomicString>::AddResult addResult = existingNames.add(idAttribute);
add               230 Source/core/html/HTMLFormControlsCollection.cpp             HashSet<AtomicString>::AddResult addResult = existingNames.add(nameAttribute);
add               100 Source/core/html/HTMLFrameOwnerElement.h         disabledSubtreeRoots().add(&m_root);
add               136 Source/core/html/HTMLMediaElement.cpp     set.add(element);
add               137 Source/core/html/HTMLMediaElement.cpp     map.add(document, set);
add               146 Source/core/html/HTMLMediaElement.cpp         map.add(document, set);
add              1272 Source/core/html/HTMLMediaElement.cpp         m_cueTree.add(interval);
add              1671 Source/core/html/HTMLMediaElement.cpp     m_playedTimeRanges->add(start, end);
add               154 Source/core/html/HTMLObjectElement.cpp         uniqueParamNames.add(name.impl());
add               178 Source/core/html/HTMLObjectElement.cpp         uniqueParamNames.add(codebase.impl()); // pretend we found it in a PARAM already
add                54 Source/core/html/HTMLOptionsCollection.cpp             HashSet<AtomicString>::AddResult addResult = existingNames.add(idAttribute);
add                60 Source/core/html/HTMLOptionsCollection.cpp             HashSet<AtomicString>::AddResult addResult = existingNames.add(nameAttribute);
add                74 Source/core/html/HTMLOptionsCollection.cpp     add(element, length(), exceptionState);
add                94 Source/core/html/HTMLOptionsCollection.cpp         select.add(newOption, 0, exceptionState);
add                39 Source/core/html/HTMLOptionsCollection.h     void add(PassRefPtr<HTMLOptionElement>, ExceptionState&);
add                40 Source/core/html/HTMLOptionsCollection.h     void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionState&);
add               217 Source/core/html/HTMLSelectElement.cpp     add(element, beforeElement, exceptionState);
add               463 Source/core/html/HTMLSelectElement.cpp         add(option, before.get(), exceptionState);
add               479 Source/core/html/HTMLSelectElement.cpp             add(toHTMLElement(option), 0, exceptionState);
add                65 Source/core/html/HTMLSelectElement.h     void add(HTMLElement*, HTMLElement* beforeElement, ExceptionState&);
add                56 Source/core/html/PublicURLManager.cpp     RegistryURLMap::ValueType* found = m_registryToURL.add(&registrable->registry(), URLMap()).storedValue;
add                58 Source/core/html/PublicURLManager.cpp     found->value.add(url.string(), uuid);
add                41 Source/core/html/TimeRanges.cpp     add(start, end);
add                50 Source/core/html/TimeRanges.cpp         ranges->add(webRanges[i].start, webRanges[i].end);
add                61 Source/core/html/TimeRanges.cpp         newSession->add(m_ranges[i].m_start, m_ranges[i].m_end);
add                73 Source/core/html/TimeRanges.cpp         inverted->add(negInf, posInf);
add                77 Source/core/html/TimeRanges.cpp             inverted->add(negInf, start);
add                80 Source/core/html/TimeRanges.cpp             inverted->add(m_ranges[index].m_end, m_ranges[index + 1].m_start);
add                84 Source/core/html/TimeRanges.cpp             inverted->add(end, posInf);
add               111 Source/core/html/TimeRanges.cpp         unioned->add(range.m_start, range.m_end);
add                61 Source/core/html/TimeRanges.h     void add(double start, double end);
add                79 Source/core/html/TimeRangesTest.cpp     rangeA->add(0, 2);
add                80 Source/core/html/TimeRangesTest.cpp     rangeA->add(3, 4);
add                81 Source/core/html/TimeRangesTest.cpp     rangeA->add(5, 100);
add                88 Source/core/html/TimeRangesTest.cpp         rangeB->add(rangeA->start(i, IGNORE_EXCEPTION), rangeA->end(i, IGNORE_EXCEPTION));
add                97 Source/core/html/TimeRangesTest.cpp     ranges->add(0, 2);
add                98 Source/core/html/TimeRangesTest.cpp     ranges->add(10, 11);
add               101 Source/core/html/TimeRangesTest.cpp     ranges->add(0, 2);
add               104 Source/core/html/TimeRangesTest.cpp     ranges->add(2, 3);
add               107 Source/core/html/TimeRangesTest.cpp     ranges->add(2, 6);
add               110 Source/core/html/TimeRangesTest.cpp     ranges->add(9, 10);
add               113 Source/core/html/TimeRangesTest.cpp     ranges->add(8, 10);
add               116 Source/core/html/TimeRangesTest.cpp     ranges->add(-1, 7);
add               119 Source/core/html/TimeRangesTest.cpp     ranges->add(6, 9);
add               167 Source/core/html/TimeRangesTest.cpp     rangesA->add(0, 1);
add               168 Source/core/html/TimeRangesTest.cpp     rangesA->add(4, 5);
add               170 Source/core/html/TimeRangesTest.cpp     rangesB->add(2, 3);
add               171 Source/core/html/TimeRangesTest.cpp     rangesB->add(6, 7);
add               187 Source/core/html/TimeRangesTest.cpp     rangesA->add(0, 1);
add               188 Source/core/html/TimeRangesTest.cpp     rangesA->add(4, 5);
add               190 Source/core/html/TimeRangesTest.cpp     rangesB->add(1, 4);
add               191 Source/core/html/TimeRangesTest.cpp     rangesB->add(5, 7);
add               207 Source/core/html/TimeRangesTest.cpp     rangesA->add(1, 3);
add               208 Source/core/html/TimeRangesTest.cpp     rangesA->add(4, 5);
add               209 Source/core/html/TimeRangesTest.cpp     rangesA->add(6, 9);
add               211 Source/core/html/TimeRangesTest.cpp     rangesB->add(0, 10);
add               227 Source/core/html/TimeRangesTest.cpp     rangesA->add(1, 3);
add               228 Source/core/html/TimeRangesTest.cpp     rangesA->add(4, 5);
add               229 Source/core/html/TimeRangesTest.cpp     rangesA->add(6, 9);
add               231 Source/core/html/TimeRangesTest.cpp     rangesB->add(1, 9);
add               247 Source/core/html/TimeRangesTest.cpp     rangesA->add(0, 2);
add               248 Source/core/html/TimeRangesTest.cpp     rangesA->add(4, 6);
add               250 Source/core/html/TimeRangesTest.cpp     rangesB->add(1, 5);
add               266 Source/core/html/TimeRangesTest.cpp     rangesA->add(0, 2);
add               267 Source/core/html/TimeRangesTest.cpp     rangesA->add(4, 6);
add               268 Source/core/html/TimeRangesTest.cpp     rangesA->add(8, 10);
add               270 Source/core/html/TimeRangesTest.cpp     rangesB->add(1, 9);
add               286 Source/core/html/TimeRangesTest.cpp     rangesA->add(0, 2);
add               287 Source/core/html/TimeRangesTest.cpp     rangesA->add(4, 7);
add               288 Source/core/html/TimeRangesTest.cpp     rangesA->add(8, 10);
add               290 Source/core/html/TimeRangesTest.cpp     rangesB->add(1, 5);
add               291 Source/core/html/TimeRangesTest.cpp     rangesB->add(6, 9);
add              2017 Source/core/html/canvas/CanvasRenderingContext2D.cpp         m_fetchedFonts.add(newFont, parsedStyle);
add                58 Source/core/html/canvas/WebGLContextGroup.cpp     m_contexts.add(context);
add                77 Source/core/html/canvas/WebGLContextGroup.cpp     m_groupObjects.add(object);
add               281 Source/core/html/canvas/WebGLFramebuffer.cpp         m_attachments.add(attachment, WebGLTextureAttachment::create(texture, texTarget, level));
add               294 Source/core/html/canvas/WebGLFramebuffer.cpp         m_attachments.add(attachment, WebGLRenderbufferAttachment::create(renderbuffer));
add              4233 Source/core/html/canvas/WebGLRenderingContextBase.cpp     m_contextObjects.add(object);
add               358 Source/core/html/forms/FormController.cpp     FormSignatureToNextIndexMap::AddResult result = m_formSignatureToNextIndexMap.add(signature, 0);
add               365 Source/core/html/forms/FormController.cpp     FormToKeyMap::AddResult addFormKeyresult = m_formToKeyMap.add(form, formKeyBuilder.toAtomicString());
add               403 Source/core/html/forms/FormController.cpp         SavedFormStateMap::AddResult result = stateMap->add(keyGenerator->formKey(*control), nullptr);
add               462 Source/core/html/forms/FormController.cpp         map.add(formKey, state.release());
add               518 Source/core/html/forms/FormController.cpp     m_formControls.add(&control);
add                84 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::button, ButtonInputType::create);
add                85 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::checkbox, CheckboxInputType::create);
add                86 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::color, ColorInputType::create);
add                87 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::date, DateInputType::create);
add                88 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::datetime_local, DateTimeLocalInputType::create);
add                89 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::email, EmailInputType::create);
add                90 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::file, FileInputType::create);
add                91 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::hidden, HiddenInputType::create);
add                92 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::image, ImageInputType::create);
add                93 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::month, MonthInputType::create);
add                94 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::number, NumberInputType::create);
add                95 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::password, PasswordInputType::create);
add                96 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::radio, RadioInputType::create);
add                97 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::range, RangeInputType::create);
add                98 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::reset, ResetInputType::create);
add                99 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::search, SearchInputType::create);
add               100 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::submit, SubmitInputType::create);
add               101 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::tel, TelephoneInputType::create);
add               102 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::time, TimeInputType::create);
add               103 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::url, URLInputType::create);
add               104 Source/core/html/forms/InputType.cpp     map->add(InputTypeNames::week, WeekInputType::create);
add                36 Source/core/html/forms/RadioButtonGroupScope.cpp     void add(HTMLInputElement*);
add                82 Source/core/html/forms/RadioButtonGroupScope.cpp     if (!m_members.add(button).isNewEntry)
add               196 Source/core/html/forms/RadioButtonGroupScope.cpp     OwnPtr<RadioButtonGroup>& group = m_nameToGroupMap->add(element->name(), PassOwnPtr<RadioButtonGroup>()).storedValue->value;
add               199 Source/core/html/forms/RadioButtonGroupScope.cpp     group->add(element);
add                87 Source/core/html/imports/HTMLImport.cpp         snapshot.add(i, i->state());
add               506 Source/core/html/parser/HTMLTreeBuilder.cpp             map->add(loweredLocalName, name);
add               560 Source/core/html/parser/HTMLTreeBuilder.cpp         map->add(prefixColonLocalName, nameWithPrefix);
add               576 Source/core/html/parser/HTMLTreeBuilder.cpp         map->add(WTF::xmlnsAtom, XMLNSNames::xmlnsAttr);
add               577 Source/core/html/parser/HTMLTreeBuilder.cpp         map->add("xmlns:xlink", QualifiedName(xmlnsAtom, xlinkAtom, XMLNSNames::xmlnsNamespaceURI));
add               122 Source/core/html/track/LoadableTextTrack.cpp         m_cues->add(newCues[i]);
add               148 Source/core/html/track/LoadableTextTrack.cpp         regions()->add(newRegions[i]);
add               250 Source/core/html/track/TextTrack.cpp     ensureTextTrackCueList()->add(cue);
add               331 Source/core/html/track/TextTrack.cpp     regionList->add(region);
add                72 Source/core/html/track/TextTrackCueList.cpp             m_activeCues->add(cue);
add                82 Source/core/html/track/TextTrackCueList.cpp     return add(cue, 0, m_list.size());
add               104 Source/core/html/track/TextTrackCueList.cpp         return add(cue.release(), start, index);
add               106 Source/core/html/track/TextTrackCueList.cpp     return add(cue.release(), index + 1, end);
add               131 Source/core/html/track/TextTrackCueList.cpp     return add(cue);
add                53 Source/core/html/track/TextTrackCueList.h     bool add(PassRefPtr<TextTrackCue>);
add                61 Source/core/html/track/TextTrackCueList.h     bool add(PassRefPtr<TextTrackCue>, size_t, size_t);
add               373 Source/core/html/track/vtt/VTTRegion.cpp         m_cueContainer->classList().add(textTrackCueContainerScrollingClass(), ASSERT_NO_EXCEPTION);
add                50 Source/core/html/track/vtt/VTTRegionList.h     void add(PassRefPtr<VTTRegion>);
add               191 Source/core/inspector/AsyncCallStackTracker.cpp         data->m_intervalTimerIds.add(timerId);
add               252 Source/core/inspector/DOMPatchSupport.cpp         newTable.add(newList[i]->m_sha1, Vector<size_t>()).storedValue->value.append(i);
add               256 Source/core/inspector/DOMPatchSupport.cpp         oldTable.add(oldList[i]->m_sha1, Vector<size_t>()).storedValue->value.append(i);
add               315 Source/core/inspector/DOMPatchSupport.cpp             if (usedNewOrdinals.add(oldMap[i].second).isNewEntry)
add               360 Source/core/inspector/DOMPatchSupport.cpp         usedOldOrdinals.add(oldOrdinal);
add               451 Source/core/inspector/DOMPatchSupport.cpp         unusedNodesMap->add(digest->m_sha1, digest);
add               483 Source/core/inspector/InspectorCSSAgent.cpp         urlsToFetch.add(styleSheet->finalURL());
add               566 Source/core/inspector/InspectorCSSAgent.cpp     m_invalidatedDocuments.add(document);
add               597 Source/core/inspector/InspectorCSSAgent.cpp                 addedSheets.add(cssStyleSheet);
add               599 Source/core/inspector/InspectorCSSAgent.cpp             addedSheets.add(cssStyleSheet);
add               621 Source/core/inspector/InspectorCSSAgent.cpp             documentCSSStyleSheets->add(cssStyleSheet);
add               769 Source/core/inspector/InspectorCSSAgent.cpp             fontStats->add(familyName);
add              1169 Source/core/inspector/InspectorCSSAgent.cpp             m_documentToViaInspectorStyleSheet.add(document, inspectorStyleSheet);
add              1402 Source/core/inspector/InspectorCSSAgent.cpp             documentsToChange.add(element->ownerDocument());
add               204 Source/core/inspector/InspectorConsoleAgent.cpp     m_times.add(title, monotonicallyIncreasingTime());
add               247 Source/core/inspector/InspectorConsoleAgent.cpp     HashCountedSet<String>::AddResult result = m_counts.add(identifier);
add               203 Source/core/inspector/InspectorDOMAgent.cpp     m_elements.add(element);
add               990 Source/core/inspector/InspectorDOMAgent.cpp                     resultCollector.add(node);
add               998 Source/core/inspector/InspectorDOMAgent.cpp                     resultCollector.add(node);
add              1011 Source/core/inspector/InspectorDOMAgent.cpp                         resultCollector.add(node);
add              1017 Source/core/inspector/InspectorDOMAgent.cpp                             resultCollector.add(node);
add              1046 Source/core/inspector/InspectorDOMAgent.cpp                 resultCollector.add(node);
add              1060 Source/core/inspector/InspectorDOMAgent.cpp                 resultCollector.add(nodeList->item(i));
add              1065 Source/core/inspector/InspectorDOMAgent.cpp     Vector<RefPtr<Node> >* resultsIt = &m_searchResults.add(*searchId, Vector<RefPtr<Node> >()).storedValue->value;
add              1637 Source/core/inspector/InspectorDOMAgent.cpp             m_childrenRequested.add(bind(container, nodesMap));
add              1644 Source/core/inspector/InspectorDOMAgent.cpp     m_childrenRequested.add(bind(container, nodesMap));
add               174 Source/core/inspector/InspectorInstrumentation.cpp     instrumentingAgentsSet->add(instrumentingAgents);
add               335 Source/core/inspector/InspectorLayerTreeAgent.cpp     bool newEntry = m_snapshotById.add(*snapshotId, LayerSnapshot(layer->platformLayer()->id(), snapshot)).isNewEntry;
add               528 Source/core/inspector/InspectorOverlay.cpp                 if (!usedClassNames.add(className).isNewEntry)
add               603 Source/core/inspector/InspectorPageAgent.cpp                     rawCookiesList.add(docCookiesList[i]);
add               132 Source/core/inspector/InspectorState.cpp     m_inspectorStateMap.add(agentName, statePtr.release());
add               650 Source/core/inspector/InspectorStyleSheet.cpp             sourcePropertyNames.add(it->name.lower());
add               656 Source/core/inspector/InspectorStyleSheet.cpp         if (!sourcePropertyNames.add(name.lower()).isNewEntry)
add               713 Source/core/inspector/InspectorStyleSheet.cpp                 if (foundShorthands.add(shorthand).isNewEntry) {
add              1249 Source/core/inspector/InspectorTimelineAgent.cpp     return m_threadStates.add(thread, TimelineThreadState(this)).storedValue->value;
add              1324 Source/core/inspector/InspectorTimelineAgent.cpp         m_liveEvents.add(*it);
add               111 Source/core/inspector/TraceEventDispatcher.cpp         m_handlers.add(std::make_pair(name, phase), Vector<BoundTraceEventHandler>()).storedValue->value.append(BoundTraceEventHandler(instance, method));
add               133 Source/core/inspector/TraceEventDispatcher.cpp                 remainingHandlers.add(it->key, it->value);
add                69 Source/core/loader/CrossOriginPreflightResultCache.cpp     set.add(string.substring(start, end - start + 1));
add               366 Source/core/loader/ImageLoader.cpp     m_clients.add(client);
add                61 Source/core/loader/PrerenderHandle.cpp     prerender->add();
add              3762 Source/core/page/EventHandler.cpp             changedTouches[pointState].m_targets.add(touchTarget);
add                76 Source/core/page/HistoryController.cpp         m_entry->m_framesToItems.add(frameID, this);
add                80 Source/core/page/HistoryController.cpp     m_entry->m_uniqueNamesToItems.add(target, this);
add                63 Source/core/page/InjectedStyleSheets.h     void add(const String& source, const Vector<String>& whitelist, StyleInjectionTarget);
add               144 Source/core/page/Page.cpp     allPages().add(this);
add               177 Source/core/page/Page.cpp     ordinaryPages().add(this);
add               452 Source/core/page/Page.cpp     m_multisamplingChangedObservers.add(observer);
add                41 Source/core/page/PageLifecycleNotifier.cpp         m_pageObservers.add(static_cast<PageLifecycleObserver*>(observer));
add               215 Source/core/page/PageSerializer.cpp     m_resourceURLs.add(url);
add               292 Source/core/page/PageSerializer.cpp         m_resourceURLs.add(url);
add               310 Source/core/page/PageSerializer.cpp     m_resourceURLs.add(url);
add               384 Source/core/page/PageSerializer.cpp     m_blankFrameURLs.add(frame, fakeURL);
add               258 Source/core/page/TouchAdjustment.cpp                     HashSet<Node*>::AddResult addResult = ancestorsToRespondersSet.add(visitedNode);
add               267 Source/core/page/TouchAdjustment.cpp             responderMap.add(visitedNodes[j], respondingNode);
add               296 Source/core/page/TouchAdjustment.cpp                 editableAncestors.add(replacement);
add               118 Source/core/page/TouchDisambiguation.cpp             if (!blackList.add(containerNode).isNewEntry)
add               132 Source/core/page/TouchDisambiguation.cpp                 TouchTargetData& targetData = touchTargets.add(node, TouchTargetData()).storedValue->value;
add               284 Source/core/page/scrolling/ScrollingCoordinator.cpp     return scrollbars.add(scrollableArea, scrollbarLayer).storedValue->value.get();
add               403 Source/core/page/scrolling/ScrollingCoordinator.cpp             map->add(containingLayer, Vector<const LocalFrame*>()).storedValue->value.append(child);
add               441 Source/core/page/scrolling/ScrollingCoordinator.cpp             compIterValue = &compositorRects.add(compositedLayer, Vector<LayoutRect>()).storedValue->value;
add               499 Source/core/page/scrolling/ScrollingCoordinator.cpp             if (!layersWithRects.add(layer).isNewEntry)
add               574 Source/core/page/scrolling/ScrollingCoordinator.cpp         m_layersWithTouchRects.add(layer);
add               308 Source/core/rendering/FastTextAutosizer.cpp         m_blocksThatHaveBegunLayout.add(block);
add               319 Source/core/rendering/FastTextAutosizer.cpp     m_blocksThatHaveBegunLayout.add(block);
add               350 Source/core/rendering/FastTextAutosizer.cpp     m_blocksThatHaveBegunLayout.add(listItem);
add               614 Source/core/rendering/FastTextAutosizer.cpp         m_fingerprintMapper.add(renderer, result);
add               684 Source/core/rendering/FastTextAutosizer.cpp     SuperclusterMap::AddResult addResult = m_superclusters.add(fingerprint, PassOwnPtr<Supercluster>());
add               700 Source/core/rendering/FastTextAutosizer.cpp             ancestors.add(block);
add               782 Source/core/rendering/FastTextAutosizer.cpp                 widthProviders.add(clusterWidthProvider(*it));
add               995 Source/core/rendering/FastTextAutosizer.cpp     add(block, fingerprint);
add               997 Source/core/rendering/FastTextAutosizer.cpp     ReverseFingerprintMap::AddResult addResult = m_blocksForFingerprint.add(fingerprint, PassOwnPtr<BlockSet>());
add              1000 Source/core/rendering/FastTextAutosizer.cpp     addResult.storedValue->value->add(block);
add               179 Source/core/rendering/FastTextAutosizer.h         void add(const RenderObject*, Fingerprint);
add               280 Source/core/rendering/FloatingObjects.cpp         map.add((*it)->renderer(), *it);
add               317 Source/core/rendering/FloatingObjects.cpp         m_placedFloatsTree.add(intervalForFloatingObject(floatingObject));
add               345 Source/core/rendering/FloatingObjects.cpp     m_set.add(newObject);
add               375 Source/core/rendering/FloatingObjects.cpp             m_placedFloatsTree.add(intervalForFloatingObject(floatingObject));
add               138 Source/core/rendering/FloatingObjects.h     FloatingObject* add(PassOwnPtr<FloatingObject>);
add               412 Source/core/rendering/HitTestResult.cpp     mutableRectBasedTestResult().add(node);
add               432 Source/core/rendering/HitTestResult.cpp     mutableRectBasedTestResult().add(node);
add               459 Source/core/rendering/HitTestResult.cpp             set.add(it->get());
add              1129 Source/core/rendering/InlineFlowBox.cpp                     paintInfo.outlineObjects()->add(&inlineFlow);
add               102 Source/core/rendering/InlineTextBox.cpp     gTextBoxesWithOverflow->add(this, rect);
add              1275 Source/core/rendering/RenderBlock.cpp             gDelayedUpdateScrollInfoSet->add(this);
add              1502 Source/core/rendering/RenderBlock.cpp                     lineBoxes.add(&box);
add              2132 Source/core/rendering/RenderBlock.cpp     continuations->add(flow);
add              2511 Source/core/rendering/RenderBlock.cpp     bool added = descendantSet->add(descendant).isNewEntry;
add              2524 Source/core/rendering/RenderBlock.cpp     containerSet->add(this);
add              3224 Source/core/rendering/RenderBlock.cpp             gColumnInfoMap->add(this, adoptPtr(info));
add               761 Source/core/rendering/RenderBlockFlow.cpp                 oldIntrudingFloatSet.add(floatingObject->renderer());
add              1926 Source/core/rendering/RenderBlockFlow.cpp             toBlockFlow->m_floatingObjects->add(floatingObject->unsafeClone());
add              2228 Source/core/rendering/RenderBlockFlow.cpp     return m_floatingObjects->add(newObj.release());
add              2440 Source/core/rendering/RenderBlockFlow.cpp                 m_floatingObjects->add(floatingObject->copyToNewContainer(offset));
add              2483 Source/core/rendering/RenderBlockFlow.cpp                 m_floatingObjects->add(floatingObject->copyToNewContainer(offset, shouldPaint, true));
add               479 Source/core/rendering/RenderBlockLineLayout.cpp                     fallbackFonts.add(*it);
add               495 Source/core/rendering/RenderBlockLineLayout.cpp         GlyphOverflowAndFallbackFontsMap::ValueType* it = textBoxDataMap.add(toInlineTextBox(run->m_box), make_pair(Vector<const SimpleFontData*>(), GlyphOverflow())).storedValue;
add               502 Source/core/rendering/RenderBlockLineLayout.cpp         GlyphOverflowAndFallbackFontsMap::ValueType* it = textBoxDataMap.add(toInlineTextBox(run->m_box), make_pair(Vector<const SimpleFontData*>(), GlyphOverflow())).storedValue;
add               100 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp                 m_ordinalValues.add(m_currentChild->style()->boxOrdinalGroup());
add                78 Source/core/rendering/RenderFlowThread.cpp     m_regionList.add(renderRegion);
add               500 Source/core/rendering/RenderFlowThread.cpp         m_regionIntervalTree.add(RegionIntervalTree::createInterval(logicalHeight, logicalHeight + regionLogicalHeight, region));
add               578 Source/core/rendering/RenderFlowThread.cpp     m_statePusherObjectsStack.add(&object);
add               439 Source/core/rendering/RenderLayer.cpp         containingBlocks.add(containingBlock);
add              4070 Source/core/rendering/RenderLayer.cpp                     rects.add(parentLayer, Vector<LayoutRect>()).storedValue->value.append(physicalBoundingBox(parentLayer));
add              2441 Source/core/rendering/RenderObject.cpp         iterValue = &layerRects.add(currentLayer, Vector<LayoutRect>()).storedValue->value;
add               684 Source/core/rendering/RenderTableSection.cpp                         uniqueCells.add(cell);
add              1066 Source/core/rendering/RenderTableSection.cpp                 m_overflowingCells.add(cell);
add              1461 Source/core/rendering/RenderTableSection.cpp                             if (!spanningCells.add(current.cells[i]).isNewEntry)
add              1883 Source/core/rendering/RenderText.cpp         gSecureTextTimers->add(this, secureTextTimer);
add               214 Source/core/rendering/RenderTextControl.cpp             fontFamiliesWithInvalidCharWidthMap->add(AtomicString(fontFamiliesWithInvalidCharWidth[i]));
add               526 Source/core/rendering/RenderView.cpp                 OwnPtr<RenderSelectionInfo>& blockInfo = selectedObjects.add(cb, nullptr).storedValue->value;
add               568 Source/core/rendering/RenderView.cpp             if (!processedBlocks.add(block).isNewEntry)
add               641 Source/core/rendering/RenderView.cpp                     OwnPtr<RenderBlockSelectionInfo>& blockInfo = oldSelectedBlocks.add(cb, nullptr).storedValue->value;
add               696 Source/core/rendering/RenderView.cpp                 OwnPtr<RenderBlockSelectionInfo>& blockInfo = newSelectedBlocks.add(cb, nullptr).storedValue->value;
add               136 Source/core/rendering/RootInlineBox.cpp     gEllipsisBoxMap->add(this, ellipsisBox);
add                70 Source/core/rendering/SubtreeLayoutScope.cpp     m_renderersToLayout.add(renderer);
add               169 Source/core/rendering/TextAutosizer.cpp         m_hashCache.add(renderer, combinedHashValue);
add               298 Source/core/rendering/TextAutosizer.cpp         m_nonAutosizedClusters.add(key, adoptPtr(new Vector<TextAutosizingClusterInfo>(1, value)));
add               326 Source/core/rendering/TextAutosizer.cpp             m_hashToMultiplier.add(clusterHash, multiplier);
add               130 Source/core/rendering/compositing/RenderLayerCompositor.cpp         m_overlapStack[m_overlapStack.size() - 2].add(bounds);
add               592 Source/core/rendering/compositing/RenderLayerCompositor.cpp     m_outOfFlowPositionedLayers.add(layer);
add              1024 Source/core/rendering/compositing/RenderLayerCompositor.cpp                     overlapMap.add(curNode->layer(), curNode->layer()->ancestorDependentProperties().clippedAbsoluteBoundingBox);
add              1070 Source/core/rendering/compositing/RenderLayerCompositor.cpp         overlapMap.add(layer, absBounds);
add              1088 Source/core/rendering/compositing/RenderLayerCompositor.cpp         overlapMap.add(layer, absoluteDecendantBoundingBox);
add              2039 Source/core/rendering/compositing/RenderLayerCompositor.cpp     m_viewportConstrainedLayers.add(layer);
add                51 Source/core/rendering/shapes/ShapeInfo.h         typename InfoMap::AddResult result = infoMap.add(&key, InfoType::createInfo(key));
add                94 Source/core/rendering/style/KeyframeList.cpp                 m_properties.add(*it);
add                98 Source/core/rendering/style/KeyframeList.cpp             m_properties.add(*it);
add                51 Source/core/rendering/style/KeyframeList.h     void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
add                83 Source/core/rendering/style/KeyframeList.h     void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
add               736 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setContent(PassRefPtr<StyleImage> image, bool add)
add               741 Source/core/rendering/style/RenderStyle.cpp     if (add) {
add               749 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setContent(const String& string, bool add)
add               752 Source/core/rendering/style/RenderStyle.cpp     if (add) {
add               772 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setContent(PassOwnPtr<CounterContent> counter, bool add)
add               777 Source/core/rendering/style/RenderStyle.cpp     if (add) {
add               785 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setContent(QuoteType quote, bool add)
add               787 Source/core/rendering/style/RenderStyle.cpp     if (add) {
add              1464 Source/core/rendering/style/RenderStyle.h     void setContent(const String&, bool add = false);
add              1465 Source/core/rendering/style/RenderStyle.h     void setContent(PassRefPtr<StyleImage>, bool add = false);
add              1466 Source/core/rendering/style/RenderStyle.h     void setContent(PassOwnPtr<CounterContent>, bool add = false);
add              1467 Source/core/rendering/style/RenderStyle.h     void setContent(QuoteType, bool add = false);
add                60 Source/core/rendering/svg/ReferenceFilterBuilder.cpp     documentResourceReferences->add(filterOperation, documentResourceReference);
add               170 Source/core/rendering/svg/ReferenceFilterBuilder.cpp         builder->add(AtomicString(effectElement->result()->currentValue()->value()), effect);
add               167 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     m_clients.add(client);
add               183 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     m_clientLayers.add(toRenderLayerModelObject(node->renderer())->layer());
add               190 Source/core/rendering/svg/RenderSVGResourceContainer.cpp     m_clientLayers.add(client);
add               100 Source/core/rendering/svg/RenderSVGResourceFilter.cpp         builder->add(AtomicString(effectElement->result()->currentValue()->value()), effect);
add               219 Source/core/rendering/svg/RenderSVGResourceFilter.cpp         m_objects.add(object);
add                84 Source/core/rendering/svg/RenderSVGResourceGradient.cpp     OwnPtr<GradientData>& gradientData = m_gradientMap.add(object, nullptr).storedValue->value;
add               255 Source/core/rendering/svg/SVGRenderSupport.cpp             notlayoutedObjects.add(child);
add                52 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::aTag.localName());
add                53 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::circleTag.localName());
add                54 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::ellipseTag.localName());
add                55 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::glyphTag.localName());
add                56 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::gTag.localName());
add                57 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::imageTag.localName());
add                58 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::lineTag.localName());
add                59 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::markerTag.localName());
add                60 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::maskTag.localName());
add                61 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::missing_glyphTag.localName());
add                62 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::pathTag.localName());
add                63 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::polygonTag.localName());
add                64 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::polylineTag.localName());
add                65 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::rectTag.localName());
add                66 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::svgTag.localName());
add                67 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::textTag.localName());
add                68 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::useTag.localName());
add                74 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::clipPathTag.localName());
add                78 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::altGlyphTag.localName());
add                79 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::textPathTag.localName());
add                80 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::tspanTag.localName());
add                84 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::foreignObjectTag.localName());
add                98 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::lineTag.localName());
add                99 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::pathTag.localName());
add               100 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::polygonTag.localName());
add               101 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::polylineTag.localName());
add               111 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::altGlyphTag.localName());
add               112 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::circleTag.localName());
add               113 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::ellipseTag.localName());
add               114 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::lineTag.localName());
add               115 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::pathTag.localName());
add               116 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::polygonTag.localName());
add               117 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::polylineTag.localName());
add               118 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::rectTag.localName());
add               119 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::textTag.localName());
add               120 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::textPathTag.localName());
add               121 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::tspanTag.localName());
add               131 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::linearGradientTag.localName());
add               132 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::filterTag.localName());
add               133 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::patternTag.localName());
add               134 Source/core/rendering/svg/SVGResources.cpp         s_tagList.add(SVGNames::radialGradientTag.localName());
add               450 Source/core/rendering/svg/SVGResources.cpp         set.add(m_linkedResource);
add               456 Source/core/rendering/svg/SVGResources.cpp             set.add(m_clipperFilterMaskerData->clipper);
add               458 Source/core/rendering/svg/SVGResources.cpp             set.add(m_clipperFilterMaskerData->filter);
add               460 Source/core/rendering/svg/SVGResources.cpp             set.add(m_clipperFilterMaskerData->masker);
add               465 Source/core/rendering/svg/SVGResources.cpp             set.add(m_markerData->markerStart);
add               467 Source/core/rendering/svg/SVGResources.cpp             set.add(m_markerData->markerMid);
add               469 Source/core/rendering/svg/SVGResources.cpp             set.add(m_markerData->markerEnd);
add               474 Source/core/rendering/svg/SVGResources.cpp             set.add(m_fillStrokeData->fill);
add               476 Source/core/rendering/svg/SVGResources.cpp             set.add(m_fillStrokeData->stroke);
add               115 Source/core/rendering/svg/SVGResourcesCycleSolver.cpp             parentResources.add(toRenderSVGResourceContainer(parent));
add               138 Source/core/rendering/svg/SVGResourcesCycleSolver.cpp         m_allResources.add(*it);
add               142 Source/core/rendering/svg/SVGResourcesCycleSolver.cpp         m_allResources.add(toRenderSVGResourceContainer(m_renderer));
add                66 Source/core/speech/SpeechInput.cpp     m_listeners.add(m_nextListenerId, listener);
add                86 Source/core/svg/SVGAElement.cpp         supportedAttributes.add(SVGNames::targetAttr);
add                48 Source/core/svg/SVGAngle.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add               102 Source/core/svg/SVGAngle.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add               103 Source/core/svg/SVGAnimateMotionElement.cpp         supportedAttributes.add(SVGNames::pathAttr);
add                60 Source/core/svg/SVGAnimateTransformElement.cpp         supportedAttributes.add(SVGNames::typeAttr);
add                53 Source/core/svg/SVGAnimatedColor.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add               153 Source/core/svg/SVGAnimatedTypeAnimator.cpp     to->add(from, m_contextElement);
add               148 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::valuesAttr);
add               149 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::keyTimesAttr);
add               150 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::keyPointsAttr);
add               151 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::keySplinesAttr);
add               152 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::attributeTypeAttr);
add               153 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::calcModeAttr);
add               154 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::fromAttr);
add               155 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::toAttr);
add               156 Source/core/svg/SVGAnimationElement.cpp         supportedAttributes.add(SVGNames::byAttr);
add                55 Source/core/svg/SVGBoolean.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                54 Source/core/svg/SVGCircleElement.cpp         supportedAttributes.add(SVGNames::cxAttr);
add                55 Source/core/svg/SVGCircleElement.cpp         supportedAttributes.add(SVGNames::cyAttr);
add                56 Source/core/svg/SVGCircleElement.cpp         supportedAttributes.add(SVGNames::rAttr);
add                48 Source/core/svg/SVGClipPathElement.cpp         supportedAttributes.add(SVGNames::clipPathUnitsAttr);
add                72 Source/core/svg/SVGComponentTransferFunctionElement.cpp         supportedAttributes.add(SVGNames::typeAttr);
add                73 Source/core/svg/SVGComponentTransferFunctionElement.cpp         supportedAttributes.add(SVGNames::tableValuesAttr);
add                74 Source/core/svg/SVGComponentTransferFunctionElement.cpp         supportedAttributes.add(SVGNames::slopeAttr);
add                75 Source/core/svg/SVGComponentTransferFunctionElement.cpp         supportedAttributes.add(SVGNames::interceptAttr);
add                76 Source/core/svg/SVGComponentTransferFunctionElement.cpp         supportedAttributes.add(SVGNames::amplitudeAttr);
add                77 Source/core/svg/SVGComponentTransferFunctionElement.cpp         supportedAttributes.add(SVGNames::exponentAttr);
add                78 Source/core/svg/SVGComponentTransferFunctionElement.cpp         supportedAttributes.add(SVGNames::offsetAttr);
add                63 Source/core/svg/SVGCursorElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                64 Source/core/svg/SVGCursorElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                90 Source/core/svg/SVGCursorElement.cpp     m_clients.add(element);
add                52 Source/core/svg/SVGDocumentExtensions.cpp     m_timeContainers.add(element);
add               171 Source/core/svg/SVGDocumentExtensions.cpp     HashMap<AtomicString, OwnPtr<SVGPendingElements> >::AddResult result = m_pendingResources.add(id, nullptr);
add               174 Source/core/svg/SVGDocumentExtensions.cpp     result.storedValue->value->add(element);
add               289 Source/core/svg/SVGDocumentExtensions.cpp         m_pendingResourcesForRemoval.add(id, existing.release());
add               327 Source/core/svg/SVGDocumentExtensions.cpp         elements->add(referencingElement);
add               332 Source/core/svg/SVGDocumentExtensions.cpp     elements->add(referencingElement);
add               397 Source/core/svg/SVGDocumentExtensions.cpp     m_relativeLengthSVGRoots.add(svgRoot);
add               426 Source/core/svg/SVGDocumentExtensions.cpp     m_svgFontFaceElements.add(element);
add               437 Source/core/svg/SVGDocumentExtensions.cpp     m_pendingSVGFontFaceElementsForRemoval.add(font);
add               445 Source/core/svg/SVGElement.cpp             currentElement->m_elementsWithRelativeLengths.add(clientElement);
add               534 Source/core/svg/SVGElement.cpp     instances.add(instance);
add              1018 Source/core/svg/SVGElement.cpp         animatableAttributes.add(XLinkNames::hrefAttr);
add              1019 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::amplitudeAttr);
add              1020 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::azimuthAttr);
add              1021 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::baseFrequencyAttr);
add              1022 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::biasAttr);
add              1023 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::clipPathUnitsAttr);
add              1024 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::cxAttr);
add              1025 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::cyAttr);
add              1026 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::diffuseConstantAttr);
add              1027 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::divisorAttr);
add              1028 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::dxAttr);
add              1029 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::dyAttr);
add              1030 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::edgeModeAttr);
add              1031 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::elevationAttr);
add              1032 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::exponentAttr);
add              1033 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::filterResAttr);
add              1034 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::filterUnitsAttr);
add              1035 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::fxAttr);
add              1036 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::fyAttr);
add              1037 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::gradientTransformAttr);
add              1038 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::gradientUnitsAttr);
add              1039 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::heightAttr);
add              1040 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::in2Attr);
add              1041 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::inAttr);
add              1042 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::interceptAttr);
add              1043 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::k1Attr);
add              1044 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::k2Attr);
add              1045 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::k3Attr);
add              1046 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::k4Attr);
add              1047 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::kernelMatrixAttr);
add              1048 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::kernelUnitLengthAttr);
add              1049 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::lengthAdjustAttr);
add              1050 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::limitingConeAngleAttr);
add              1051 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::markerHeightAttr);
add              1052 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::markerUnitsAttr);
add              1053 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::markerWidthAttr);
add              1054 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::maskContentUnitsAttr);
add              1055 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::maskUnitsAttr);
add              1056 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::methodAttr);
add              1057 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::modeAttr);
add              1058 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::numOctavesAttr);
add              1059 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::offsetAttr);
add              1060 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::operatorAttr);
add              1061 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::orderAttr);
add              1062 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::orientAttr);
add              1063 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::pathLengthAttr);
add              1064 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::patternContentUnitsAttr);
add              1065 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::patternTransformAttr);
add              1066 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::patternUnitsAttr);
add              1067 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::pointsAtXAttr);
add              1068 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::pointsAtYAttr);
add              1069 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::pointsAtZAttr);
add              1070 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::preserveAlphaAttr);
add              1071 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::preserveAspectRatioAttr);
add              1072 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::primitiveUnitsAttr);
add              1073 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::radiusAttr);
add              1074 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::rAttr);
add              1075 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::refXAttr);
add              1076 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::refYAttr);
add              1077 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::resultAttr);
add              1078 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::rotateAttr);
add              1079 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::rxAttr);
add              1080 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::ryAttr);
add              1081 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::scaleAttr);
add              1082 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::seedAttr);
add              1083 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::slopeAttr);
add              1084 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::spacingAttr);
add              1085 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::specularConstantAttr);
add              1086 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::specularExponentAttr);
add              1087 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::spreadMethodAttr);
add              1088 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::startOffsetAttr);
add              1089 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::stdDeviationAttr);
add              1090 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::stitchTilesAttr);
add              1091 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::surfaceScaleAttr);
add              1092 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::tableValuesAttr);
add              1093 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::targetAttr);
add              1094 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::targetXAttr);
add              1095 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::targetYAttr);
add              1096 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::transformAttr);
add              1097 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::typeAttr);
add              1098 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::valuesAttr);
add              1099 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::viewBoxAttr);
add              1100 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::widthAttr);
add              1101 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::x1Attr);
add              1102 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::x2Attr);
add              1103 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::xAttr);
add              1104 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::xChannelSelectorAttr);
add              1105 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::y1Attr);
add              1106 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::y2Attr);
add              1107 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::yAttr);
add              1108 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::yChannelSelectorAttr);
add              1109 Source/core/svg/SVGElement.cpp         animatableAttributes.add(SVGNames::zAttr);
add                56 Source/core/svg/SVGEllipseElement.cpp         supportedAttributes.add(SVGNames::cxAttr);
add                57 Source/core/svg/SVGEllipseElement.cpp         supportedAttributes.add(SVGNames::cyAttr);
add                58 Source/core/svg/SVGEllipseElement.cpp         supportedAttributes.add(SVGNames::rxAttr);
add                59 Source/core/svg/SVGEllipseElement.cpp         supportedAttributes.add(SVGNames::ryAttr);
add                62 Source/core/svg/SVGEnumeration.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                67 Source/core/svg/SVGFEBlendElement.cpp         supportedAttributes.add(SVGNames::modeAttr);
add                68 Source/core/svg/SVGFEBlendElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                69 Source/core/svg/SVGFEBlendElement.cpp         supportedAttributes.add(SVGNames::in2Attr);
add                67 Source/core/svg/SVGFEColorMatrixElement.cpp         supportedAttributes.add(SVGNames::typeAttr);
add                68 Source/core/svg/SVGFEColorMatrixElement.cpp         supportedAttributes.add(SVGNames::valuesAttr);
add                69 Source/core/svg/SVGFEColorMatrixElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                53 Source/core/svg/SVGFEComponentTransferElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                77 Source/core/svg/SVGFECompositeElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                78 Source/core/svg/SVGFECompositeElement.cpp         supportedAttributes.add(SVGNames::in2Attr);
add                79 Source/core/svg/SVGFECompositeElement.cpp         supportedAttributes.add(SVGNames::operatorAttr);
add                80 Source/core/svg/SVGFECompositeElement.cpp         supportedAttributes.add(SVGNames::k1Attr);
add                81 Source/core/svg/SVGFECompositeElement.cpp         supportedAttributes.add(SVGNames::k2Attr);
add                82 Source/core/svg/SVGFECompositeElement.cpp         supportedAttributes.add(SVGNames::k3Attr);
add                83 Source/core/svg/SVGFECompositeElement.cpp         supportedAttributes.add(SVGNames::k4Attr);
add                83 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                84 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::orderAttr);
add                85 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::kernelMatrixAttr);
add                86 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::edgeModeAttr);
add                87 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::divisorAttr);
add                88 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::biasAttr);
add                89 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::targetXAttr);
add                90 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::targetYAttr);
add                91 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::kernelUnitLengthAttr);
add                92 Source/core/svg/SVGFEConvolveMatrixElement.cpp         supportedAttributes.add(SVGNames::preserveAlphaAttr);
add                57 Source/core/svg/SVGFEDiffuseLightingElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                58 Source/core/svg/SVGFEDiffuseLightingElement.cpp         supportedAttributes.add(SVGNames::diffuseConstantAttr);
add                59 Source/core/svg/SVGFEDiffuseLightingElement.cpp         supportedAttributes.add(SVGNames::surfaceScaleAttr);
add                60 Source/core/svg/SVGFEDiffuseLightingElement.cpp         supportedAttributes.add(SVGNames::kernelUnitLengthAttr);
add                61 Source/core/svg/SVGFEDiffuseLightingElement.cpp         supportedAttributes.add(SVGNames::lighting_colorAttr); // Even though it's a SVG-CSS property, we override its handling here.
add                70 Source/core/svg/SVGFEDisplacementMapElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                71 Source/core/svg/SVGFEDisplacementMapElement.cpp         supportedAttributes.add(SVGNames::in2Attr);
add                72 Source/core/svg/SVGFEDisplacementMapElement.cpp         supportedAttributes.add(SVGNames::xChannelSelectorAttr);
add                73 Source/core/svg/SVGFEDisplacementMapElement.cpp         supportedAttributes.add(SVGNames::yChannelSelectorAttr);
add                74 Source/core/svg/SVGFEDisplacementMapElement.cpp         supportedAttributes.add(SVGNames::scaleAttr);
add                64 Source/core/svg/SVGFEDropShadowElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                65 Source/core/svg/SVGFEDropShadowElement.cpp         supportedAttributes.add(SVGNames::dxAttr);
add                66 Source/core/svg/SVGFEDropShadowElement.cpp         supportedAttributes.add(SVGNames::dyAttr);
add                67 Source/core/svg/SVGFEDropShadowElement.cpp         supportedAttributes.add(SVGNames::stdDeviationAttr);
add                60 Source/core/svg/SVGFEGaussianBlurElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                61 Source/core/svg/SVGFEGaussianBlurElement.cpp         supportedAttributes.add(SVGNames::stdDeviationAttr);
add               112 Source/core/svg/SVGFEImageElement.cpp         supportedAttributes.add(SVGNames::preserveAspectRatioAttr);
add                77 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::azimuthAttr);
add                78 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::elevationAttr);
add                79 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                80 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                81 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::zAttr);
add                82 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::pointsAtXAttr);
add                83 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::pointsAtYAttr);
add                84 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::pointsAtZAttr);
add                85 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::specularExponentAttr);
add                86 Source/core/svg/SVGFELightElement.cpp         supportedAttributes.add(SVGNames::limitingConeAngleAttr);
add                47 Source/core/svg/SVGFEMergeNodeElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                72 Source/core/svg/SVGFEMorphologyElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                73 Source/core/svg/SVGFEMorphologyElement.cpp         supportedAttributes.add(SVGNames::operatorAttr);
add                74 Source/core/svg/SVGFEMorphologyElement.cpp         supportedAttributes.add(SVGNames::radiusAttr);
add                54 Source/core/svg/SVGFEOffsetElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                55 Source/core/svg/SVGFEOffsetElement.cpp         supportedAttributes.add(SVGNames::dxAttr);
add                56 Source/core/svg/SVGFEOffsetElement.cpp         supportedAttributes.add(SVGNames::dyAttr);
add                60 Source/core/svg/SVGFESpecularLightingElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                61 Source/core/svg/SVGFESpecularLightingElement.cpp         supportedAttributes.add(SVGNames::specularConstantAttr);
add                62 Source/core/svg/SVGFESpecularLightingElement.cpp         supportedAttributes.add(SVGNames::specularExponentAttr);
add                63 Source/core/svg/SVGFESpecularLightingElement.cpp         supportedAttributes.add(SVGNames::surfaceScaleAttr);
add                64 Source/core/svg/SVGFESpecularLightingElement.cpp         supportedAttributes.add(SVGNames::kernelUnitLengthAttr);
add                49 Source/core/svg/SVGFETileElement.cpp         supportedAttributes.add(SVGNames::inAttr);
add                79 Source/core/svg/SVGFETurbulenceElement.cpp         supportedAttributes.add(SVGNames::baseFrequencyAttr);
add                80 Source/core/svg/SVGFETurbulenceElement.cpp         supportedAttributes.add(SVGNames::numOctavesAttr);
add                81 Source/core/svg/SVGFETurbulenceElement.cpp         supportedAttributes.add(SVGNames::seedAttr);
add                82 Source/core/svg/SVGFETurbulenceElement.cpp         supportedAttributes.add(SVGNames::stitchTilesAttr);
add                83 Source/core/svg/SVGFETurbulenceElement.cpp         supportedAttributes.add(SVGNames::typeAttr);
add                83 Source/core/svg/SVGFilterElement.cpp         supportedAttributes.add(SVGNames::filterUnitsAttr);
add                84 Source/core/svg/SVGFilterElement.cpp         supportedAttributes.add(SVGNames::primitiveUnitsAttr);
add                85 Source/core/svg/SVGFilterElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                86 Source/core/svg/SVGFilterElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                87 Source/core/svg/SVGFilterElement.cpp         supportedAttributes.add(SVGNames::widthAttr);
add                88 Source/core/svg/SVGFilterElement.cpp         supportedAttributes.add(SVGNames::heightAttr);
add                89 Source/core/svg/SVGFilterElement.cpp         supportedAttributes.add(SVGNames::filterResAttr);
add               175 Source/core/svg/SVGFilterElement.cpp     m_clientsToAdd.add(client);
add                61 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp         supportedAttributes.add(SVGNames::xAttr);
add                62 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp         supportedAttributes.add(SVGNames::yAttr);
add                63 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp         supportedAttributes.add(SVGNames::widthAttr);
add                64 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp         supportedAttributes.add(SVGNames::heightAttr);
add                65 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp         supportedAttributes.add(SVGNames::resultAttr);
add                63 Source/core/svg/SVGFitToViewBox.cpp     supportedAttributes.add(SVGNames::viewBoxAttr);
add                64 Source/core/svg/SVGFitToViewBox.cpp     supportedAttributes.add(SVGNames::preserveAspectRatioAttr);
add               146 Source/core/svg/SVGFontElement.cpp             kerningTable.add(makeKerningPairKey(glyph1, glyph2), kerningPair.kerning);
add                60 Source/core/svg/SVGForeignObjectElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                61 Source/core/svg/SVGForeignObjectElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                62 Source/core/svg/SVGForeignObjectElement.cpp         supportedAttributes.add(SVGNames::widthAttr);
add                63 Source/core/svg/SVGForeignObjectElement.cpp         supportedAttributes.add(SVGNames::heightAttr);
add                62 Source/core/svg/SVGGlyphMap.h             m_idGlyphs.add(glyphIdentifier, glyph.tableEntry);
add                88 Source/core/svg/SVGGlyphMap.h             m_namedGlyphs.add(lastGlyph.glyphName, lastGlyph.tableEntry);
add                90 Source/core/svg/SVGGlyphMap.h             m_idGlyphs.add(glyphIdentifier, lastGlyph.tableEntry);
add                68 Source/core/svg/SVGGradientElement.cpp         supportedAttributes.add(SVGNames::gradientUnitsAttr);
add                69 Source/core/svg/SVGGradientElement.cpp         supportedAttributes.add(SVGNames::gradientTransformAttr);
add                70 Source/core/svg/SVGGradientElement.cpp         supportedAttributes.add(SVGNames::spreadMethodAttr);
add               168 Source/core/svg/SVGGraphicsElement.cpp         supportedAttributes.add(SVGNames::transformAttr);
add                77 Source/core/svg/SVGImageElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                78 Source/core/svg/SVGImageElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                79 Source/core/svg/SVGImageElement.cpp         supportedAttributes.add(SVGNames::widthAttr);
add                80 Source/core/svg/SVGImageElement.cpp         supportedAttributes.add(SVGNames::heightAttr);
add                81 Source/core/svg/SVGImageElement.cpp         supportedAttributes.add(SVGNames::preserveAspectRatioAttr);
add                61 Source/core/svg/SVGInteger.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                55 Source/core/svg/SVGIntegerOptionalInteger.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                99 Source/core/svg/SVGLength.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                61 Source/core/svg/SVGLengthList.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                55 Source/core/svg/SVGLineElement.cpp         supportedAttributes.add(SVGNames::x1Attr);
add                56 Source/core/svg/SVGLineElement.cpp         supportedAttributes.add(SVGNames::x2Attr);
add                57 Source/core/svg/SVGLineElement.cpp         supportedAttributes.add(SVGNames::y1Attr);
add                58 Source/core/svg/SVGLineElement.cpp         supportedAttributes.add(SVGNames::y2Attr);
add                63 Source/core/svg/SVGLinearGradientElement.cpp         supportedAttributes.add(SVGNames::x1Attr);
add                64 Source/core/svg/SVGLinearGradientElement.cpp         supportedAttributes.add(SVGNames::x2Attr);
add                65 Source/core/svg/SVGLinearGradientElement.cpp         supportedAttributes.add(SVGNames::y1Attr);
add                66 Source/core/svg/SVGLinearGradientElement.cpp         supportedAttributes.add(SVGNames::y2Attr);
add               158 Source/core/svg/SVGLinearGradientElement.cpp     processedGradients.add(current);
add               174 Source/core/svg/SVGLinearGradientElement.cpp             processedGradients.add(current);
add                84 Source/core/svg/SVGMarkerElement.cpp         supportedAttributes.add(SVGNames::markerUnitsAttr);
add                85 Source/core/svg/SVGMarkerElement.cpp         supportedAttributes.add(SVGNames::refXAttr);
add                86 Source/core/svg/SVGMarkerElement.cpp         supportedAttributes.add(SVGNames::refYAttr);
add                87 Source/core/svg/SVGMarkerElement.cpp         supportedAttributes.add(SVGNames::markerWidthAttr);
add                88 Source/core/svg/SVGMarkerElement.cpp         supportedAttributes.add(SVGNames::markerHeightAttr);
add                89 Source/core/svg/SVGMarkerElement.cpp         supportedAttributes.add(SVGNames::orientAttr);
add                71 Source/core/svg/SVGMaskElement.cpp         supportedAttributes.add(SVGNames::maskUnitsAttr);
add                72 Source/core/svg/SVGMaskElement.cpp         supportedAttributes.add(SVGNames::maskContentUnitsAttr);
add                73 Source/core/svg/SVGMaskElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                74 Source/core/svg/SVGMaskElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                75 Source/core/svg/SVGMaskElement.cpp         supportedAttributes.add(SVGNames::widthAttr);
add                76 Source/core/svg/SVGMaskElement.cpp         supportedAttributes.add(SVGNames::heightAttr);
add                62 Source/core/svg/SVGNumber.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                61 Source/core/svg/SVGNumberList.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                55 Source/core/svg/SVGNumberOptionalNumber.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add               244 Source/core/svg/SVGParserUtilities.cpp         values.add(String(inputStart, inputEnd - inputStart + 1));
add               353 Source/core/svg/SVGParserUtilities.cpp             stringList.add(String(inputStart, ptr - inputStart));
add               189 Source/core/svg/SVGPathElement.cpp         supportedAttributes.add(SVGNames::dAttr);
add               190 Source/core/svg/SVGPathElement.cpp         supportedAttributes.add(SVGNames::pathLengthAttr);
add               138 Source/core/svg/SVGPathSegList.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                71 Source/core/svg/SVGPatternElement.cpp         supportedAttributes.add(SVGNames::patternUnitsAttr);
add                72 Source/core/svg/SVGPatternElement.cpp         supportedAttributes.add(SVGNames::patternContentUnitsAttr);
add                73 Source/core/svg/SVGPatternElement.cpp         supportedAttributes.add(SVGNames::patternTransformAttr);
add                74 Source/core/svg/SVGPatternElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                75 Source/core/svg/SVGPatternElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                76 Source/core/svg/SVGPatternElement.cpp         supportedAttributes.add(SVGNames::widthAttr);
add                77 Source/core/svg/SVGPatternElement.cpp         supportedAttributes.add(SVGNames::heightAttr);
add               191 Source/core/svg/SVGPatternElement.cpp         processedPatterns.add(current);
add                75 Source/core/svg/SVGPoint.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                61 Source/core/svg/SVGPointList.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                44 Source/core/svg/SVGPolyElement.cpp         supportedAttributes.add(SVGNames::pointsAttr);
add                84 Source/core/svg/SVGPreserveAspectRatio.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                71 Source/core/svg/SVGRadialGradientElement.cpp         supportedAttributes.add(SVGNames::cxAttr);
add                72 Source/core/svg/SVGRadialGradientElement.cpp         supportedAttributes.add(SVGNames::cyAttr);
add                73 Source/core/svg/SVGRadialGradientElement.cpp         supportedAttributes.add(SVGNames::fxAttr);
add                74 Source/core/svg/SVGRadialGradientElement.cpp         supportedAttributes.add(SVGNames::fyAttr);
add                75 Source/core/svg/SVGRadialGradientElement.cpp         supportedAttributes.add(SVGNames::rAttr);
add                76 Source/core/svg/SVGRadialGradientElement.cpp         supportedAttributes.add(SVGNames::frAttr);
add               178 Source/core/svg/SVGRadialGradientElement.cpp     processedGradients.add(current);
add               194 Source/core/svg/SVGRadialGradientElement.cpp             processedGradients.add(current);
add                72 Source/core/svg/SVGRect.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                60 Source/core/svg/SVGRectElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                61 Source/core/svg/SVGRectElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                62 Source/core/svg/SVGRectElement.cpp         supportedAttributes.add(SVGNames::widthAttr);
add                63 Source/core/svg/SVGRectElement.cpp         supportedAttributes.add(SVGNames::heightAttr);
add                64 Source/core/svg/SVGRectElement.cpp         supportedAttributes.add(SVGNames::rxAttr);
add                65 Source/core/svg/SVGRectElement.cpp         supportedAttributes.add(SVGNames::ryAttr);
add                54 Source/core/svg/SVGScriptElement.cpp         supportedAttributes.add(SVGNames::typeAttr);
add                55 Source/core/svg/SVGScriptElement.cpp         supportedAttributes.add(HTMLNames::onerrorAttr);
add                49 Source/core/svg/SVGStopElement.cpp         supportedAttributes.add(SVGNames::offsetAttr);
add                63 Source/core/svg/SVGString.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                82 Source/core/svg/SVGStringList.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add               101 Source/core/svg/SVGStyleElement.cpp         supportedAttributes.add(SVGNames::titleAttr);
add               114 Source/core/svg/SVGTests.cpp     supportedAttributes.add(SVGNames::requiredFeaturesAttr);
add               115 Source/core/svg/SVGTests.cpp     supportedAttributes.add(SVGNames::requiredExtensionsAttr);
add               116 Source/core/svg/SVGTests.cpp     supportedAttributes.add(SVGNames::systemLanguageAttr);
add               204 Source/core/svg/SVGTextContentElement.cpp         supportedAttributes.add(SVGNames::lengthAdjustAttr);
add               205 Source/core/svg/SVGTextContentElement.cpp         supportedAttributes.add(SVGNames::textLengthAttr);
add               206 Source/core/svg/SVGTextContentElement.cpp         supportedAttributes.add(XMLNames::spaceAttr);
add                88 Source/core/svg/SVGTextPathElement.cpp         supportedAttributes.add(SVGNames::startOffsetAttr);
add                89 Source/core/svg/SVGTextPathElement.cpp         supportedAttributes.add(SVGNames::methodAttr);
add                90 Source/core/svg/SVGTextPathElement.cpp         supportedAttributes.add(SVGNames::spacingAttr);
add                55 Source/core/svg/SVGTextPositioningElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add                56 Source/core/svg/SVGTextPositioningElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add                57 Source/core/svg/SVGTextPositioningElement.cpp         supportedAttributes.add(SVGNames::dxAttr);
add                58 Source/core/svg/SVGTextPositioningElement.cpp         supportedAttributes.add(SVGNames::dyAttr);
add                59 Source/core/svg/SVGTextPositioningElement.cpp         supportedAttributes.add(SVGNames::rotateAttr);
add                99 Source/core/svg/SVGTransform.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add                69 Source/core/svg/SVGTransformList.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
add               100 Source/core/svg/SVGURIReference.cpp     supportedAttributes.add(XLinkNames::hrefAttr);
add               113 Source/core/svg/SVGUseElement.cpp         supportedAttributes.add(SVGNames::xAttr);
add               114 Source/core/svg/SVGUseElement.cpp         supportedAttributes.add(SVGNames::yAttr);
add               115 Source/core/svg/SVGUseElement.cpp         supportedAttributes.add(SVGNames::widthAttr);
add               116 Source/core/svg/SVGUseElement.cpp         supportedAttributes.add(SVGNames::heightAttr);
add               309 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::aTag);
add               310 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::circleTag);
add               311 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::descTag);
add               312 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::ellipseTag);
add               313 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::gTag);
add               314 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::imageTag);
add               315 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::lineTag);
add               316 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::metadataTag);
add               317 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::pathTag);
add               318 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::polygonTag);
add               319 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::polylineTag);
add               320 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::rectTag);
add               321 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::svgTag);
add               322 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::switchTag);
add               323 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::symbolTag);
add               324 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::textTag);
add               325 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::textPathTag);
add               326 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::titleTag);
add               327 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::tspanTag);
add               328 Source/core/svg/SVGUseElement.cpp         allowedElementTags.add(SVGNames::useTag);
add                48 Source/core/svg/SVGViewElement.cpp         supportedAttributes.add(SVGNames::viewTargetAttr);
add                49 Source/core/svg/SVGZoomAndPan.cpp     supportedAttributes.add(SVGNames::zoomAndPanAttr);
add                88 Source/core/svg/animation/SMILTimeContainer.cpp     OwnPtr<AnimationsVector>& scheduled = m_scheduledAnimations.add(key, nullptr).storedValue->value;
add               487 Source/core/svg/animation/SVGSMILElement.cpp         existing.add(timeList[n].time().value());
add               504 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::beginAttr);
add               505 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::endAttr);
add               506 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::durAttr);
add               507 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::repeatDurAttr);
add               508 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::repeatCountAttr);
add               509 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::minAttr);
add               510 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::maxAttr);
add               511 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(SVGNames::attributeNameAttr);
add               512 Source/core/svg/animation/SVGSMILElement.cpp         supportedAttributes.add(XLinkNames::hrefAttr);
add              1241 Source/core/svg/animation/SVGSMILElement.cpp     if (!loopBreaker.add(this).isNewEntry)
add              1279 Source/core/svg/animation/SVGSMILElement.cpp     m_syncBaseDependents.add(animation);
add                30 Source/core/svg/graphics/filters/SVGFilterBuilder.cpp     m_builtinEffects.add(SourceGraphic::effectName(), sourceGraphic);
add                31 Source/core/svg/graphics/filters/SVGFilterBuilder.cpp     m_builtinEffects.add(SourceAlpha::effectName(), sourceAlpha);
add                71 Source/core/svg/graphics/filters/SVGFilterBuilder.cpp     m_effectReferences.add(effect, FilterEffectSet());
add                77 Source/core/svg/graphics/filters/SVGFilterBuilder.cpp         effectReferences(effect->inputEffect(i)).add(effect.get());
add                78 Source/core/svg/graphics/filters/SVGFilterBuilder.cpp     m_effectRenderer.add(object, effect.get());
add                41 Source/core/svg/graphics/filters/SVGFilterBuilder.h     void add(const AtomicString& id, PassRefPtr<FilterEffect>);
add                68 Source/core/svg/graphics/filters/SVGFilterBuilder.h              m_effectReferences.add(iterator->value, FilterEffectSet());
add                66 Source/core/svg/properties/SVGProperty.h     virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) = 0;
add                45 Source/core/timing/PerformanceUserTiming.cpp         map.add("navigationStart", &PerformanceTiming::navigationStart);
add                46 Source/core/timing/PerformanceUserTiming.cpp         map.add("unloadEventStart", &PerformanceTiming::unloadEventStart);
add                47 Source/core/timing/PerformanceUserTiming.cpp         map.add("unloadEventEnd", &PerformanceTiming::unloadEventEnd);
add                48 Source/core/timing/PerformanceUserTiming.cpp         map.add("redirectStart", &PerformanceTiming::redirectStart);
add                49 Source/core/timing/PerformanceUserTiming.cpp         map.add("redirectEnd", &PerformanceTiming::redirectEnd);
add                50 Source/core/timing/PerformanceUserTiming.cpp         map.add("fetchStart", &PerformanceTiming::fetchStart);
add                51 Source/core/timing/PerformanceUserTiming.cpp         map.add("domainLookupStart", &PerformanceTiming::domainLookupStart);
add                52 Source/core/timing/PerformanceUserTiming.cpp         map.add("domainLookupEnd", &PerformanceTiming::domainLookupEnd);
add                53 Source/core/timing/PerformanceUserTiming.cpp         map.add("connectStart", &PerformanceTiming::connectStart);
add                54 Source/core/timing/PerformanceUserTiming.cpp         map.add("connectEnd", &PerformanceTiming::connectEnd);
add                55 Source/core/timing/PerformanceUserTiming.cpp         map.add("secureConnectionStart", &PerformanceTiming::secureConnectionStart);
add                56 Source/core/timing/PerformanceUserTiming.cpp         map.add("requestStart", &PerformanceTiming::requestStart);
add                57 Source/core/timing/PerformanceUserTiming.cpp         map.add("responseStart", &PerformanceTiming::responseStart);
add                58 Source/core/timing/PerformanceUserTiming.cpp         map.add("responseEnd", &PerformanceTiming::responseEnd);
add                59 Source/core/timing/PerformanceUserTiming.cpp         map.add("domLoading", &PerformanceTiming::domLoading);
add                60 Source/core/timing/PerformanceUserTiming.cpp         map.add("domInteractive", &PerformanceTiming::domInteractive);
add                61 Source/core/timing/PerformanceUserTiming.cpp         map.add("domContentLoadedEventStart", &PerformanceTiming::domContentLoadedEventStart);
add                62 Source/core/timing/PerformanceUserTiming.cpp         map.add("domContentLoadedEventEnd", &PerformanceTiming::domContentLoadedEventEnd);
add                63 Source/core/timing/PerformanceUserTiming.cpp         map.add("domComplete", &PerformanceTiming::domComplete);
add                64 Source/core/timing/PerformanceUserTiming.cpp         map.add("loadEventStart", &PerformanceTiming::loadEventStart);
add                65 Source/core/timing/PerformanceUserTiming.cpp         map.add("loadEventEnd", &PerformanceTiming::loadEventEnd);
add               109 Source/core/workers/WorkerEventQueue.cpp     m_eventTaskMap.add(event.release(), task.get());
add                77 Source/core/workers/WorkerThread.cpp     workerThreads().add(this);
add                86 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("accept-charset");
add                87 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("accept-encoding");
add                88 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("access-control-request-headers");
add                89 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("access-control-request-method");
add                90 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("connection");
add                91 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("content-length");
add                92 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("content-transfer-encoding");
add                93 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("cookie");
add                94 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("cookie2");
add                95 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("date");
add                96 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("expect");
add                97 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("host");
add                98 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("keep-alive");
add                99 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("origin");
add               100 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("referer");
add               101 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("te");
add               102 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("trailer");
add               103 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("transfer-encoding");
add               104 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("upgrade");
add               105 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("user-agent");
add               106 Source/core/xml/XMLHttpRequest.cpp     m_forbiddenRequestHeaders.add("via");
add              1093 Source/core/xml/XMLHttpRequest.cpp     HTTPHeaderMap::AddResult result = m_requestHeaders.add(name, value);
add               354 Source/core/xml/XPathFunctions.cpp         if (node && resultSet.add(node).isNewEntry)
add               112 Source/core/xml/XPathNodeSet.cpp         parentNodes.add(parentWithDepth(commonAncestorDepth + 1, parentMatrix[i]));
add               201 Source/core/xml/XPathNodeSet.cpp         nodes.add(node);
add               112 Source/core/xml/XPathParser.cpp         nodeTypeNames.add("comment");
add               113 Source/core/xml/XPathParser.cpp         nodeTypeNames.add("text");
add               114 Source/core/xml/XPathParser.cpp         nodeTypeNames.add("processing-instruction");
add               115 Source/core/xml/XPathParser.cpp         nodeTypeNames.add("node");
add               527 Source/core/xml/XPathParser.cpp     m_parseNodes.add(node);
add               547 Source/core/xml/XPathParser.cpp     m_predicateVectors.add(vector);
add               569 Source/core/xml/XPathParser.cpp     m_expressionVectors.add(vector);
add               590 Source/core/xml/XPathParser.cpp     m_strings.add(s);
add               611 Source/core/xml/XPathParser.cpp     m_nodeTests.add(t);
add               147 Source/core/xml/XPathPath.cpp                 if (!needToCheckForDuplicateNodes || newNodesSet.add(node).isNewEntry)
add               237 Source/core/xml/XPathPredicate.cpp         nodes.add(resultSet[i]);
add               241 Source/core/xml/XPathPredicate.cpp         if (nodes.add(node).isNewEntry)
add                63 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java                 processedArgs.add(matcher.group(1));
add                68 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java                     processedArgs.add(quotesMatcher.group(1));
add                70 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java                     processedArgs.add(value);
add                73 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java                 processedArgs.add(arg);
add               110 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java             futures.add(executor.submit(task));
add               153 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java                 result.add(new CompilerInstanceDescriptor(moduleAndArgs[0], moduleAndArgs[1]));
add                78 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/FileCheckerCallable.java             checks.add(check);
add                31 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/JsDocValidator.java             futures.add(executor.submit(new FileCheckerCallable(fileName)));
add                39 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/JsDocValidator.java                     contexts.add(context);
add                54 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/JsDocValidator.java                 entries.add(new LogEntry(context.scriptFileName, record));
add                78 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ValidatorContext.java         validationResult.add(new MessageRecord(errorAbsolutePosition, message));
add                70 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ContextTrackingValidationCheck.java         this.clients.add(client);
add               199 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ContextTrackingValidationCheck.java             result.add(new InheritanceEntry(
add                23 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java         FUNCTIONS_WITH_CALLBACK_RECEIVER_AS_SECOND_ARGUMENT.add("every");
add                24 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java         FUNCTIONS_WITH_CALLBACK_RECEIVER_AS_SECOND_ARGUMENT.add("filter");
add                25 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java         FUNCTIONS_WITH_CALLBACK_RECEIVER_AS_SECOND_ARGUMENT.add("forEach");
add                26 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java         FUNCTIONS_WITH_CALLBACK_RECEIVER_AS_SECOND_ARGUMENT.add("map");
add                27 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java         FUNCTIONS_WITH_CALLBACK_RECEIVER_AS_SECOND_ARGUMENT.add("some");
add                79 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java                 .add(new CallSite(hasReceiver, functionCall));
add               105 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java             functionsRequiringThisAnnotation.add(function);
add               113 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java             arguments.add(getContext().getNodeText(argumentNode));
add               145 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java             getOrCreateSetByKey(symbolicArgumentsByName, argumentText).add(
add                20 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ProtoFollowsExtendsChecker.java         IGNORED_SUPER_TYPES.add("WebInspector.Object");
add               103 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ProtoFollowsExtendsChecker.java             functionsMissingSuperCall.add(function);
add               162 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ProtoFollowsExtendsChecker.java         typesWithAssignedProto.add(currentType);
add                45 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ReturnAnnotationChecker.java         valueReturningFunctions.add(record);
add                57 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ReturnAnnotationChecker.java         throwingFunctions.add(record);
add               319 Source/modules/crypto/NormalizeAlgorithm.cpp         stack.add(message);
add               326 Source/modules/crypto/NormalizeAlgorithm.cpp         stack.add(message1);
add               327 Source/modules/crypto/NormalizeAlgorithm.cpp         stack.add(message2);
add               525 Source/modules/crypto/NormalizeAlgorithm.cpp     context.add("hash");
add               690 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("AesCbcParams");
add               693 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("AesKeyGenParams");
add               696 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("HmacImportParams");
add               699 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("HmacKeyGenParams");
add               702 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("RsaHashedKeyGenParams");
add               705 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("RsaHashedImportParams");
add               708 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("RsaKeyGenParams");
add               711 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("AesCtrParams");
add               714 Source/modules/crypto/NormalizeAlgorithm.cpp         context.add("AesGcmParams");
add               727 Source/modules/crypto/NormalizeAlgorithm.cpp     context.add("Algorithm");
add               746 Source/modules/crypto/NormalizeAlgorithm.cpp     context.add(algorithmIdToName(algorithmId));
add               197 Source/modules/geolocation/Geolocation.cpp     if (!m_idToNotifierMap.add(id, notifier.get()).isNewEntry)
add               326 Source/modules/geolocation/Geolocation.cpp     m_oneShots.add(notifier);
add               341 Source/modules/geolocation/Geolocation.cpp     } while (!m_watchers.add(watchID, notifier));
add               357 Source/modules/geolocation/Geolocation.cpp         m_pendingForPermissionNotifiers.add(notifier);
add               384 Source/modules/geolocation/Geolocation.cpp     m_requestsAwaitingCachedPosition.add(notifier);
add               571 Source/modules/geolocation/Geolocation.cpp          dest.add(notifier);
add               150 Source/modules/geolocation/Geolocation.h         bool add(int id, PassRefPtrWillBeRawPtr<GeoNotifier>);
add                84 Source/modules/geolocation/GeolocationController.cpp     m_observers.add(observer);
add                86 Source/modules/geolocation/GeolocationController.cpp         m_highAccuracyObservers.add(observer);
add                90 Source/modules/geolocation/testing/GeolocationClientMock.cpp     m_pendingPermissions.add(geolocation);
add               294 Source/modules/imagebitmap/ImageBitmapFactories.cpp     m_pendingLoaders.add(loader);
add               120 Source/modules/indexeddb/IDBDatabase.cpp     m_transactions.add(transaction->id(), transaction);
add                71 Source/modules/indexeddb/IDBObjectStore.h     PassRefPtr<IDBRequest> add(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&);
add               176 Source/modules/indexeddb/IDBTransaction.cpp         m_deletedObjectStores.add(objectStore);
add               218 Source/modules/indexeddb/IDBTransaction.cpp     m_requestList.add(request);
add               113 Source/modules/mediasource/MediaSource.cpp     m_sourceBuffers->add(buffer);
add               114 Source/modules/mediasource/MediaSource.cpp     m_activeSourceBuffers->add(buffer);
add               162 Source/modules/mediasource/MediaSourceBase.cpp             sourceRanges->add(sourceRanges->start(sourceRanges->length() - 1, ASSERT_NO_EXCEPTION), highestEndTime);
add                57 Source/modules/mediasource/SourceBufferList.h     void add(PassRefPtrWillBeRawPtr<SourceBuffer>);
add               108 Source/modules/mediasource/WebKitMediaSource.cpp     m_sourceBuffers->add(buffer);
add               109 Source/modules/mediasource/WebKitMediaSource.cpp     m_activeSourceBuffers->add(buffer);
add                57 Source/modules/mediasource/WebKitSourceBufferList.h     void add(PassRefPtrWillBeRawPtr<WebKitSourceBuffer>);
add                67 Source/modules/mediastream/RTCStatsReport.cpp     m_stats.add(name, value);
add                51 Source/modules/mediastream/RTCStatsResponse.cpp     m_idmap.add(id, m_result.size() - 1);
add                67 Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp         protocolWhitelist->add(protocols[i]);
add               900 Source/modules/webaudio/AudioContext.cpp     m_dirtySummingJunctions.add(summingJunction);
add               913 Source/modules/webaudio/AudioContext.cpp     m_dirtyAudioNodeOutputs.add(output);
add               941 Source/modules/webaudio/AudioContext.cpp         m_automaticPullNodes.add(node);
add                60 Source/modules/webaudio/AudioNodeInput.cpp     m_outputs.add(output);
add               105 Source/modules/webaudio/AudioNodeInput.cpp     m_disabledOutputs.add(output);
add               124 Source/modules/webaudio/AudioNodeInput.cpp     m_outputs.add(output);
add               157 Source/modules/webaudio/AudioNodeOutput.cpp     m_inputs.add(input);
add               190 Source/modules/webaudio/AudioNodeOutput.cpp     m_params.add(param);
add               179 Source/modules/webaudio/AudioParam.cpp     m_outputs.add(output);
add                65 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("sqlite_rename_table");
add                66 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("sqlite_rename_trigger");
add                68 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("glob");
add                71 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("abs");
add                72 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("changes");
add                73 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("coalesce");
add                74 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("glob");
add                75 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("ifnull");
add                76 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("hex");
add                77 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("last_insert_rowid");
add                78 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("length");
add                79 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("like");
add                80 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("lower");
add                81 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("ltrim");
add                82 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("max");
add                83 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("min");
add                84 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("nullif");
add                85 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("quote");
add                86 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("replace");
add                87 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("round");
add                88 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("rtrim");
add                89 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("soundex");
add                90 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("sqlite_source_id");
add                91 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("sqlite_version");
add                92 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("substr");
add                93 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("total_changes");
add                94 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("trim");
add                95 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("typeof");
add                96 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("upper");
add                97 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("zeroblob");
add               100 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("date");
add               101 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("time");
add               102 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("datetime");
add               103 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("julianday");
add               104 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("strftime");
add               108 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("avg");
add               109 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("count");
add               110 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("group_concat");
add               111 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("sum");
add               112 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("total");
add               115 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("match");
add               116 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("snippet");
add               117 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("offsets");
add               118 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("optimize");
add               122 Source/modules/webdatabase/DatabaseAuthorizer.cpp     m_whitelistedFunctions.add("regexp");
add               231 Source/modules/webdatabase/DatabaseBackendBase.cpp         hashSet->add(this);
add               178 Source/modules/webdatabase/DatabaseContext.cpp     m_openSyncDatabases.add(&database, adoptPtr(new DatabaseCloser(database)));
add               180 Source/modules/webdatabase/DatabaseContext.cpp     m_openSyncDatabases.add(&database);
add               200 Source/modules/webdatabase/DatabaseSync.cpp     m_observers.add(&transaction, adoptPtr(new TransactionObserver(transaction)));
add               145 Source/modules/webdatabase/DatabaseThread.cpp     m_openDatabaseSet.add(database);
add               105 Source/modules/webdatabase/DatabaseTracker.cpp     databaseSet->add(database);
add                73 Source/modules/webdatabase/QuotaTracker.cpp     HashMap<String, SizeMap>::ValueType* it = m_databaseSizes.add(originIdentifier, SizeMap()).storedValue;
add                66 Source/modules/webdatabase/SQLTransactionCoordinator.cpp             info.activeReadTransactions.add(firstPendingTransaction);
add                85 Source/modules/webdatabase/SQLTransactionCoordinator.cpp         CoordinationInfo& info = m_coordinationInfoMap.add(dbIdentifier, CoordinationInfo()).storedValue->value;
add               351 Source/modules/websockets/WebSocket.cpp         if (!visited.add(protocols[i]).isNewEntry) {
add               119 Source/modules/websockets/WebSocketExtensionDispatcherTest.cpp     expected[0].parameters.add("max-channels", "4");
add               120 Source/modules/websockets/WebSocketExtensionDispatcherTest.cpp     expected[0].parameters.add("flow-control", String());
add               148 Source/modules/websockets/WebSocketExtensionParser.cpp                 extensionParameters.add(parameterToken, currentToken());
add               152 Source/modules/websockets/WebSocketExtensionParser.cpp             extensionParameters.add(parameterToken, String());
add               375 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "15");
add               380 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "8");
add               385 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "15");
add               386 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_no_context_takeover", String());
add               392 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("server_no_context_takeover", String());
add               398 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("server_max_window_bits", "15");
add               407 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("method", "deflate");
add               412 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("foo", "");
add               417 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("foo", "bar");
add               422 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "");
add               427 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "16");
add               432 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "7");
add               437 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "+15");
add               442 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "0x9");
add               447 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("client_max_window_bits", "08");
add               453 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("server_no_context_takeover", "foo");
add               459 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("server_max_window_bits", "7");
add               465 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("server_max_window_bits", "bar");
add               471 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("server_max_window_bits", "16");
add               477 Source/modules/websockets/WebSocketPerMessageDeflateTest.cpp         params.add("server_max_window_bits", "08");
add               104 Source/platform/LifecycleNotifier.h     m_observers.add(observer);
add                61 Source/platform/PODIntervalTreeTest.cpp     tree.add(PODInterval<float>(2, 4));
add                68 Source/platform/PODIntervalTreeTest.cpp     tree.add(PODInterval<float>(2, 4));
add                79 Source/platform/PODIntervalTreeTest.cpp     tree.add(PODInterval<float>(1, 2.5));
add                80 Source/platform/PODIntervalTreeTest.cpp     tree.add(PODInterval<float>(3.5, 5));
add                81 Source/platform/PODIntervalTreeTest.cpp     tree.add(PODInterval<float>(2, 4));
add               107 Source/platform/PODIntervalTreeTest.cpp     tree.add(interval1);
add               108 Source/platform/PODIntervalTreeTest.cpp     tree.add(interval2);
add               148 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(2, 4, data1));
add               158 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(2, 4, data1));
add               202 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(EndpointType1(1), EndpointType1(2)));
add               231 Source/platform/PODIntervalTreeTest.cpp         tree.add(interval);
add               252 Source/platform/PODIntervalTreeTest.cpp         bool add = false;
add               254 Source/platform/PODIntervalTreeTest.cpp             add = true;
add               256 Source/platform/PODIntervalTreeTest.cpp             add = false;
add               258 Source/platform/PODIntervalTreeTest.cpp             add = (nextRandom(2) == 1);
add               259 Source/platform/PODIntervalTreeTest.cpp         if (add) {
add               264 Source/platform/PODIntervalTreeTest.cpp             tree.add(removedElements[index]);
add               298 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(0, 5));
add               300 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(4, 5));
add               302 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(8, 9));
add               304 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(1, 4));
add               306 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(3, 5));
add               308 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(4, 12));
add               310 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(0, 2));
add               312 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(0, 2));
add               314 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(9, 13));
add               316 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(0, 1));
add               336 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(0, 5));
add               338 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(8, 9));
add               340 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(1, 4));
add               342 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(3, 5));
add               344 Source/platform/PODIntervalTreeTest.cpp     tree.add(tree.createInterval(4, 12));
add               174 Source/platform/PODRedBlackTree.h     void add(const T& data)
add                52 Source/platform/PODRedBlackTreeTest.cpp             tree.add(i);
add                61 Source/platform/PODRedBlackTreeTest.cpp     tree.add(5);
add                69 Source/platform/PODRedBlackTreeTest.cpp     tree.add(4);
add                72 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add                75 Source/platform/PODRedBlackTreeTest.cpp     tree.add(5);
add                85 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add                87 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add                89 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add                98 Source/platform/PODRedBlackTreeTest.cpp     tree.add(5);
add               109 Source/platform/PODRedBlackTreeTest.cpp     tree.add(4);
add               112 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add               115 Source/platform/PODRedBlackTreeTest.cpp     tree.add(5);
add               136 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add               138 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add               140 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3);
add               160 Source/platform/PODRedBlackTreeTest.cpp     tree.add(5113);
add               162 Source/platform/PODRedBlackTreeTest.cpp     tree.add(4517);
add               164 Source/platform/PODRedBlackTreeTest.cpp     tree.add(3373);
add               166 Source/platform/PODRedBlackTreeTest.cpp     tree.add(9307);
add               168 Source/platform/PODRedBlackTreeTest.cpp     tree.add(7077);
add               182 Source/platform/PODRedBlackTreeTest.cpp         tree.add(value);
add               197 Source/platform/PODRedBlackTreeTest.cpp         tree.add(value);
add                69 Source/platform/Prerender.cpp     platform->add(blink::WebPrerender(this));
add                73 Source/platform/Prerender.h     void add();
add               129 Source/platform/SharedBuffer.cpp     liveBuffers().add(buffer);
add                58 Source/platform/audio/HRTFDatabaseLoader.cpp     s_loaderMap->add(sampleRate, loader.get());
add               127 Source/platform/blob/BlobRegistry.cpp         originMap()->add(url.string(), origin);
add               105 Source/platform/exported/WebHTTPLoadInfo.cpp     HTTPHeaderMap::AddResult result = map->add(name, value);
add               226 Source/platform/fonts/Character.cpp             cjkIsolatedSymbols->add(cjkIsolatedSymbolsArray[i]);
add               160 Source/platform/fonts/Font.cpp         ? m_fontFallbackList->widthCache().add(run, std::numeric_limits<float>::quiet_NaN())
add               741 Source/platform/fonts/Font.cpp         markBuffer.add(glyphBuffer.glyphAt(i) ? markGlyph : spaceGlyph, markFontData, advance);
add               744 Source/platform/fonts/Font.cpp     markBuffer.add(glyphBuffer.glyphAt(glyphBuffer.size() - 1) ? markGlyph : spaceGlyph, markFontData, 0);
add               254 Source/platform/fonts/FontCache.cpp     gClients->add(client);
add                58 Source/platform/fonts/FontDataCache.cpp             m_inactiveFontData.add(newValue.first);
add                72 Source/platform/fonts/FontDataCache.cpp         m_inactiveFontData.add(result.get()->value.first);
add                94 Source/platform/fonts/FontDataCache.cpp         m_inactiveFontData.add(it->value.first);
add                97 Source/platform/fonts/GlyphBuffer.h     void add(Glyph glyph, const SimpleFontData* font, float width)
add               110 Source/platform/fonts/GlyphBuffer.h     void add(Glyph glyph, const SimpleFontData* font, GlyphBufferAdvance advance)
add               122 Source/platform/fonts/WidthCache.h     float* add(const TextRun& run, float entry)
add               148 Source/platform/fonts/WidthCache.h             SingleCharMap::AddResult addResult = m_singleCharMap.add(run[0], entry);
add               158 Source/platform/fonts/WidthCache.h             Map::AddResult addResult = m_map.add(smallStringKey, entry);
add               196 Source/platform/fonts/WidthIterator.cpp                     m_fallbackFonts->add(fontData);
add               200 Source/platform/fonts/WidthIterator.cpp                         m_fallbackFonts->add(uppercaseGlyphData.fontData);
add               224 Source/platform/fonts/WidthIterator.cpp                                     glyphBuffer->add(fontData->zeroWidthSpaceGlyph(), fontData, m_expansionPerOpportunity);
add               226 Source/platform/fonts/WidthIterator.cpp                                     glyphBuffer->add(fontData->spaceGlyph(), fontData, expansionAtThisOpportunity);
add               297 Source/platform/fonts/WidthIterator.cpp             glyphBuffer->add(glyph, fontData, (rtl ? oldWidth + lastRoundingWidth : width));
add                85 Source/platform/fonts/harfbuzz/HarfBuzzFace.cpp     HarfBuzzFaceCache::AddResult result = harfBuzzFaceCache()->add(m_uniqueID, nullptr);
add                92 Source/platform/fonts/harfbuzz/HarfBuzzFaceSkia.cpp     WTF::HashMap<uint32_t, uint16_t>::AddResult result = hbFontData->m_glyphCacheForFaceCacheEntry->add(unicode, 0);
add               945 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp                 glyphBuffer->add(glyphs[i], currentRun->fontData(), createGlyphBufferAdvance(glyphAdvanceX, glyphAdvanceY));
add               950 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp                 glyphBuffer->add(glyphs[i], currentRun->fontData(), createGlyphBufferAdvance(glyphAdvanceX, glyphAdvanceY));
add              1001 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp                 glyphBuffer->add(glyphToAdd, currentRun->fontData(), createGlyphBufferAdvance(glyphAdvanceX, 0));
add               454 Source/platform/fonts/mac/ComplexTextController.cpp             fallbackFonts->add(complexTextRun.fontData());
add               473 Source/platform/fonts/mac/ComplexTextController.cpp                 glyphBuffer->add(m_adjustedGlyphs[k], complexTextRun.fontData(), adjustedAdvance);
add                37 Source/platform/fonts/mac/SimpleFontDataCoreText.cpp     HashMap<unsigned, RetainPtr<CFDictionaryRef> >::AddResult addResult = m_CFStringAttributes.add(key, RetainPtr<CFDictionaryRef>());
add               259 Source/platform/fonts/skia/SimpleFontDataSkia.cpp     WTF::HashMap<String, bool>::AddResult addResult = m_combiningCharacterSequenceSupport->add(String(characters, length), false);
add               136 Source/platform/geometry/FloatPolygon.cpp         m_edgeTree.add(EdgeInterval(edge->minY(), edge->maxY(), edge));
add               407 Source/platform/graphics/GraphicsLayer.cpp     s_registeredLayerSet->add(layer->id());
add               103 Source/platform/graphics/GraphicsLayerTest.cpp     curve->add(WebFloatKeyframe(0.0, 0.0));
add               369 Source/platform/graphics/ImageDecodingStore.cpp     typename V::AddResult result = identifierMap->add(cacheEntry->generator(), typename V::MappedType());
add               370 Source/platform/graphics/ImageDecodingStore.cpp     result.storedValue->value.add(key);
add               371 Source/platform/graphics/ImageDecodingStore.cpp     cacheMap->add(key, cacheEntry);
add                21 Source/platform/graphics/gpu/Extensions3DUtil.cpp         set.add(substrings[i]);
add              1360 Source/platform/heap/Heap.cpp         stats->add(&temp);
add               413 Source/platform/heap/HeapTest.cpp                     weakMap->add(static_cast<unsigned>(i), IntWrapper::create(0));
add               414 Source/platform/heap/HeapTest.cpp                     weakMap2.add(static_cast<unsigned>(i), IntWrapper::create(0));
add               960 Source/platform/heap/HeapTest.cpp         ObserverMap::AddResult result = map.add(&target, nullptr);
add              1719 Source/platform/heap/HeapTest.cpp         map->add(one, one);
add              1730 Source/platform/heap/HeapTest.cpp         map->add(anotherOne, one);
add              1762 Source/platform/heap/HeapTest.cpp             map->add(iWrapper, iSquared);
add              1890 Source/platform/heap/HeapTest.cpp         m_hashSet.add(IntWrapper::create(5));
add              1891 Source/platform/heap/HeapTest.cpp         m_hashMap.add(this, IntWrapper::create(6));
add              1892 Source/platform/heap/HeapTest.cpp         m_listHashSet.add(IntWrapper::create(7));
add              2053 Source/platform/heap/HeapTest.cpp             memberMember2->add(one, two);
add              2054 Source/platform/heap/HeapTest.cpp             memberMember2->add(two, three);
add              2055 Source/platform/heap/HeapTest.cpp             memberMember2->add(three, four);
add              2056 Source/platform/heap/HeapTest.cpp             memberMember2->add(four, one);
add              2057 Source/platform/heap/HeapTest.cpp             primitiveMember->add(1, two);
add              2058 Source/platform/heap/HeapTest.cpp             primitiveMember->add(2, three);
add              2059 Source/platform/heap/HeapTest.cpp             primitiveMember->add(3, four);
add              2060 Source/platform/heap/HeapTest.cpp             primitiveMember->add(4, one);
add              2061 Source/platform/heap/HeapTest.cpp             memberPrimitive->add(one, 2);
add              2062 Source/platform/heap/HeapTest.cpp             memberPrimitive->add(two, 3);
add              2063 Source/platform/heap/HeapTest.cpp             memberPrimitive->add(three, 4);
add              2064 Source/platform/heap/HeapTest.cpp             memberPrimitive->add(four, 1);
add              2065 Source/platform/heap/HeapTest.cpp             set2->add(one);
add              2066 Source/platform/heap/HeapTest.cpp             set2->add(two);
add              2067 Source/platform/heap/HeapTest.cpp             set2->add(three);
add              2068 Source/platform/heap/HeapTest.cpp             set2->add(four);
add              2069 Source/platform/heap/HeapTest.cpp             set->add(oneB);
add              2255 Source/platform/heap/HeapTest.cpp         weakStrong->add(IntWrapper::create(1), two);
add              2256 Source/platform/heap/HeapTest.cpp         strongWeak->add(two, IntWrapper::create(1));
add              2257 Source/platform/heap/HeapTest.cpp         weakWeak->add(two, IntWrapper::create(42));
add              2258 Source/platform/heap/HeapTest.cpp         weakWeak->add(IntWrapper::create(42), two);
add              2259 Source/platform/heap/HeapTest.cpp         weakSet->add(IntWrapper::create(0));
add              2260 Source/platform/heap/HeapTest.cpp         weakSet->add(two);
add              2261 Source/platform/heap/HeapTest.cpp         weakSet->add(keepNumbersAlive[0]);
add              2262 Source/platform/heap/HeapTest.cpp         weakSet->add(keepNumbersAlive[1]);
add              2350 Source/platform/heap/HeapTest.cpp         stackMap.add(IntWrapper::create(42), ThingWithDestructor(1729));
add              2351 Source/platform/heap/HeapTest.cpp         stackMap.add(luck, ThingWithDestructor(8128));
add              2352 Source/platform/heap/HeapTest.cpp         stackRefMap.add(IntWrapper::create(42), RefCountedAndGarbageCollected::create());
add              2353 Source/platform/heap/HeapTest.cpp         stackRefMap.add(luck, RefCountedAndGarbageCollected::create());
add              2373 Source/platform/heap/HeapTest.cpp     map->add(IntWrapper::create(42), ThingWithDestructor(1729));
add              2374 Source/platform/heap/HeapTest.cpp     map->add(luck, ThingWithDestructor(8128));
add              2375 Source/platform/heap/HeapTest.cpp     refMap->add(IntWrapper::create(42), RefCountedAndGarbageCollected::create());
add              2376 Source/platform/heap/HeapTest.cpp     refMap->add(luck, RefCountedAndGarbageCollected::create());
add              2482 Source/platform/heap/HeapTest.cpp     weakStrong->add(PairWeakStrong(IntWrapper::create(1), &*two));
add              2483 Source/platform/heap/HeapTest.cpp     weakStrong->add(PairWeakStrong(&*two, &*two));
add              2484 Source/platform/heap/HeapTest.cpp     strongWeak->add(PairStrongWeak(&*two, IntWrapper::create(1)));
add              2485 Source/platform/heap/HeapTest.cpp     strongWeak->add(PairStrongWeak(&*two, &*two));
add              2486 Source/platform/heap/HeapTest.cpp     weakUnwrapped->add(PairWeakUnwrapped(IntWrapper::create(1), 2));
add              2487 Source/platform/heap/HeapTest.cpp     weakUnwrapped->add(PairWeakUnwrapped(&*two, 2));
add              2488 Source/platform/heap/HeapTest.cpp     unwrappedWeak->add(PairUnwrappedWeak(2, IntWrapper::create(1)));
add              2489 Source/platform/heap/HeapTest.cpp     unwrappedWeak->add(PairUnwrappedWeak(2, &*two));
add              2541 Source/platform/heap/HeapTest.cpp                 weakStrong->add(wrapped, wrapped2);
add              2542 Source/platform/heap/HeapTest.cpp                 strongWeak->add(wrapped2, wrapped);
add              2543 Source/platform/heap/HeapTest.cpp                 weakWeak->add(wrapped, wrapped2);
add              2544 Source/platform/heap/HeapTest.cpp                 weakSet->add(wrapped);
add              2638 Source/platform/heap/HeapTest.cpp                         weakStrong->add(wrapped, wrapped);
add              2639 Source/platform/heap/HeapTest.cpp                         strongWeak->add(wrapped, wrapped);
add              2640 Source/platform/heap/HeapTest.cpp                         weakWeak->add(wrapped, wrapped);
add              2641 Source/platform/heap/HeapTest.cpp                         weakSet->add(wrapped);
add              2940 Source/platform/heap/HeapTest.cpp         pSet.add(four);
add              2941 Source/platform/heap/HeapTest.cpp         pMap.add(five, six);
add              2973 Source/platform/heap/HeapTest.cpp     map->add(key, IntVector());
add              3007 Source/platform/heap/HeapTest.cpp     weakMap.add(UseMixin::create());
add              3021 Source/platform/heap/HeapTest.cpp     map->add(key, IntSet());
add              3026 Source/platform/heap/HeapTest.cpp     it->value.add(IntWrapper::create(42));
add              3100 Source/platform/heap/HeapTest.cpp     set.add(new int(42));
add              3101 Source/platform/heap/HeapTest.cpp     set.add(new int(42));
add              3229 Source/platform/heap/HeapTest.cpp     map.add(hasDestructor, adoptPtr(hasDestructor));
add               278 Source/platform/heap/ThreadState.cpp     attachedThreads().add(mainThreadState());
add               290 Source/platform/heap/ThreadState.cpp     attachedThreads().add(state);
add               172 Source/platform/heap/ThreadState.h     void add(HeapStats* other)
add               108 Source/platform/mhtml/MHTMLParser.cpp             keyValuePairs.add(key, value.toString().stripWhiteSpace());
add                76 Source/platform/network/HTTPHeaderMap.cpp     return HashMap<AtomicString, AtomicString, CaseFoldingHash>::add(name, value);
add               112 Source/platform/network/HTTPHeaderMap.cpp     return HashMap<AtomicString, AtomicString, CaseFoldingHash>::add<CaseFoldingCStringTranslator>(name, value);
add                56 Source/platform/network/HTTPHeaderMap.h     AddResult add(const AtomicString& name, const AtomicString& value);
add                61 Source/platform/network/HTTPHeaderMap.h     AddResult add(const char* name, const AtomicString& value);
add                91 Source/platform/network/HTTPRequest.cpp         m_headerFields.add(name, value);
add                61 Source/platform/network/HTTPRequest.h     void addHeaderField(const AtomicString& name, const AtomicString& value) { m_headerFields.add(name, value); }
add                62 Source/platform/network/HTTPRequest.h     void addHeaderField(const char* name, const AtomicString& value) { m_headerFields.add(name, value); }
add               243 Source/platform/network/ResourceRequest.cpp     HTTPHeaderMap::AddResult result = m_httpHeaderFields.add(name, value);
add               312 Source/platform/network/ResourceResponse.cpp     HTTPHeaderMap::AddResult result = m_httpHeaderFields.add(name, value);
add                55 Source/platform/network/WebSocketHandshakeRequest.cpp     HTTPHeaderMap::AddResult result = map->add(name, value);
add                59 Source/platform/network/WebSocketHandshakeRequest.h     void addHeaderField(const AtomicString& name, const AtomicString& value) { m_headerFields.add(name, value); }
add                60 Source/platform/network/WebSocketHandshakeRequest.h     void addHeaderField(const char* name, const char* value) { m_headerFields.add(name, value); }
add                63 Source/platform/scroll/ScrollView.cpp     m_children.add(prpChild);
add              1076 Source/platform/text/BidiResolver.h     m_midpointStateForIsolatedRun.add(run, midpoint);
add                77 Source/platform/text/LocaleWin.cpp     map.add("ar", 0x0001);
add                78 Source/platform/text/LocaleWin.cpp     map.add("ar-eg", 0x0C01);
add                79 Source/platform/text/LocaleWin.cpp     map.add("de", 0x0007);
add                80 Source/platform/text/LocaleWin.cpp     map.add("de-de", 0x0407);
add                81 Source/platform/text/LocaleWin.cpp     map.add("el", 0x0008);
add                82 Source/platform/text/LocaleWin.cpp     map.add("el-gr", 0x0408);
add                83 Source/platform/text/LocaleWin.cpp     map.add("en", 0x0009);
add                84 Source/platform/text/LocaleWin.cpp     map.add("en-gb", 0x0809);
add                85 Source/platform/text/LocaleWin.cpp     map.add("en-us", 0x0409);
add                86 Source/platform/text/LocaleWin.cpp     map.add("fr", 0x000C);
add                87 Source/platform/text/LocaleWin.cpp     map.add("fr-fr", 0x040C);
add                88 Source/platform/text/LocaleWin.cpp     map.add("he", 0x000D);
add                89 Source/platform/text/LocaleWin.cpp     map.add("he-il", 0x040D);
add                90 Source/platform/text/LocaleWin.cpp     map.add("hi", 0x0039);
add                91 Source/platform/text/LocaleWin.cpp     map.add("hi-in", 0x0439);
add                92 Source/platform/text/LocaleWin.cpp     map.add("ja", 0x0011);
add                93 Source/platform/text/LocaleWin.cpp     map.add("ja-jp", 0x0411);
add                94 Source/platform/text/LocaleWin.cpp     map.add("ko", 0x0012);
add                95 Source/platform/text/LocaleWin.cpp     map.add("ko-kr", 0x0412);
add                96 Source/platform/text/LocaleWin.cpp     map.add("ru", 0x0019);
add                97 Source/platform/text/LocaleWin.cpp     map.add("ru-ru", 0x0419);
add                98 Source/platform/text/LocaleWin.cpp     map.add("zh-cn", 0x0804);
add                99 Source/platform/text/LocaleWin.cpp     map.add("zh-tw", 0x0404);
add                87 Source/platform/transforms/TransformOperations.h     TransformOperations add(const TransformOperations& addend) const;
add                39 Source/platform/weborigin/SchemeRegistry.cpp         localSchemes.add("file");
add                55 Source/platform/weborigin/SchemeRegistry.cpp         secureSchemes.add("https");
add                56 Source/platform/weborigin/SchemeRegistry.cpp         secureSchemes.add("about");
add                57 Source/platform/weborigin/SchemeRegistry.cpp         secureSchemes.add("data");
add                58 Source/platform/weborigin/SchemeRegistry.cpp         secureSchemes.add("wss");
add                69 Source/platform/weborigin/SchemeRegistry.cpp         schemesWithUniqueOrigins.add("about");
add                70 Source/platform/weborigin/SchemeRegistry.cpp         schemesWithUniqueOrigins.add("javascript");
add                73 Source/platform/weborigin/SchemeRegistry.cpp         schemesWithUniqueOrigins.add("data");
add                84 Source/platform/weborigin/SchemeRegistry.cpp         emptyDocumentSchemes.add("about");
add               100 Source/platform/weborigin/SchemeRegistry.cpp         canDisplayOnlyIfCanRequestSchemes.add("blob");
add               101 Source/platform/weborigin/SchemeRegistry.cpp         canDisplayOnlyIfCanRequestSchemes.add("filesystem");
add               115 Source/platform/weborigin/SchemeRegistry.cpp     localURLSchemes().add(scheme);
add               136 Source/platform/weborigin/SchemeRegistry.cpp         CORSEnabledSchemes.add("http");
add               137 Source/platform/weborigin/SchemeRegistry.cpp         CORSEnabledSchemes.add("https");
add               158 Source/platform/weborigin/SchemeRegistry.cpp     schemesWithUniqueOrigins().add(scheme);
add               170 Source/platform/weborigin/SchemeRegistry.cpp     displayIsolatedURLSchemes().add(scheme);
add               182 Source/platform/weborigin/SchemeRegistry.cpp     secureSchemes().add(scheme);
add               194 Source/platform/weborigin/SchemeRegistry.cpp     emptyDocumentSchemes().add(scheme);
add               210 Source/platform/weborigin/SchemeRegistry.cpp         schemesForbiddenFromDomainRelaxation().add(scheme);
add               231 Source/platform/weborigin/SchemeRegistry.cpp     canDisplayOnlyIfCanRequestSchemes().add(scheme);
add               236 Source/platform/weborigin/SchemeRegistry.cpp     notAllowingJavascriptURLsSchemes().add(scheme);
add               248 Source/platform/weborigin/SchemeRegistry.cpp     CORSEnabledSchemes().add(scheme);
add               260 Source/platform/weborigin/SchemeRegistry.cpp     ContentSecurityPolicyBypassingSchemes().add(scheme);
add               121 Source/platform/weborigin/SecurityPolicy.cpp     OriginAccessMap::AddResult result = originAccessMap().add(sourceString, nullptr);
add               101 Source/web/AssociatedURLLoader.cpp             m_blockedHeaders.add(name);
add               113 Source/web/AssociatedURLLoader.cpp         m_blockedHeaders.add("access-control-expose-headers");
add               287 Source/web/LinkHighlight.cpp     curve->add(WebFloatKeyframe(0, startOpacity));
add               291 Source/web/LinkHighlight.cpp         curve->add(WebFloatKeyframe(extraDurationRequired, startOpacity));
add               293 Source/web/LinkHighlight.cpp     curve->add(WebFloatKeyframe(fadeDuration + extraDurationRequired, blink::layoutTestMode() ? startOpacity : 0));
add                56 Source/web/PageOverlayList.h     bool add(WebPageOverlay*, int /* zOrder */);
add               135 Source/web/WebDevToolsAgentImpl.cpp             m_frozenViews.add(view);
add               438 Source/web/WebDevToolsAgentImpl.cpp                 set.add(m_pointers[i]);
add               612 Source/web/WebFrameImpl.cpp         openerImpl->m_openedFrames.add(this);
add                50 Source/web/WebGeolocationPermissionRequestManager.cpp     m_private->m_geolocationIdMap.add(geolocation, id);
add                51 Source/web/WebGeolocationPermissionRequestManager.cpp     m_private->m_idGeolocationMap.add(id, geolocation);
add                58 Source/web/WebHistoryItem.cpp                 results.add(element.m_filename);
add                64 Source/web/WebHistoryItem.cpp         results.add(filePaths[i]);
add              3416 Source/web/WebViewImpl.cpp     InjectedStyleSheets::instance().add(sourceCode, patterns, static_cast<WebCore::StyleInjectionTarget>(injectIn));
add              3534 Source/web/WebViewImpl.cpp     m_pageOverlays->add(overlay, zOrder);
add                48 Source/wtf/BloomFilter.h     void add(unsigned hash);
add                59 Source/wtf/BloomFilter.h     void add(const AtomicString& string) { add(string.impl()->existingHash()); }
add                60 Source/wtf/BloomFilter.h     void add(const String& string) { add(string.impl()->hash()); }
add                83 Source/wtf/BloomFilter.h inline void BloomFilter<keyBits>::add(unsigned hash)
add               242 Source/wtf/CheckedArithmetic.h     static inline bool add(LHS lhs, RHS rhs, ResultType& result) WARN_UNUSED_RETURN
add               304 Source/wtf/CheckedArithmetic.h     static inline bool add(LHS lhs, RHS rhs, ResultType& result) WARN_UNUSED_RETURN
add               339 Source/wtf/CheckedArithmetic.h     static inline bool add(int64_t lhs, int64_t rhs, ResultType& result)
add               379 Source/wtf/CheckedArithmetic.h     static inline bool add(int64_t lhs, int64_t rhs, ResultType& result)
add               381 Source/wtf/CheckedArithmetic.h         return ArithmeticOperations<int, unsigned, ResultType>::add(rhs, lhs, result);
add               402 Source/wtf/CheckedArithmetic.h     return ArithmeticOperations<U, V, R>::add(lhs, rhs, result);
add                63 Source/wtf/HashCountedSet.h         AddResult add(const ValueType&);
add               154 Source/wtf/HashCountedSet.h     inline typename HashCountedSet<Value, HashFunctions, Traits>::AddResult HashCountedSet<Value, HashFunctions, Traits>::add(const ValueType &value)
add               156 Source/wtf/HashCountedSet.h         AddResult result = m_impl.add(value, 0);
add               137 Source/wtf/HashMap.h         AddResult add(KeyPeekInType, MappedPassInType);
add               160 Source/wtf/HashMap.h         template<typename HashTranslator, typename T> AddResult add(const T&, MappedPassInType);
add               369 Source/wtf/HashMap.h         return m_impl.template add<HashMapTranslator<ValueTraits, HashFunctions> >(key, mapped);
add               387 Source/wtf/HashMap.h     HashMap<T, U, V, W, X, Y>::add(const TYPE& key, MappedPassInType value)
add               394 Source/wtf/HashMap.h     HashMap<T, U, V, W, X, Y>::add(KeyPeekInType key, MappedPassInType mapped)
add                42 Source/wtf/HashMapTest.cpp     map.add(1, 2);
add                79 Source/wtf/HashMapTest.cpp     map.add(clobberKey, 1);
add                80 Source/wtf/HashMapTest.cpp     map.add(zeroKey, 2);
add                81 Source/wtf/HashMapTest.cpp     map.add(negativeZeroKey, 3);
add               110 Source/wtf/HashMapTest.cpp     map.add(1, adoptPtr(new DestructCounter(1, &destructNumber)));
add               111 Source/wtf/HashMapTest.cpp     map.add(2, adoptPtr(new DestructCounter(2, &destructNumber)));
add               165 Source/wtf/HashMapTest.cpp     map.add(ptr, 1);
add               102 Source/wtf/HashSet.h         AddResult add(ValuePeekInType);
add               110 Source/wtf/HashSet.h         template<typename HashTranslator, typename T> AddResult add(const T&);
add               202 Source/wtf/HashSet.h     inline typename HashSet<T, U, V, W>::AddResult HashSet<T, U, V, W>::add(ValuePeekInType value)
add               204 Source/wtf/HashSet.h         return m_impl.add(value);
add               210 Source/wtf/HashSet.h     HashSet<Value, HashFunctions, Traits, Allocator>::add(const T& value)
add                49 Source/wtf/HashSetTest.cpp         testSet.add(i);
add                56 Source/wtf/HashSetTest.cpp         testSet.add(i);
add                61 Source/wtf/HashSetTest.cpp     testSet.add(initialCapacity);
add               347 Source/wtf/HashTable.h         AddResult add(ValuePeekInType value)
add               349 Source/wtf/HashTable.h             return add<IdentityTranslatorType>(Extractor::extract(value), value);
add               355 Source/wtf/HashTable.h         template<typename HashTranslator, typename T, typename Extra> AddResult add(const T& key, const Extra&);
add               712 Source/wtf/HashTable.h     typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::AddResult HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::add(const T& key, const Extra& extra)
add              1045 Source/wtf/HashTable.h             add(*it);
add                97 Source/wtf/InstanceCounter.cpp     HashMap<String, int>::AddResult result = m_counterMap.add(instanceName, 1);
add               137 Source/wtf/ListHashSet.h         AddResult add(ValuePeekInType);
add               548 Source/wtf/ListHashSet.h             add(*it);
add               756 Source/wtf/ListHashSet.h     typename ListHashSet<T, inlineCapacity, U>::AddResult ListHashSet<T, inlineCapacity, U>::add(ValuePeekInType value)
add               759 Source/wtf/ListHashSet.h         typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, m_allocator.get());
add               768 Source/wtf/ListHashSet.h         return makeIterator(add(value).storedValue);
add               774 Source/wtf/ListHashSet.h         typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, m_allocator.get());
add               786 Source/wtf/ListHashSet.h         typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, m_allocator.get());
add               798 Source/wtf/ListHashSet.h         typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(newValue, m_allocator.get());
add                39 Source/wtf/ListHashSetTest.cpp     list.add(1);
add                40 Source/wtf/ListHashSetTest.cpp     list.add(2);
add                41 Source/wtf/ListHashSetTest.cpp     list.add(3);
add                60 Source/wtf/ListHashSetTest.cpp     result = list.add(2);
add                82 Source/wtf/ListHashSetTest.cpp     ListHashSet<int>::AddResult result = list.add(1);
add                88 Source/wtf/ListHashSetTest.cpp     list.add(2);
add                89 Source/wtf/ListHashSetTest.cpp     list.add(3);
add               121 Source/wtf/ListHashSetTest.cpp     result = list.add(2);
add               143 Source/wtf/ListHashSetTest.cpp     ListHashSet<int>::AddResult result = list.add(1);
add               149 Source/wtf/ListHashSetTest.cpp     list.add(2);
add               150 Source/wtf/ListHashSetTest.cpp     list.add(3);
add               202 Source/wtf/ListHashSetTest.cpp     list.add(ptr);
add                55 Source/wtf/RefCountedLeakCounter.cpp     leakMessageSuppressionReasons->add(reason);
add               162 Source/wtf/ThreadingPthreads.cpp     threadMap().add(identifierCount, adoptPtr(new PthreadState(pthreadHandle)));
add               182 Source/wtf/ThreadingWin.cpp     threadMap().add(threadID, threadHandle);
add               206 Source/wtf/VectorTest.cpp         constructedWrappedInts.add(this);
add               213 Source/wtf/VectorTest.cpp         constructedWrappedInts.add(this);
add                55 Source/wtf/text/AtomicString.cpp         StringImpl* result = *m_table.add(string).storedValue;
add               116 Source/wtf/text/AtomicString.cpp     HashSet<StringImpl*>::AddResult addResult = atomicStrings().add<HashTranslator>(value);
add               356 Source/wtf/text/AtomicString.cpp             return add(baseString);
add                38 Source/wtf/text/AtomicString.h     AtomicString(const LChar* s) : m_string(add(s)) { }
add                39 Source/wtf/text/AtomicString.h     AtomicString(const char* s) : m_string(add(s)) { }
add                40 Source/wtf/text/AtomicString.h     AtomicString(const LChar* s, unsigned length) : m_string(add(s, length)) { }
add                41 Source/wtf/text/AtomicString.h     AtomicString(const UChar* s, unsigned length) : m_string(add(s, length)) { }
add                42 Source/wtf/text/AtomicString.h     AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { }
add                43 Source/wtf/text/AtomicString.h     AtomicString(const UChar* s) : m_string(add(s)) { }
add                47 Source/wtf/text/AtomicString.h         : m_string(add(characters.data(), characters.size()))
add                53 Source/wtf/text/AtomicString.h     explicit AtomicString(StringImpl* impl) : m_string(add(impl)) { }
add                54 Source/wtf/text/AtomicString.h     explicit AtomicString(const String& s) : m_string(add(s.impl())) { }
add                56 Source/wtf/text/AtomicString.h     AtomicString(StringImpl* baseString, unsigned start, unsigned length) : m_string(add(baseString, start, length)) { }
add               152 Source/wtf/text/AtomicString.h     AtomicString(CFStringRef s) :  m_string(add(s)) { }
add               155 Source/wtf/text/AtomicString.h     AtomicString(NSString* s) : m_string(add((CFStringRef)s)) { }
add               174 Source/wtf/text/AtomicString.h     static PassRefPtr<StringImpl> add(const LChar*);
add               175 Source/wtf/text/AtomicString.h     ALWAYS_INLINE static PassRefPtr<StringImpl> add(const char* s) { return add(reinterpret_cast<const LChar*>(s)); };
add               176 Source/wtf/text/AtomicString.h     static PassRefPtr<StringImpl> add(const LChar*, unsigned length);
add               177 Source/wtf/text/AtomicString.h     static PassRefPtr<StringImpl> add(const UChar*, unsigned length);
add               178 Source/wtf/text/AtomicString.h     ALWAYS_INLINE static PassRefPtr<StringImpl> add(const char* s, unsigned length) { return add(reinterpret_cast<const LChar*>(s), length); };
add               179 Source/wtf/text/AtomicString.h     static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
add               180 Source/wtf/text/AtomicString.h     static PassRefPtr<StringImpl> add(const UChar*);
add               181 Source/wtf/text/AtomicString.h     static PassRefPtr<StringImpl> add(StringImpl*, unsigned offset, unsigned length);
add               182 Source/wtf/text/AtomicString.h     ALWAYS_INLINE static PassRefPtr<StringImpl> add(StringImpl* r)
add               191 Source/wtf/text/AtomicString.h     static PassRefPtr<StringImpl> add(CFStringRef);
add                44 Source/wtf/text/AtomicStringCF.cpp         return add(ptr, length);
add                47 Source/wtf/text/AtomicStringCF.cpp         return add(reinterpret_cast<const UChar*>(ptr), length);
add                51 Source/wtf/text/AtomicStringCF.cpp     return add(reinterpret_cast<const UChar*>(ucharBuffer.data()), length);
add                79 Source/wtf/text/StringImpl.cpp     liveStrings().add(string);
add               197 Source/wtf/text/StringImpl.cpp         value->add(string);
add               394 Source/wtf/text/StringImpl.cpp     staticStrings().add(hash, impl);
add               170 Source/wtf/text/TextEncodingRegistry.cpp     textEncodingNameMap->add(alias, atomicName);
add               177 Source/wtf/text/TextEncodingRegistry.cpp     textCodecMap->add(atomicName, TextCodecFactory(function, additionalData));
add               230 Source/wtf/text/TextEncodingRegistry.cpp         set->add(atomicName);
add                46 public/platform/WebFilterAnimationCurve.h     virtual void add(const WebFilterKeyframe&, TimingFunctionType = TimingFunctionTypeEase) = 0;
add                49 public/platform/WebFilterAnimationCurve.h     virtual void add(const WebFilterKeyframe&, double x1, double y1, double x2, double y2) = 0;
add                41 public/platform/WebFloatAnimationCurve.h     virtual void add(const WebFloatKeyframe&) = 0;
add                42 public/platform/WebFloatAnimationCurve.h     virtual void add(const WebFloatKeyframe&, TimingFunctionType) = 0;
add                45 public/platform/WebFloatAnimationCurve.h     virtual void add(const WebFloatKeyframe&, double x1, double y1, double x2, double y2) = 0;
add                47 public/platform/WebPrerenderingSupport.h     virtual void add(const WebPrerender&) = 0;
add                41 public/platform/WebTransformAnimationCurve.h     virtual void add(const WebTransformKeyframe&) = 0;
add                42 public/platform/WebTransformAnimationCurve.h     virtual void add(const WebTransformKeyframe&, TimingFunctionType) = 0;
add                45 public/platform/WebTransformAnimationCurve.h     virtual void add(const WebTransformKeyframe&, double x1, double y1, double x2, double y2) = 0;
add                48 public/web/WebGeolocationPermissionRequestManager.h     BLINK_EXPORT int add(const blink::WebGeolocationPermissionRequest&);