HomeSort by relevance Sort by last modified time
    Searched refs:m_attributeVector (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementData.cpp 172 new (&m_attributeArray[i]) Attribute(other.m_attributeVector.at(i));
188 , m_attributeVector(other.m_attributeVector)
200 m_attributeVector.reserveCapacity(other.length());
202 m_attributeVector.uncheckedAppend(other.m_attributeArray[i]);
212 void* slot = WTF::fastMalloc(sizeForShareableElementDataWithAttributeCount(m_attributeVector.size()));
219 if (m_attributeVector.at(i).name().matches(name))
220 return &m_attributeVector.at(i);
ElementData.h 146 Vector<Attribute, 4> m_attributeVector;
159 return static_cast<const UniqueElementData*>(this)->m_attributeVector.size();
181 return static_cast<const UniqueElementData*>(this)->m_attributeVector.begin();
244 m_attributeVector.append(Attribute(attributeName, value));
249 m_attributeVector.remove(index);
254 return &m_attributeVector.at(index);

Completed in 108 milliseconds