/external/webkit/Source/WebCore/dom/ |
D | NamedNodeMap.cpp | 59 Attribute* a = getAttributeItem(name, shouldIgnoreAttributeCase(m_element)); in getNamedItem() 73 Attribute* a = getAttributeItem(name, shouldIgnoreAttributeCase(m_element)); in removeNamedItem() 89 Attribute* a = getAttributeItem(name); in getNamedItem() 111 Attribute* old = getAttributeItem(a->name()); in setNamedItem() 146 Attribute* a = getAttributeItem(name); in removeNamedItem() 222 Attribute* oldId = getAttributeItem(m_element->document()->idAttributeName()); in setAttributes() 223 Attribute* newId = other.getAttributeItem(m_element->document()->idAttributeName()); in setAttributes() 333 Attribute* otherAttr = otherMap->getAttributeItem(attr->name()); in mapsEquivalent() 353 Attribute* otherAttr = otherMap->getAttributeItem(attr->name()); in mappedMapsEquivalent()
|
D | NamedNodeMap.h | 69 Attribute* getAttributeItem(const QualifiedName&) const; 80 if (allowDuplicates || !getAttributeItem(newAttribute->name())) in insertAttribute() 114 Attribute* getAttributeItem(const String& name, bool shouldIgnoreAttributeCase) const; 126 inline Attribute* NamedNodeMap::getAttributeItem(const QualifiedName& name) const in getAttributeItem() function 138 inline Attribute* NamedNodeMap::getAttributeItem(const String& name, bool shouldIgnoreAttributeCase… in getAttributeItem() function
|
D | Element.cpp | 641 if (Attribute* attribute = m_attributeMap->getAttributeItem(name, ignoreCase)) in getAttribute() 669 Attribute* old = attributes(false)->getAttributeItem(localName, false); in setAttribute() 704 Attribute* old = attributes(false)->getAttributeItem(name); in setAttribute() 810 Attribute* oldId = m_attributeMap ? m_attributeMap->getAttributeItem(idName) : 0; in setAttributeMap() 811 Attribute* newId = list ? list->getAttributeItem(idName) : 0; in setAttributeMap() 946 Attribute* idItem = m_attributeMap->getAttributeItem(document()->idAttributeName()); in insertedIntoDocument() 957 Attribute* idItem = m_attributeMap->getAttributeItem(document()->idAttributeName()); in removedFromDocument() 1520 return attrs->getAttributeItem(localName, false); in hasAttribute() 1528 return attrs->getAttributeItem(QualifiedName(nullAtom, localName, namespaceURI)); in hasAttributeNS() 1827 if (Attribute* attribute = m_attributeMap->getAttributeItem(name)) in getURLAttribute() [all …]
|
D | Element.h | 494 return m_attributeMap && m_attributeMap->getAttributeItem(name); in fastHasAttribute() 500 if (Attribute* attribute = m_attributeMap->getAttributeItem(name)) in fastGetAttribute()
|
/external/webkit/Source/WebCore/svg/properties/ |
D | SVGAnimatedPropertySynchronizer.h | 39 Attribute* old = namedAttrMap->getAttributeItem(attrName);
|
/external/webkit/Source/WebCore/html/ |
D | HTMLParamElement.cpp | 69 Attribute* attr = attributes()->getAttributeItem(nameAttr); in isURLAttribute()
|
D | HTMLInputElement.cpp | 494 if (Attribute* height = map->getAttributeItem(heightAttr)) in updateType() 496 if (Attribute* width = map->getAttributeItem(widthAttr)) in updateType() 498 if (Attribute* align = map->getAttributeItem(alignAttr)) in updateType()
|
/external/webkit/Source/WebCore/html/parser/ |
D | HTMLToken.h | 443 Attribute* getAttributeItem(const QualifiedName& attributeName) in getAttributeItem() function 448 return m_attributes->getAttributeItem(attributeName); in getAttributeItem()
|
D | HTMLTreeBuilder.cpp | 567 RefPtr<Attribute> actionAttribute = token.getAttributeItem(actionAttr); in processIsindexStartTagForInBody() 574 RefPtr<Attribute> promptAttribute = token.getAttributeItem(promptAttr); in processIsindexStartTagForInBody() 914 RefPtr<Attribute> typeAttribute = token.getAttributeItem(typeAttr); in processStartTagForInBody() 1107 Attribute* typeAttribute = token.getAttributeItem(typeAttr); in processStartTagForInTable() 1516 …ken.name() == fontTag && (token.getAttributeItem(colorAttr) || token.getAttributeItem(faceAttr) ||… in processStartTag()
|
D | HTMLConstructionSite.cpp | 196 if (!attributes->getAttributeItem(attribute->name())) in mergeAttributesFromTokenIntoElement()
|
/external/webkit/Source/WebCore/svg/ |
D | SVGSVGElement.cpp | 294 Attribute* attribute = element->attributes(false)->getAttributeItem(attrName); in updateCSSForAttribute() 489 if (attributes()->getAttributeItem(SVGNames::viewBoxAttr)) in localCoordinateSpaceTransform()
|
D | SVGStyledElement.cpp | 392 Attribute* attr = attributeMap()->getAttributeItem(attributeName); in getPresentationAttribute()
|
/external/webkit/Source/WebCore/xml/ |
D | XPathFunctions.cpp | 596 languageAttribute = attrs->getAttributeItem(XMLNames::langAttr); in evaluate()
|
/external/webkit/Source/WebCore/editing/ |
D | ApplyStyleCommand.cpp | 1220 Attribute *secondAttribute = secondMap->getAttributeItem(attribute->name()); in areIdenticalElements()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 46771 (WebCore::NamedMappedAttrMap::getAttributeItem): 52631 Use new getAttributeItem method. 52636 Use new getAttributeItem method. 52638 (WebCore::NamedAttrMap::getAttributeItem):
|
D | ChangeLog-2009-06-16 | 25580 (WebCore::NamedNodeMap::getAttributeItem): Ditto. 45383 (WebCore::SVGSVGElement::getCTM): Use getAttributeItem instead of 45390 (WebCore::XPath::FunLang::evaluate): Use getAttributeItem instead of 85311 getAttributeItem functions from NamedMappedAttrMap, and callers 94582 … Add a boolean parameter to getAttributeItem to choose between case sensitive and case insensitive 94592 (WebCore::NamedAttrMap::getAttributeItem):
|
D | ChangeLog-2002-12-03 | 15776 (NamedAttrMapImpl::length), (NamedAttrMapImpl::getAttributeItem),
|
D | ChangeLog-2005-08-23 | 9989 (NamedAttrMapImpl::getAttributeItem): 51957 (NamedAttrMapImpl::getAttributeItem): 52394 (NamedAttrMapImpl::getAttributeItem):
|
D | ChangeLog-2010-01-29 | 7389 (WebCore::NamedNodeMap::getAttributeItem): Inlined and split off slow case. 34263 …(WebCore::NamedNodeMap::getAttributeItem): Avoid redundant compares, and do fast/likely compares … 54499 (WebCore::NamedNodeMap::getAttributeItem): Tweaked formatting.
|
D | ChangeLog-2005-12-19 | 18319 (NamedAttrMapImpl::getAttributeItem):
|
D | ChangeLog-2008-08-10 | 40923 (WebCore::NamedAttrMap::getAttributeItem):
|
D | ChangeLog-2010-12-06 | 106881 (WebCore::AtomicHTMLToken::getAttributeItem):
|