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.h150 while (node && !isElementOfType<const ElementType>(*node)) in firstChildTemplate()
169 while (ancestor && !isElementOfType<const ElementType>(*ancestor)) in firstAncestor()
178 if (isElementOfType<const ElementType>(current)) in firstAncestorOrSelfTemplate()
188 while (node && !isElementOfType<const ElementType>(*node)) in lastChildTemplate()
208 while (node && !isElementOfType<const ElementType>(*node)) in firstWithinTemplate()
228 while (node && !isElementOfType<const ElementType>(*node)) in lastWithinTemplate()
248 while (node && !isElementOfType<const ElementType>(*node)) in nextTemplate()
258 while (node && !isElementOfType<const ElementType>(*node)) in nextTemplate()
277 while (node && !isElementOfType<const ElementType>(*node)) in previous()
286 while (node && !isElementOfType<const ElementType>(*node)) in previous()
[all …]
DElement.h637 template <typename T> bool isElementOfType(const Node&);
638 template <> inline bool isElementOfType<const Element>(const Node& node) { return node.isElementNod…
639 template <typename T> inline bool isElementOfType(const Element& element) { return isElementOfType<… in isElementOfType() function
640 template <> inline bool isElementOfType<const Element>(const Element&) { return true; }
645 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node)); in toElement()
650 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node)); in toElement()
655 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node)); in toElement()
660 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node)); in toElement()
844 …template <> inline bool isElementOfType<const thisType>(const Node& node) { return node.predicate;…
848 …template <> inline bool isElementOfType<const thisType>(const Node& node) { return is##thisType(no…
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLElement.h142 template <typename T> bool isElementOfType(const HTMLElement&);
143 template <> inline bool isElementOfType<const HTMLElement>(const HTMLElement&) { return true; }
176 …template <> inline bool isElementOfType<const thisType>(const HTMLElement& element) { return is##t…
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGElement.h271 template <typename T> bool isElementOfType(const SVGElement&);
272 template <> inline bool isElementOfType<const SVGElement>(const SVGElement&) { return true; }
288 …template <> inline bool isElementOfType<const thisType>(const SVGElement& element) { return is##th…
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DElementTypeHelpers.h.tmpl31 template <> inline bool isElementOfType<const {{tag.interface}}>(const Node& node) { return is{{tag…
32 template <> inline bool isElementOfType<const {{tag.interface}}>(const {{namespace}}Element& elemen…