attrNodeList 150 Source/core/dom/Element.cpp static Attr* findAttrNodeInList(const AttrNodeList& attrNodeList, const QualifiedName& name) attrNodeList 152 Source/core/dom/Element.cpp AttrNodeList::const_iterator end = attrNodeList.end(); attrNodeList 153 Source/core/dom/Element.cpp for (AttrNodeList::const_iterator it = attrNodeList.begin(); it != end; ++it) { attrNodeList 3009 Source/core/dom/Element.cpp if (AttrNodeList* attrNodeList = attrNodeListForElement(this)) attrNodeList 3010 Source/core/dom/Element.cpp return findAttrNodeInList(*attrNodeList, name); attrNodeList 3016 Source/core/dom/Element.cpp AttrNodeList& attrNodeList = ensureAttrNodeListForElement(this); attrNodeList 3017 Source/core/dom/Element.cpp RefPtr<Attr> attrNode = findAttrNodeInList(attrNodeList, name); attrNodeList 3021 Source/core/dom/Element.cpp attrNodeList.append(attrNode); attrNodeList 3031 Source/core/dom/Element.cpp AttrNodeList* attrNodeList = attrNodeListForElement(this); attrNodeList 3032 Source/core/dom/Element.cpp for (unsigned i = 0; i < attrNodeList->size(); ++i) { attrNodeList 3033 Source/core/dom/Element.cpp if (attrNodeList->at(i)->qualifiedName() == attrNode->qualifiedName()) { attrNodeList 3034 Source/core/dom/Element.cpp attrNodeList->remove(i); attrNodeList 3035 Source/core/dom/Element.cpp if (attrNodeList->isEmpty()) attrNodeList 3045 Source/core/dom/Element.cpp AttrNodeList* attrNodeList = attrNodeListForElement(this); attrNodeList 3046 Source/core/dom/Element.cpp ASSERT(attrNodeList); attrNodeList 3051 Source/core/dom/Element.cpp if (RefPtr<Attr> attrNode = findAttrNodeInList(*attrNodeList, attribute.name())) attrNodeList 230 Source/core/dom/Element.h const Vector<RefPtr<Attr> >& attrNodeList(); attrNodeList 68 Source/core/dom/TreeScopeAdopter.cpp const Vector<RefPtr<Attr> >& attrs = toElement(node)->attrNodeList();