Home
last modified time | relevance | path

Searched refs:isElementOfType (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementTraversal.h174 while (node && !isElementOfType<const ElementType>(*node)) in firstChildTemplate()
183 while (ancestor && !isElementOfType<const ElementType>(*ancestor)) in firstAncestor()
192 if (isElementOfType<const ElementType>(current)) in firstAncestorOrSelfTemplate()
202 while (node && !isElementOfType<const ElementType>(*node)) in lastChildTemplate()
212 while (element && !isElementOfType<const ElementType>(*element)) in firstWithinTemplate()
222 while (element && !isElementOfType<const ElementType>(*element)) in lastWithinTemplate()
232 while (element && !isElementOfType<const ElementType>(*element)) in nextTemplate()
242 while (element && !isElementOfType<const ElementType>(*element)) in nextTemplate()
252 while (element && !isElementOfType<const ElementType>(*element)) in previousTemplate()
262 while (element && !isElementOfType<const ElementType>(*element)) in previousTemplate()
[all …]
DElement.h658 template <typename T> bool isElementOfType(const Element&);
659 template <typename T> inline bool isElementOfType(const Node& node) { return node.isElementNode() &… in isElementOfType() function
660 template <> inline bool isElementOfType<const Element>(const Element&) { return true; }
665 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node)); in toElement()
670 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node)); in toElement()
675 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node)); in toElement()
680 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node)); in toElement()
875 …template <> inline bool isElementOfType<const thisType>(const Element& element) { return element.p…
879 …template <> inline bool isElementOfType<const thisType>(const Element& element) { return is##thisT…
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLElement.h132 template <> inline bool isElementOfType<const HTMLElement>(const Node& node) { return node.isHTMLEl…
133 template <typename T> bool isElementOfType(const HTMLElement&);
134 template <> inline bool isElementOfType<const HTMLElement>(const HTMLElement&) { return true; }
154 …template <> inline bool isElementOfType<const thisType>(const HTMLElement& element) { return is##t…
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DElementTypeHelpers.h.tmpl51 template <> inline bool isElementOfType<const {{tag.interface}}>(const Element& element) { return i…
53 template <> inline bool isElementOfType<const {{tag.interface}}>(const HTMLElement& element) { retu…
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGElement.h266 template <> inline bool isElementOfType<const SVGElement>(const Node& node) { return node.isSVGElem…