Home
last modified time | relevance | path

Searched refs:hasLocalName (Results 1 – 25 of 36) sorted by relevance

12

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/html/
H A DHTMLCollection.cpp131 if (e->hasLocalName(imgTag)) in itemAfter()
147 if (e->hasLocalName(tdTag) || e->hasLocalName(thTag)) in itemAfter()
151 if (e->hasLocalName(trTag)) in itemAfter()
184 … if ((e->hasLocalName(aTag) || e->hasLocalName(areaTag)) && e->fastHasAttribute(hrefAttr)) in itemAfter()
274 !(e->hasLocalName(imgTag) || e->hasLocalName(formTag) || in checkForNameMatch()
275 e->hasLocalName(appletTag) || e->hasLocalName(objectTag) || in checkForNameMatch()
276 e->hasLocalName(embedTag) || e->hasLocalName(inputTag) || in checkForNameMatch()
277 e->hasLocalName(selectTag))) in checkForNameMatch()
335 (e->hasLocalName(imgTag) || e->hasLocalName(formTag) || in updateNameCache()
336 e->hasLocalName(appletTag) || e->hasLocalName(objectTag) || in updateNameCache()
[all …]
H A DHTMLElement.cpp83 if (hasLocalName(areaTag) in ieForbidsInsertHTML()
86 || hasLocalName(brTag) in ieForbidsInsertHTML()
90 || hasLocalName(hrTag) in ieForbidsInsertHTML()
279 if (hasLocalName(colTag) || hasLocalName(colgroupTag) || hasLocalName(framesetTag) in deprecatedCreateContextualFragment()
280 || hasLocalName(headTag) || hasLocalName(styleTag) || hasLocalName(titleTag)) in deprecatedCreateContextualFragment()
442 if (hasLocalName(colTag) || hasLocalName(colgroupTag) || hasLocalName(framesetTag) || in setInnerText()
443 hasLocalName(headTag) || hasLocalName(htmlTag) || hasLocalName(tableTag) || in setInnerText()
444 hasLocalName(tbodyTag) || hasLocalName(tfootTag) || hasLocalName(theadTag) || in setInnerText()
490 if (hasLocalName(colTag) || hasLocalName(colgroupTag) || hasLocalName(framesetTag) || in setOuterText()
491 hasLocalName(headTag) || hasLocalName(htmlTag) || hasLocalName(tableTag) || in setOuterText()
[all …]
H A DHTMLTableRowsCollection.cpp42 return row->parentNode() && static_cast<Element*>(row->parentNode())->hasLocalName(theadTag); in isInHead()
47 return row->parentNode() && static_cast<Element*>(row->parentNode())->hasLocalName(tbodyTag); in isInBody()
52 return row->parentNode() && static_cast<Element*>(row->parentNode())->hasLocalName(tfootTag); in isInFoot()
163 ASSERT(!previous || previous->hasLocalName(trTag)); in itemAfter()
H A DHTMLSelectElement.cpp183 if (!element || !(element->hasLocalName(optionTag) || element->hasLocalName(hrTag))) in add()
213 … if (items[i]->hasLocalName(optionTag) && static_cast<HTMLOptionElement*>(items[i])->selected()) in value()
228 if (items[i]->hasLocalName(optionTag)) { in setValue()
509 if (item->hasLocalName(optionTag) && optionIndex++ >= newLen) { in setLength()
H A DHTMLLegendElement.cpp72 if (!element->hasLocalName(legendTag) && element->isFormControlElement()) in associatedControl()
H A DHTMLTableColElement.cpp83 if (!hasLocalName(colgroupTag)) in additionalAttributeStyleDecls()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/mathml/
H A DMathMLInlineContainerElement.cpp59 if (hasLocalName(mrowTag)) in createRenderer()
61 if (hasLocalName(msubTag)) in createRenderer()
63 if (hasLocalName(msupTag)) in createRenderer()
65 if (hasLocalName(msubsupTag)) in createRenderer()
67 if (hasLocalName(moverTag)) in createRenderer()
69 if (hasLocalName(munderTag)) in createRenderer()
71 if (hasLocalName(munderoverTag)) in createRenderer()
73 if (hasLocalName(mfracTag)) in createRenderer()
75 if (hasLocalName(msqrtTag)) in createRenderer()
77 if (hasLocalName(mrootTag)) in createRenderer()
[all …]
H A DMathMLTextElement.cpp52 if (hasLocalName(MathMLNames::moTag)) in createRenderer()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLSubSup.cpp54 if (element->hasLocalName(MathMLNames::msubTag)) in RenderMathMLSubSup()
56 else if (element->hasLocalName(MathMLNames::msupTag)) in RenderMathMLSubSup()
58 else if (element->hasLocalName(MathMLNames::msubsupTag)) in RenderMathMLSubSup()
H A DRenderMathMLUnderOver.cpp47 if (element->hasLocalName(MathMLNames::munderTag)) in RenderMathMLUnderOver()
49 else if (element->hasLocalName(MathMLNames::moverTag)) in RenderMathMLUnderOver()
51 else if (element->hasLocalName(MathMLNames::munderoverTag)) in RenderMathMLUnderOver()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DOptionGroupElement.cpp40 return element->hasLocalName(HTMLNames::optgroupTag); in isOptionGroupElement()
H A DElement.h194 bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; } in hasLocalName() function
195 …bool hasLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localN… in hasLocalName() function
446 inline bool Node::hasLocalName(const AtomicString& name) const in hasLocalName() function
448 return isElementNode() && toElement(this)->hasLocalName(name); in hasLocalName()
H A DXMLDocumentParser.cpp375 …if (contextElement && (contextElement->hasLocalName(HTMLNames::scriptTag) || contextElement->hasLo… in parseDocumentFragment()
H A DOptionElement.cpp145 return element->hasLocalName(HTMLNames::optionTag); in isOptionElement()
H A DNode.h141 bool hasLocalName(const AtomicString&) const;
H A DDocument.cpp3040 if (e->hasLocalName(linkTag)) { in recalcStyleSelector()
3068 if (e->hasLocalName(linkTag)) in recalcStyleSelector()
3085 if (e->hasLocalName(styleTag) || !rel.contains("alternate")) in recalcStyleSelector()
/dports/devel/binaryen/binaryen-version_98/src/ir/
H A Dnames.h35 if (!func->hasLocalName(i)) { in ensureNames()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/html/parser/
H A DHTMLElementStack.cpp224 while (!top()->hasLocalName(tagName)) { in popUntil()
405 if (pos->node()->hasLocalName(tagName)) in topmost()
426 if (node->hasLocalName(targetTag)) in inScopeCommon()
H A DHTMLFormattingElementList.cpp48 if (entry.element()->hasLocalName(targetName)) in closestElementInScopeWithName()
H A DHTMLTreeBuilder.cpp1558 if (node->hasLocalName(token.name())) { in processAnyOtherEndTagForInBody()
1564 if (!m_tree.currentNode()->hasLocalName(token.name())) { in processAnyOtherEndTagForInBody()
1851 if (!m_tree.currentNode()->hasLocalName(token.name())) in processEndTagForInCell()
1921 if (!m_tree.currentNode()->hasLocalName(token.name())) in processEndTagForInBody()
1946 if (!m_tree.currentNode()->hasLocalName(token.name())) in processEndTagForInBody()
1957 if (!m_tree.currentNode()->hasLocalName(token.name())) in processEndTagForInBody()
1969 if (!m_tree.currentNode()->hasLocalName(token.name())) in processEndTagForInBody()
1980 if (!m_tree.currentNode()->hasLocalName(token.name())) in processEndTagForInBody()
1997 if (!m_tree.currentNode()->hasLocalName(token.name())) in processEndTagForInBody()
2321 if (!nodeRecord->node()->hasLocalName(token.name())) in processEndTag()
[all …]
H A DHTMLConstructionSite.cpp457 while (hasImpliedEndTag(currentNode()) && !currentNode()->hasLocalName(tagName)) in generateImpliedEndTagsWithExclusion()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/bindings/js/
H A DJSClipboardCustom.cpp123 if (static_cast<Element*>(node)->hasLocalName(imgTag) && !node->inDocument()) in setDragImage()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/xml/
H A DXPathStep.cpp203 …return static_cast<Element*>(node)->hasLocalName(name) && namespaceURI == node->namespaceURI() && … in nodeMatchesBasicTest()
205 … return static_cast<Element*>(node)->hasLocalName(name) && namespaceURI == node->namespaceURI(); in nodeMatchesBasicTest()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/loader/
H A DFormSubmission.cpp182 if (element->hasLocalName(inputTag)) { in create()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.cpp815 RenderObject* bodyObject = (body && body->hasLocalName(bodyTag)) ? body->renderer() : 0; in isSimpleContainerCompositingLayer()

12