Home | History | Annotate | Download | only in dom

Lines Matching refs:MarkerTypes

54     class MarkerTypes {
57 MarkerTypes(unsigned mask) : m_mask(mask) { }
60 bool intersects(const MarkerTypes& types) const { return (m_mask & types.m_mask); }
61 bool operator==(const MarkerTypes& other) const { return m_mask == other.m_mask; }
63 void add(const MarkerTypes& types) { m_mask |= types.m_mask; }
64 void remove(const MarkerTypes& types) { m_mask &= ~types.m_mask; }
70 class AllMarkers : public MarkerTypes {
73 : MarkerTypes(Spelling | Grammar | TextMatch | InvisibleSpellcheck)
78 class MisspellingMarkers : public MarkerTypes {
81 : MarkerTypes(Spelling | Grammar)
86 class SpellCheckClientMarkers : public MarkerTypes {
89 : MarkerTypes(Spelling | Grammar | InvisibleSpellcheck)