Home
last modified time | relevance | path

Searched refs:hasFlags (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DUserActionElementSet.h43 bool isFocused(const Node* node) { return hasFlags(node, IsFocusedFlag); } in isFocused()
44 bool isActive(const Node* node) { return hasFlags(node, IsActiveFlag); } in isActive()
45 bool isInActiveChain(const Node* node) { return hasFlags(node, InActiveChainFlag); } in isInActiveChain()
46 bool isHovered(const Node* node) { return hasFlags(node, IsHoveredFlag); } in isHovered()
69 bool hasFlags(const Node*, unsigned flags) const;
73 bool hasFlags(const Element*, unsigned flags) const;
DUserActionElementSet.cpp54 bool UserActionElementSet::hasFlags(const Node* node, unsigned flags) const in hasFlags() function in WebCore::UserActionElementSet
57 return hasFlags(toElement(node), flags); in hasFlags()
74 inline bool UserActionElementSet::hasFlags(const Element* element, unsigned flags) const in hasFlags() function in WebCore::UserActionElementSet