DynamicRestyleFlags 1005 Source/core/dom/ContainerNode.cpp bool ContainerNode::hasRestyleFlagInternal(DynamicRestyleFlags mask) const DynamicRestyleFlags 1015 Source/core/dom/ContainerNode.cpp void ContainerNode::setRestyleFlag(DynamicRestyleFlags mask) DynamicRestyleFlags 209 Source/core/dom/ContainerNode.h bool hasRestyleFlag(DynamicRestyleFlags mask) const { return hasRareData() && hasRestyleFlagInternal(mask); } DynamicRestyleFlags 211 Source/core/dom/ContainerNode.h void setRestyleFlag(DynamicRestyleFlags); DynamicRestyleFlags 212 Source/core/dom/ContainerNode.h bool hasRestyleFlagInternal(DynamicRestyleFlags) const; DynamicRestyleFlags 262 Source/core/dom/NodeRareData.h bool hasRestyleFlag(DynamicRestyleFlags mask) const { return m_restyleFlags & mask; } DynamicRestyleFlags 263 Source/core/dom/NodeRareData.h void setRestyleFlag(DynamicRestyleFlags mask) { m_restyleFlags |= mask; RELEASE_ASSERT(m_restyleFlags); }