HomeSort by relevance Sort by last modified time
    Searched refs:isElementOfType (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementTraversal.h 174 while (node && !isElementOfType<const ElementType>(*node))
183 while (ancestor && !isElementOfType<const ElementType>(*ancestor))
192 if (isElementOfType<const ElementType>(current))
202 while (node && !isElementOfType<const ElementType>(*node))
212 while (element && !isElementOfType<const ElementType>(*element))
222 while (element && !isElementOfType<const ElementType>(*element))
232 while (element && !isElementOfType<const ElementType>(*element))
242 while (element && !isElementOfType<const ElementType>(*element))
252 while (element && !isElementOfType<const ElementType>(*element))
262 while (element && !isElementOfType<const ElementType>(*element)
    [all...]
Element.h 658 template <typename T> bool isElementOfType(const Element&);
659 template <typename T> inline bool isElementOfType(const Node& node) { return node.isElementNode() && isElementOfType<const T>(toElement(node)); }
660 template <> inline bool isElementOfType<const Element>(const Element&) { return true; }
665 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node));
670 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node));
675 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node));
680 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 132 template <> inline bool isElementOfType<const HTMLElement>(const Node& node) { return node.isHTMLElement(); }
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##thisType(element); } \
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.h 266 template <> inline bool isElementOfType<const SVGElement>(const Node& node) { return node.isSVGElement(); }

Completed in 85 milliseconds