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 150 while (node && !isElementOfType<const ElementType>(*node))
169 while (ancestor && !isElementOfType<const ElementType>(*ancestor))
178 if (isElementOfType<const ElementType>(current))
188 while (node && !isElementOfType<const ElementType>(*node))
208 while (node && !isElementOfType<const ElementType>(*node))
228 while (node && !isElementOfType<const ElementType>(*node))
248 while (node && !isElementOfType<const ElementType>(*node))
258 while (node && !isElementOfType<const ElementType>(*node))
277 while (node && !isElementOfType<const ElementType>(*node))
286 while (node && !isElementOfType<const ElementType>(*node)
    [all...]
Element.h 637 template <typename T> bool isElementOfType(const Node&);
638 template <> inline bool isElementOfType<const Element>(const Node& node) { return node.isElementNode(); }
639 template <typename T> inline bool isElementOfType(const Element& element) { return isElementOfType<T>(static_cast<const Node&>(element)); }
640 template <> inline bool isElementOfType<const Element>(const Element&) { return true; }
645 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node));
650 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node));
655 ASSERT_WITH_SECURITY_IMPLICATION(isElementOfType<const T>(node));
660 ASSERT_WITH_SECURITY_IMPLICATION(!node || isElementOfType<const T>(*node));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 142 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##thisType(element); } \
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.h 271 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##thisType(element); } \

Completed in 91 milliseconds