Home | History | Annotate | Download | only in rendering

Lines Matching refs:borderWidth

853         unsigned borderWidth = 0;
859 borderWidth = tb.width();
866 borderWidth = max(borderWidth, static_cast<unsigned>(gb.width()));
879 borderWidth = max(borderWidth, static_cast<unsigned>(sb.width()));
893 borderWidth = max(borderWidth, static_cast<unsigned>(cb.width()));
895 borderWidth = max(borderWidth, static_cast<unsigned>(rb.width()));
898 return (borderWidth + (style()->isLeftToRightDirection() ? 0 : 1)) / 2;
910 unsigned borderWidth = 0;
916 borderWidth = tb.width();
924 borderWidth = max(borderWidth, static_cast<unsigned>(gb.width()));
937 borderWidth = max(borderWidth, static_cast<unsigned>(sb.width()));
951 borderWidth = max(borderWidth, static_cast<unsigned>(cb.width()));
953 borderWidth = max(borderWidth, static_cast<unsigned>(rb.width()));
956 return (borderWidth + (style()->isLeftToRightDirection() ? 1 : 0)) / 2;
985 int borderWidth = 0;
996 borderWidth = topSection->outerBorderBefore();
997 if (borderWidth == -1)
1004 borderWidth = max(borderWidth, static_cast<int>(tb.width() / 2));
1005 return borderWidth;
1012 int borderWidth = 0;
1022 borderWidth = bottomSection->outerBorderAfter();
1023 if (borderWidth == -1)
1030 borderWidth = max(borderWidth, static_cast<int>((tb.width() + 1) / 2));
1031 return borderWidth;
1039 int borderWidth = 0;
1045 borderWidth = (tb.width() + (style()->isLeftToRightDirection() ? 0 : 1)) / 2;
1056 borderWidth = max(borderWidth, sw);
1061 return borderWidth;
1069 int borderWidth = 0;
1075 borderWidth = (tb.width() + (style()->isLeftToRightDirection() ? 1 : 0)) / 2;
1086 borderWidth = max(borderWidth, sw);
1091 return borderWidth;