Attribute         115 Source/bindings/templates/attributes.cpp {# Attribute is limited to only known values: check that the attribute value is
Attribute         409 Source/core/css/SelectorChecker.cpp static bool attributeValueMatches(const Attribute& attributeItem, CSSSelector::Match match, const AtomicString& selectorValue, bool caseSensitive)
Attribute         488 Source/core/css/SelectorChecker.cpp         const Attribute& attributeItem = element.attributeItem(i);
Attribute         171 Source/core/css/SelectorChecker.h         const Attribute& attribute = element.attributeItem(i);
Attribute         184 Source/core/dom/Attr.cpp Attribute& Attr::elementAttribute()
Attribute          86 Source/core/dom/Attr.h     Attribute& elementAttribute();
Attribute          35 Source/core/dom/Attribute.h class Attribute {
Attribute          37 Source/core/dom/Attribute.h     Attribute(const QualifiedName& name, const AtomicString& value)
Attribute          67 Source/core/dom/Attribute.h     Attribute();
Attribute          75 Source/core/dom/Attribute.h inline bool Attribute::matches(const QualifiedName& qualifiedName) const
Attribute         160 Source/core/dom/DatasetDOMStringMap.cpp         const Attribute& attribute = m_element->attributeItem(i);
Attribute         173 Source/core/dom/DatasetDOMStringMap.cpp         const Attribute& attribute = m_element->attributeItem(i);
Attribute         188 Source/core/dom/DatasetDOMStringMap.cpp         const Attribute& attribute = m_element->attributeItem(i);
Attribute         291 Source/core/dom/Element.cpp     const Attribute& attribute = elementData()->attributeItem(index);
Attribute         307 Source/core/dom/Element.cpp     const Attribute& attribute = elementData()->attributeItem(index);
Attribute         443 Source/core/dom/Element.cpp     if (const Attribute* attribute = getAttributeItem(name))
Attribute         895 Source/core/dom/Element.cpp     if (const Attribute* attribute = elementData()->getAttributeItem(localName, shouldIgnoreAttributeCase()))
Attribute         946 Source/core/dom/Element.cpp     const Attribute& existingAttribute = attributeItem(index);
Attribute        1125 Source/core/dom/Element.cpp static inline bool isEventHandlerAttribute(const Attribute& attribute)
Attribute        1130 Source/core/dom/Element.cpp bool Element::isJavaScriptURLAttribute(const Attribute& attribute) const
Attribute        1135 Source/core/dom/Element.cpp void Element::stripScriptingAttributes(Vector<Attribute>& attributeVector) const
Attribute        1152 Source/core/dom/Element.cpp void Element::parserSetAttributes(const Vector<Attribute>& attributeVector)
Attribute        1231 Source/core/dom/Element.cpp             const Attribute& attr = attributeItem(i);
Attribute        2085 Source/core/dom/Element.cpp     const Attribute* attribute = elementData()->getAttributeItem(localName, shouldIgnoreAttributeCase());
Attribute        2097 Source/core/dom/Element.cpp     const Attribute* attribute = elementData()->getAttributeItem(qName);
Attribute        2518 Source/core/dom/Element.cpp                 if (const Attribute* attribute = elementData->getAttributeItem(XMLNames::langAttr))
Attribute        2520 Source/core/dom/Element.cpp                 else if (const Attribute* attribute = elementData->getAttributeItem(HTMLNames::langAttr))
Attribute        2647 Source/core/dom/Element.cpp         if (const Attribute* attribute = getAttributeItem(name))
Attribute        2658 Source/core/dom/Element.cpp         if (const Attribute* attribute = getAttributeItem(name))
Attribute        3050 Source/core/dom/Element.cpp         const Attribute& attribute = attributeItem(i);
Attribute        3118 Source/core/dom/Element.cpp         const Attribute& attribute = m_elementData->attributeItem(i);
Attribute          43 Source/core/dom/Element.h class Attribute;
Attribute         173 Source/core/dom/Element.h     const Attribute& attributeItem(unsigned index) const;
Attribute         174 Source/core/dom/Element.h     const Attribute* getAttributeItem(const QualifiedName&) const;
Attribute         298 Source/core/dom/Element.h     void parserSetAttributes(const Vector<Attribute>&);
Attribute         301 Source/core/dom/Element.h     void stripScriptingAttributes(Vector<Attribute>&) const;
Attribute         361 Source/core/dom/Element.h     virtual bool isURLAttribute(const Attribute&) const { return false; }
Attribute         362 Source/core/dom/Element.h     virtual bool isHTMLContentAttribute(const Attribute&) const { return false; }
Attribute         655 Source/core/dom/Element.h     bool isJavaScriptURLAttribute(const Attribute&) const;
Attribute         714 Source/core/dom/Element.h         if (const Attribute* attribute = getAttributeItem(name))
Attribute         782 Source/core/dom/Element.h inline const Attribute& Element::attributeItem(unsigned index) const
Attribute         788 Source/core/dom/Element.h inline const Attribute* Element::getAttributeItem(const QualifiedName& name) const
Attribute          50 Source/core/dom/ElementData.cpp     return sizeof(ShareableElementData) + sizeof(Attribute) * count;
Attribute         108 Source/core/dom/ElementData.cpp         const Attribute& attribute = attributeItem(i);
Attribute         109 Source/core/dom/ElementData.cpp         const Attribute* otherAttr = other->getAttributeItem(attribute.name());
Attribute         133 Source/core/dom/ElementData.cpp         const Attribute& attribute = attributeItem(i);
Attribute         150 Source/core/dom/ElementData.cpp ShareableElementData::ShareableElementData(const Vector<Attribute>& attributes)
Attribute         154 Source/core/dom/ElementData.cpp         new (&m_attributeArray[i]) Attribute(attributes[i]);
Attribute         160 Source/core/dom/ElementData.cpp         m_attributeArray[i].~Attribute();
Attribute         173 Source/core/dom/ElementData.cpp         new (&m_attributeArray[i]) Attribute(other.m_attributeVector.at(i));
Attribute         176 Source/core/dom/ElementData.cpp PassRefPtr<ShareableElementData> ShareableElementData::createWithAttributes(const Vector<Attribute>& attributes)
Attribute         218 Source/core/dom/ElementData.cpp Attribute* UniqueElementData::getAttributeItem(const QualifiedName& name)
Attribute          69 Source/core/dom/ElementData.h     const Attribute& attributeItem(unsigned index) const;
Attribute          70 Source/core/dom/ElementData.h     const Attribute* getAttributeItem(const QualifiedName&) const;
Attribute         106 Source/core/dom/ElementData.h     const Attribute* attributeBase() const;
Attribute         107 Source/core/dom/ElementData.h     const Attribute* getAttributeItem(const AtomicString& name, bool shouldIgnoreAttributeCase) const;
Attribute         124 Source/core/dom/ElementData.h     static PassRefPtr<ShareableElementData> createWithAttributes(const Vector<Attribute>&);
Attribute         126 Source/core/dom/ElementData.h     explicit ShareableElementData(const Vector<Attribute>&);
Attribute         130 Source/core/dom/ElementData.h     Attribute m_attributeArray[0];
Attribute         152 Source/core/dom/ElementData.h     Attribute& attributeItem(unsigned index);
Attribute         153 Source/core/dom/ElementData.h     Attribute* getAttributeItem(const QualifiedName&);
Attribute         164 Source/core/dom/ElementData.h     Vector<Attribute, 4> m_attributeVector;
Attribute         188 Source/core/dom/ElementData.h inline const Attribute* ElementData::getAttributeItem(const AtomicString& name, bool shouldIgnoreAttributeCase) const
Attribute         196 Source/core/dom/ElementData.h inline const Attribute* ElementData::attributeBase() const
Attribute         205 Source/core/dom/ElementData.h     const Attribute* begin = attributeBase();
Attribute         209 Source/core/dom/ElementData.h         const Attribute& attribute = begin[i];
Attribute         225 Source/core/dom/ElementData.h     const Attribute* begin = attributeBase();
Attribute         227 Source/core/dom/ElementData.h         const Attribute& attribute = begin[i];
Attribute         243 Source/core/dom/ElementData.h inline const Attribute* ElementData::getAttributeItem(const QualifiedName& name) const
Attribute         245 Source/core/dom/ElementData.h     const Attribute* begin = attributeBase();
Attribute         248 Source/core/dom/ElementData.h         const Attribute& attribute = begin[i];
Attribute         255 Source/core/dom/ElementData.h inline const Attribute& ElementData::attributeItem(unsigned index) const
Attribute         264 Source/core/dom/ElementData.h     m_attributeVector.append(Attribute(attributeName, value));
Attribute         272 Source/core/dom/ElementData.h inline Attribute& UniqueElementData::attributeItem(unsigned index)
Attribute          34 Source/core/dom/ElementDataCache.cpp inline unsigned attributeHash(const Vector<Attribute>& attributes)
Attribute          36 Source/core/dom/ElementDataCache.cpp     return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeof(Attribute));
Attribute          39 Source/core/dom/ElementDataCache.cpp inline bool hasSameAttributes(const Vector<Attribute>& attributes, ShareableElementData& elementData)
Attribute          43 Source/core/dom/ElementDataCache.cpp     return !memcmp(attributes.data(), elementData.m_attributeArray, attributes.size() * sizeof(Attribute));
Attribute          46 Source/core/dom/ElementDataCache.cpp PassRefPtr<ShareableElementData> ElementDataCache::cachedShareableElementDataWithAttributes(const Vector<Attribute>& attributes)
Attribute          39 Source/core/dom/ElementDataCache.h class Attribute;
Attribute          48 Source/core/dom/ElementDataCache.h     PassRefPtr<ShareableElementData> cachedShareableElementDataWithAttributes(const Vector<Attribute>&);
Attribute         169 Source/core/dom/Node.cpp                         Attribute* attr = elementData->attributeItem(i);
Attribute         234 Source/core/dom/Node.cpp     printf("  Number of Attributes (non-Node and Node): %zu [%zu]\n", attributes, sizeof(Attribute));
Attribute        1310 Source/core/dom/Node.cpp                     const Attribute& attr = elem->attributeItem(i);
Attribute        1396 Source/core/dom/Node.cpp                     const Attribute& attr = elem->attributeItem(i);
Attribute        1566 Source/core/dom/Node.cpp             const Attribute& attribute = owner1->attributeItem(i);
Attribute          49 Source/core/dom/Node.h class Attribute;
Attribute         128 Source/core/dom/PresentationAttributeStyle.cpp         const Attribute& attribute = element.attributeItem(i);
Attribute         183 Source/core/dom/PresentationAttributeStyle.cpp             const Attribute& attribute = element.attributeItem(i);
Attribute         208 Source/core/editing/MarkupAccumulator.cpp void MarkupAccumulator::appendQuotedURLAttributeValue(StringBuilder& result, const Element& element, const Attribute& attribute)
Attribute         250 Source/core/editing/MarkupAccumulator.cpp bool MarkupAccumulator::shouldAddNamespaceAttribute(const Attribute& attribute, Namespaces& namespaces)
Attribute         430 Source/core/editing/MarkupAccumulator.cpp static inline bool attributeIsInSerializedNamespace(const Attribute& attribute)
Attribute         437 Source/core/editing/MarkupAccumulator.cpp void MarkupAccumulator::appendAttribute(StringBuilder& result, const Element& element, const Attribute& attribute, Namespaces* namespaces)
Attribute          36 Source/core/editing/MarkupAccumulator.h class Attribute;
Attribute          88 Source/core/editing/MarkupAccumulator.h     bool shouldAddNamespaceAttribute(const Attribute&, Namespaces&);
Attribute          98 Source/core/editing/MarkupAccumulator.h     void appendAttribute(StringBuilder&, const Element&, const Attribute&, Namespaces*);
Attribute         110 Source/core/editing/MarkupAccumulator.h     void appendQuotedURLAttributeValue(StringBuilder&, const Element&, const Attribute&);
Attribute         105 Source/core/editing/markup.cpp             const Attribute& attribute = element->attributeItem(i);
Attribute         284 Source/core/editing/markup.cpp         const Attribute& attribute = element.attributeItem(i);
Attribute         298 Source/core/html/HTMLAnchorElement.cpp bool HTMLAnchorElement::isURLAttribute(const Attribute& attribute) const
Attribute          99 Source/core/html/HTMLAnchorElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE FINAL;
Attribute          74 Source/core/html/HTMLAppletElement.cpp bool HTMLAppletElement::isURLAttribute(const Attribute& attribute) const
Attribute          43 Source/core/html/HTMLAppletElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute          70 Source/core/html/HTMLBaseElement.cpp bool HTMLBaseElement::isURLAttribute(const Attribute& attribute) const
Attribute          40 Source/core/html/HTMLBaseElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         178 Source/core/html/HTMLBodyElement.cpp bool HTMLBodyElement::isURLAttribute(const Attribute& attribute) const
Attribute          56 Source/core/html/HTMLBodyElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         191 Source/core/html/HTMLButtonElement.cpp bool HTMLButtonElement::isURLAttribute(const Attribute& attribute) const
Attribute          69 Source/core/html/HTMLButtonElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         120 Source/core/html/HTMLEmbedElement.cpp         const Attribute& attribute = attributeItem(i);
Attribute         178 Source/core/html/HTMLEmbedElement.cpp bool HTMLEmbedElement::isURLAttribute(const Attribute& attribute) const
Attribute          45 Source/core/html/HTMLEmbedElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         499 Source/core/html/HTMLFormElement.cpp bool HTMLFormElement::isURLAttribute(const Attribute& attribute) const
Attribute         129 Source/core/html/HTMLFormElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         193 Source/core/html/HTMLFrameElementBase.cpp bool HTMLFrameElementBase::isURLAttribute(const Attribute& attribute) const
Attribute         204 Source/core/html/HTMLFrameElementBase.cpp bool HTMLFrameElementBase::isHTMLContentAttribute(const Attribute& attribute) const
Attribute          58 Source/core/html/HTMLFrameElementBase.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE FINAL;
Attribute          60 Source/core/html/HTMLFrameElementBase.h     virtual bool isHTMLContentAttribute(const Attribute&) const OVERRIDE FINAL;
Attribute          50 Source/core/html/HTMLHtmlElement.cpp bool HTMLHtmlElement::isURLAttribute(const Attribute& attribute) const
Attribute          40 Source/core/html/HTMLHtmlElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         312 Source/core/html/HTMLImageElement.cpp bool HTMLImageElement::isURLAttribute(const Attribute& attribute) const
Attribute         111 Source/core/html/HTMLImageElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         459 Source/core/html/HTMLInputElement.cpp         if (const Attribute* height = getAttributeItem(heightAttr))
Attribute         461 Source/core/html/HTMLInputElement.cpp         if (const Attribute* width = getAttributeItem(widthAttr))
Attribute         463 Source/core/html/HTMLInputElement.cpp         if (const Attribute* align = getAttributeItem(alignAttr))
Attribute        1208 Source/core/html/HTMLInputElement.cpp bool HTMLInputElement::isURLAttribute(const Attribute& attribute) const
Attribute         340 Source/core/html/HTMLInputElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE FINAL;
Attribute         372 Source/core/html/HTMLLinkElement.cpp bool HTMLLinkElement::isURLAttribute(const Attribute& attribute) const
Attribute         183 Source/core/html/HTMLLinkElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute        3273 Source/core/html/HTMLMediaElement.cpp bool HTMLMediaElement::isURLAttribute(const Attribute& attribute) const
Attribute         278 Source/core/html/HTMLMediaElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute          43 Source/core/html/HTMLModElement.cpp bool HTMLModElement::isURLAttribute(const Attribute& attribute) const
Attribute          38 Source/core/html/HTMLModElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         185 Source/core/html/HTMLObjectElement.cpp             const Attribute& attribute = attributeItem(i);
Attribute         366 Source/core/html/HTMLObjectElement.cpp bool HTMLObjectElement::isURLAttribute(const Attribute& attribute) const
Attribute          83 Source/core/html/HTMLObjectElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute          62 Source/core/html/HTMLParamElement.cpp bool HTMLParamElement::isURLAttribute(const Attribute& attribute) const
Attribute          42 Source/core/html/HTMLParamElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute          46 Source/core/html/HTMLQuoteElement.cpp bool HTMLQuoteElement::isURLAttribute(const Attribute& attribute) const
Attribute          39 Source/core/html/HTMLQuoteElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute          51 Source/core/html/HTMLScriptElement.cpp bool HTMLScriptElement::isURLAttribute(const Attribute& attribute) const
Attribute          56 Source/core/html/HTMLScriptElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         325 Source/core/html/HTMLSelectElement.cpp             if (Attribute* sizeAttribute = ensureUniqueElementData().getAttributeItem(sizeAttr))
Attribute         118 Source/core/html/HTMLSourceElement.cpp bool HTMLSourceElement::isURLAttribute(const Attribute& attribute) const
Attribute          52 Source/core/html/HTMLSourceElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         126 Source/core/html/HTMLTableCellElement.cpp bool HTMLTableCellElement::isURLAttribute(const Attribute& attribute) const
Attribute          61 Source/core/html/HTMLTableCellElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         534 Source/core/html/HTMLTableElement.cpp bool HTMLTableElement::isURLAttribute(const Attribute& attribute) const
Attribute          77 Source/core/html/HTMLTableElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         142 Source/core/html/HTMLTrackElement.cpp bool HTMLTrackElement::isURLAttribute(const Attribute& attribute) const
Attribute          66 Source/core/html/HTMLTrackElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         149 Source/core/html/HTMLVideoElement.cpp bool HTMLVideoElement::isURLAttribute(const Attribute& attribute) const
Attribute          89 Source/core/html/HTMLVideoElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute          68 Source/core/html/parser/AtomicHTMLToken.h     Attribute* getAttributeItem(const QualifiedName& attributeName)
Attribute          74 Source/core/html/parser/AtomicHTMLToken.h     Vector<Attribute>& attributes()
Attribute          80 Source/core/html/parser/AtomicHTMLToken.h     const Vector<Attribute>& attributes() const
Attribute         165 Source/core/html/parser/AtomicHTMLToken.h             for (Vector<CompactHTMLToken::Attribute>::const_iterator it = token.attributes().begin(); it != token.attributes().end(); ++it) {
Attribute         169 Source/core/html/parser/AtomicHTMLToken.h                     m_attributes.append(Attribute(name, AtomicString(it->value)));
Attribute         189 Source/core/html/parser/AtomicHTMLToken.h     AtomicHTMLToken(HTMLToken::Type type, const AtomicString& name, const Vector<Attribute>& attributes = Vector<Attribute>())
Attribute         202 Source/core/html/parser/AtomicHTMLToken.h     QualifiedName nameForAttribute(const HTMLToken::Attribute&) const;
Attribute         220 Source/core/html/parser/AtomicHTMLToken.h     Vector<Attribute> m_attributes;
Attribute         232 Source/core/html/parser/AtomicHTMLToken.h         const HTMLToken::Attribute& attribute = attributes[i];
Attribute         247 Source/core/html/parser/AtomicHTMLToken.h             m_attributes.append(Attribute(name, value));
Attribute          37 Source/core/html/parser/CompactHTMLToken.cpp     Vector<Attribute> vector;
Attribute          58 Source/core/html/parser/CompactHTMLToken.cpp         m_attributes.append(Attribute(attemptStaticStringCreation(token->publicIdentifier(), Likely8Bit), String(token->systemIdentifier())));
Attribute          66 Source/core/html/parser/CompactHTMLToken.cpp         for (Vector<HTMLToken::Attribute>::const_iterator it = token->attributes().begin(); it != token->attributes().end(); ++it)
Attribute          67 Source/core/html/parser/CompactHTMLToken.cpp             m_attributes.append(Attribute(attemptStaticStringCreation(it->name, Likely8Bit), StringImpl::create8BitIfPossible(it->value)));
Attribute          84 Source/core/html/parser/CompactHTMLToken.cpp const CompactHTMLToken::Attribute* CompactHTMLToken::getAttributeItem(const QualifiedName& name) const
Attribute          95 Source/core/html/parser/CompactHTMLToken.cpp     for (Vector<Attribute>::const_iterator it = m_attributes.begin(); it != m_attributes.end(); ++it) {
Attribute          41 Source/core/html/parser/CompactHTMLToken.h         Attribute(const String& name, const String& value)
Attribute          59 Source/core/html/parser/CompactHTMLToken.h     const Vector<Attribute>& attributes() const { return m_attributes; }
Attribute          60 Source/core/html/parser/CompactHTMLToken.h     const Attribute* getAttributeItem(const QualifiedName&) const;
Attribute          76 Source/core/html/parser/CompactHTMLToken.h     Vector<Attribute> m_attributes;
Attribute         397 Source/core/html/parser/HTMLConstructionSite.cpp         const Attribute& tokenAttribute = token->attributes().at(i);
Attribute         285 Source/core/html/parser/HTMLElementStack.cpp         Attribute* encodingAttr = item->getAttributeItem(MathMLNames::encodingAttr);
Attribute         173 Source/core/html/parser/HTMLFormattingElementList.cpp     const Vector<Attribute>& attributes = newItem->attributes();
Attribute         175 Source/core/html/parser/HTMLFormattingElementList.cpp         const Attribute& attribute = attributes[i];
Attribute         184 Source/core/html/parser/HTMLFormattingElementList.cpp             Attribute* candidateAttribute = candidate->getAttributeItem(attribute.name());
Attribute         139 Source/core/html/parser/HTMLPreloadScanner.cpp     void processAttributes(const Vector<CompactHTMLToken::Attribute>& attributes)
Attribute         143 Source/core/html/parser/HTMLPreloadScanner.cpp         for (Vector<CompactHTMLToken::Attribute>::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter)
Attribute         384 Source/core/html/parser/HTMLPreloadScanner.cpp     if (const typename Token::Attribute* hrefAttribute = token.getAttributeItem(hrefAttr))
Attribute          70 Source/core/html/parser/HTMLStackItem.h     const Vector<Attribute>& attributes() const { ASSERT(m_tokenLocalName); return m_tokenAttributes; }
Attribute          71 Source/core/html/parser/HTMLStackItem.h     Attribute* getAttributeItem(const QualifiedName& attributeName)
Attribute         238 Source/core/html/parser/HTMLStackItem.h     Vector<Attribute> m_tokenAttributes;
Attribute          54 Source/core/html/parser/HTMLToken.h static inline Attribute* findAttributeInVector(Vector<Attribute>& attributes, const QualifiedName& name)
Attribute          77 Source/core/html/parser/HTMLToken.h     class Attribute {
Attribute         360 Source/core/html/parser/HTMLToken.h     const Attribute* getAttributeItem(const QualifiedName& name) const
Attribute         443 Source/core/html/parser/HTMLToken.h     Attribute::Range m_range; // Always starts at zero.
Attribute         453 Source/core/html/parser/HTMLToken.h     Attribute* m_currentAttribute;
Attribute          49 Source/core/html/parser/HTMLTokenizer.cpp QualifiedName AtomicHTMLToken::nameForAttribute(const HTMLToken::Attribute& attribute) const
Attribute         435 Source/core/html/parser/HTMLTreeBuilder.cpp void HTMLTreeBuilder::processFakeStartTag(const QualifiedName& tagName, const Vector<Attribute>& attributes)
Attribute         536 Source/core/html/parser/HTMLTreeBuilder.cpp         Attribute& tokenAttribute = token->attributes().at(i);
Attribute         581 Source/core/html/parser/HTMLTreeBuilder.cpp         Attribute& tokenAttribute = token->attributes().at(i);
Attribute         783 Source/core/html/parser/HTMLTreeBuilder.cpp         Attribute* typeAttribute = token->getAttributeItem(typeAttr);
Attribute        1017 Source/core/html/parser/HTMLTreeBuilder.cpp         Attribute* typeAttribute = token->getAttributeItem(typeAttr);
Attribute         153 Source/core/html/parser/HTMLTreeBuilder.h     void processFakeStartTag(const QualifiedName&, const Vector<Attribute>& attributes = Vector<Attribute>());
Attribute         175 Source/core/html/parser/HTMLTreeBuilder.h     Vector<Attribute> attributesForIsindexInput(AtomicHTMLToken*);
Attribute          59 Source/core/html/parser/TextDocumentParser.cpp     Vector<Attribute> attributes;
Attribute          60 Source/core/html/parser/TextDocumentParser.cpp     attributes.append(Attribute(styleAttr, "word-wrap: break-word; white-space: pre-wrap;"));
Attribute         201 Source/core/html/parser/XSSAuditor.cpp static bool isSemicolonSeparatedAttribute(const HTMLToken::Attribute& attribute)
Attribute         465 Source/core/html/parser/XSSAuditor.cpp     const HTMLToken::Attribute& nameAttribute = request.token.attributes().at(indexOfNameAttribute);
Attribute         557 Source/core/html/parser/XSSAuditor.cpp         const HTMLToken::Attribute& attribute = request.token.attributes().at(i);
Attribute         578 Source/core/html/parser/XSSAuditor.cpp         const HTMLToken::Attribute& attribute = request.token.attributes().at(indexOfAttribute);
Attribute         599 Source/core/html/parser/XSSAuditor.cpp String XSSAuditor::decodedSnippetForAttribute(const FilterTokenRequest& request, const HTMLToken::Attribute& attribute, AttributeKind treatment)
Attribute         105 Source/core/html/parser/XSSAuditor.h     String decodedSnippetForAttribute(const FilterTokenRequest&, const HTMLToken::Attribute&, AttributeKind treatment = NormalAttribute);
Attribute         193 Source/core/inspector/DOMPatchSupport.cpp                 const Attribute& attribute = oldElement->attributeItem(0);
Attribute         203 Source/core/inspector/DOMPatchSupport.cpp                 const Attribute& attribute = newElement->attributeItem(i);
Attribute         436 Source/core/inspector/DOMPatchSupport.cpp                 const Attribute& attribute = element->attributeItem(i);
Attribute         749 Source/core/inspector/InspectorDOMAgent.cpp         const Attribute& attribute = parsedElement->attributeItem(i);
Attribute        1009 Source/core/inspector/InspectorDOMAgent.cpp                     const Attribute& attribute = element->attributeItem(i);
Attribute        1622 Source/core/inspector/InspectorDOMAgent.cpp         const Attribute& attribute = element->attributeItem(i);
Attribute          82 Source/core/page/PageSerializer.cpp             const Attribute& attribute = element.attributeItem(i);
Attribute         167 Source/core/page/PageSerializer.cpp     appendAttribute(out, element, Attribute(frameOwnerURLAttributeName(frameOwner), AtomicString(url.string())), namespaces);
Attribute         187 Source/core/svg/SVGAElement.cpp bool SVGAElement::isURLAttribute(const Attribute& attribute) const
Attribute          53 Source/core/svg/SVGAElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute         123 Source/core/svg/SVGScriptElement.cpp bool SVGScriptElement::isURLAttribute(const Attribute& attribute) const
Attribute          58 Source/core/svg/SVGScriptElement.h     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
Attribute          29 Source/core/svg/SVGTests.h class Attribute;
Attribute          29 Source/core/svg/SVGURIReference.h class Attribute;
Attribute          90 Source/core/xml/XMLErrors.cpp     Vector<Attribute> reportAttributes;
Attribute          91 Source/core/xml/XMLErrors.cpp     reportAttributes.append(Attribute(styleAttr, "display: block; white-space: pre; border: 2px solid #c77; padding: 0 1em 0 1em; margin: 1em; background-color: #fdd; color: black"));
Attribute          99 Source/core/xml/XMLErrors.cpp     Vector<Attribute> fixedAttributes;
Attribute         100 Source/core/xml/XMLErrors.cpp     fixedAttributes.append(Attribute(styleAttr, "font-family:monospace;font-size:12px"));
Attribute         144 Source/core/xml/XMLErrors.cpp         Vector<Attribute> attributes;
Attribute         145 Source/core/xml/XMLErrors.cpp         attributes.append(Attribute(styleAttr, "white-space: normal"));
Attribute         600 Source/core/xml/XPathFunctions.cpp     const Attribute* languageAttribute = 0;
Attribute         522 Source/core/xml/parser/XMLDocumentParser.cpp static inline void setAttributes(Element* element, Vector<Attribute>& attributeVector, ParserContentPolicy parserContentPolicy)
Attribute         801 Source/core/xml/parser/XMLDocumentParser.cpp                 const Attribute& attribute = element->attributeItem(i);
Attribute         872 Source/core/xml/parser/XMLDocumentParser.cpp static inline void handleNamespaceAttributes(Vector<Attribute>& prefixedAttributes, const xmlChar** libxmlNamespaces, int nbNamespaces, ExceptionState& exceptionState)
Attribute         885 Source/core/xml/parser/XMLDocumentParser.cpp         prefixedAttributes.append(Attribute(parsedName, namespaceURI));
Attribute         898 Source/core/xml/parser/XMLDocumentParser.cpp static inline void handleElementAttributes(Vector<Attribute>& prefixedAttributes, const xmlChar** libxmlAttributes, int nbAttributes, ExceptionState& exceptionState)
Attribute         912 Source/core/xml/parser/XMLDocumentParser.cpp         prefixedAttributes.append(Attribute(parsedName, attrValue));
Attribute         948 Source/core/xml/parser/XMLDocumentParser.cpp     Vector<Attribute> prefixedAttributes;
Attribute         310 Source/web/WebPageSerializerImpl.cpp             const Attribute& attribute = element->attributeItem(i);