Home
last modified time | relevance | path

Searched refs:attributeAt (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementData.h91 const Attribute& attributeAt(unsigned index) const;
174 Attribute& attributeAt(unsigned index);
214 return &attributeAt(index); in findAttributeByName()
283 inline const Attribute& ElementData::attributeAt(unsigned index) const in attributeAt() function
300 inline Attribute& UniqueElementData::attributeAt(unsigned index) in attributeAt() function
DNamedNodeMap.cpp105 return m_element->ensureAttr(m_element->attributeAt(index).name()); in item()
DElement.h176 const Attribute& attributeAt(unsigned index) const;
774 inline const Attribute& Element::attributeAt(unsigned index) const in attributeAt() function
777 return elementData()->attributeAt(index); in attributeAt()
DElement.cpp278 const Attribute& attribute = elementData()->attributeAt(index); in detachAttribute()
294 const Attribute& attribute = elementData()->attributeAt(index); in detachAttrNodeAtIndex()
901 …const QualifiedName& qName = index != kNotFound ? attributeAt(index).name() : QualifiedName(nullAt… in setAttribute()
931 const Attribute& existingAttribute = attributeAt(index); in setAttributeInternal()
944 ensureUniqueElementData().attributeAt(index).setValue(newValue); in setAttributeInternal()
1881 const Attribute& attr = elementData.attributeAt(index); in setAttributeNode()
1991 QualifiedName name = elementData.attributeAt(index).name(); in removeAttributeInternal()
1992 AtomicString valueBeingRemoved = elementData.attributeAt(index).value(); in removeAttributeInternal()
2000 detachAttrNodeFromElementWithValue(attrNode.get(), elementData.attributeAt(index).value()); in removeAttributeInternal()
/external/chromium_org/third_party/WebKit/Source/web/
DWebElement.cpp129 return constUnwrap<Element>()->attributeAt(index).localName(); in attributeLocalName()
136 return constUnwrap<Element>()->attributeAt(index).value(); in attributeValue()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DDOMPatchSupport.cpp192 const Attribute& attribute = oldElement->attributeAt(0); in innerPatchNode()