Home | History | Annotate | Download | only in style

Lines Matching refs:inherited_flags

211     } inherited_flags;
269 inherited_flags._empty_cells = initialEmptyCells();
270 inherited_flags._caption_side = initialCaptionSide();
271 inherited_flags._list_style_type = initialListStyleType();
272 inherited_flags._list_style_position = initialListStylePosition();
273 inherited_flags._visibility = initialVisibility();
274 inherited_flags._text_align = initialTextAlign();
275 inherited_flags._text_transform = initialTextTransform();
276 inherited_flags._text_decorations = initialTextDecoration();
277 inherited_flags._cursor_style = initialCursor();
278 inherited_flags._direction = initialDirection();
279 inherited_flags._border_collapse = initialBorderCollapse();
280 inherited_flags._white_space = initialWhiteSpace();
281 inherited_flags._visuallyOrdered = initialVisuallyOrdered();
282 inherited_flags._box_direction = initialBoxDirection();
283 inherited_flags._force_backgrounds_to_white = false;
284 inherited_flags._pointerEvents = initialPointerEvents();
285 inherited_flags._insideLink = NotInsideLink;
286 inherited_flags.m_writingMode = initialWritingMode();
361 bool visuallyOrdered() const { return inherited_flags._visuallyOrdered; }
362 void setVisuallyOrdered(bool b) { inherited_flags._visuallyOrdered = b; }
461 EVisibility visibility() const { return static_cast<EVisibility>(inherited_flags._visibility); }
483 ETextAlign textAlign() const { return static_cast<ETextAlign>(inherited_flags._text_align); }
484 ETextTransform textTransform() const { return static_cast<ETextTransform>(inherited_flags._text_transform); }
485 int textDecorationsInEffect() const { return inherited_flags._text_decorations; }
493 TextDirection direction() const { return static_cast<TextDirection>(inherited_flags._direction); }
511 EWhiteSpace whiteSpace() const { return static_cast<EWhiteSpace>(inherited_flags._white_space); }
596 bool borderCollapse() const { return inherited_flags._border_collapse; }
599 EEmptyCell emptyCells() const { return static_cast<EEmptyCell>(inherited_flags._empty_cells); }
600 ECaptionSide captionSide() const { return static_cast<ECaptionSide>(inherited_flags._caption_side); }
605 EListStyleType listStyleType() const { return static_cast<EListStyleType>(inherited_flags._list_style_type); }
607 EListStylePosition listStylePosition() const { return static_cast<EListStylePosition>(inherited_flags._list_style_position); }
632 ECursor cursor() const { return static_cast<ECursor>(inherited_flags._cursor_style); }
636 EInsideLink insideLink() const { return static_cast<EInsideLink>(inherited_flags._insideLink); }
666 EBoxDirection boxDirection() const { return static_cast<EBoxDirection>(inherited_flags._box_direction); }
748 EPointerEvents pointerEvents() const { return static_cast<EPointerEvents>(inherited_flags._pointerEvents); }
782 WritingMode writingMode() const { return static_cast<WritingMode>(inherited_flags.m_writingMode); }
901 void setVisibility(EVisibility v) { inherited_flags._visibility = v; }
932 void setTextAlign(ETextAlign v) { inherited_flags._text_align = v; }
933 void setTextTransform(ETextTransform v) { inherited_flags._text_transform = v; }
934 void addToTextDecorationsInEffect(int v) { inherited_flags._text_decorations |= v; }
935 void setTextDecorationsInEffect(int v) { inherited_flags._text_decorations = v; }
937 void setDirection(TextDirection v) { inherited_flags._direction = v; }
942 void setWhiteSpace(EWhiteSpace v) { inherited_flags._white_space = v; }
974 void setBorderCollapse(bool collapse) { inherited_flags._border_collapse = collapse; }
977 void setEmptyCells(EEmptyCell v) { inherited_flags._empty_cells = v; }
978 void setCaptionSide(ECaptionSide v) { inherited_flags._caption_side = v; }
983 void setListStyleType(EListStyleType v) { inherited_flags._list_style_type = v; }
985 void setListStylePosition(EListStylePosition v) { inherited_flags._list_style_position = v; }
1002 void setCursor(ECursor c) { inherited_flags._cursor_style = c; }
1007 void setInsideLink(EInsideLink insideLink) { inherited_flags._insideLink = insideLink; }
1010 bool forceBackgroundsToWhite() const { return inherited_flags._force_backgrounds_to_white; }
1011 void setForceBackgroundsToWhite(bool b=true) { inherited_flags._force_backgrounds_to_white = b; }
1034 void setBoxDirection(EBoxDirection d) { inherited_flags._box_direction = d; }
1097 void setPointerEvents(EPointerEvents p) { inherited_flags._pointerEvents = p; }
1186 void setWritingMode(WritingMode v) { inherited_flags.m_writingMode = v; }