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

  /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(); }
  /external/chromium_org/third_party/WebKit/Source/core/dom/
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...]

Completed in 54 milliseconds