Home
last modified time | relevance | path

Searched refs:m_attributeVector (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementData.cpp172 new (&m_attributeArray[i]) Attribute(other.m_attributeVector.at(i)); in ShareableElementData()
188 , m_attributeVector(other.m_attributeVector) in UniqueElementData()
200 m_attributeVector.reserveCapacity(other.length()); in UniqueElementData()
202 m_attributeVector.uncheckedAppend(other.m_attributeArray[i]); in UniqueElementData()
212 …void* slot = WTF::fastMalloc(sizeForShareableElementDataWithAttributeCount(m_attributeVector.size(… in makeShareableCopy()
219 if (m_attributeVector.at(i).name().matches(name)) in getAttributeItem()
220 return &m_attributeVector.at(i); in getAttributeItem()
DElementData.h146 Vector<Attribute, 4> m_attributeVector; variable
159 return static_cast<const UniqueElementData*>(this)->m_attributeVector.size(); in length()
181 return static_cast<const UniqueElementData*>(this)->m_attributeVector.begin(); in attributeBase()
244 m_attributeVector.append(Attribute(attributeName, value)); in addAttribute()
249 m_attributeVector.remove(index); in removeAttribute()
254 return &m_attributeVector.at(index); in attributeItem()