Home
last modified time | relevance | path

Searched refs:ruleWidth (Results 1 – 21 of 21) sorted by relevance

/dports/www/firefox-esr/firefox-91.8.0/layout/generic/
H A DnsColumnSetFrame.cpp125 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in ForEachColumnRule() local
126 if (!ruleWidth) return; in ForEachColumnRule()
133 nsSize ruleSize = isVertical ? nsSize(contentRect.width, ruleWidth) in ForEachColumnRule()
134 : nsSize(ruleWidth, contentRect.height); in ForEachColumnRule()
194 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in CreateBorderRenderers() local
195 if (!ruleWidth) return; in CreateBorderRenderers()
210 border.SetBorderWidth(eSideTop, ruleWidth); in CreateBorderRenderers()
216 border.SetBorderWidth(eSideLeft, ruleWidth); in CreateBorderRenderers()
/dports/www/firefox/firefox-99.0/layout/generic/
H A DnsColumnSetFrame.cpp129 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in ForEachColumnRule() local
130 if (!ruleWidth) return; in ForEachColumnRule()
137 nsSize ruleSize = isVertical ? nsSize(contentRect.width, ruleWidth) in ForEachColumnRule()
138 : nsSize(ruleWidth, contentRect.height); in ForEachColumnRule()
187 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in CreateBorderRenderers() local
188 if (!ruleWidth) return; in CreateBorderRenderers()
203 border.SetBorderWidth(eSideTop, ruleWidth); in CreateBorderRenderers()
209 border.SetBorderWidth(eSideLeft, ruleWidth); in CreateBorderRenderers()
/dports/mail/thunderbird/thunderbird-91.8.0/layout/generic/
H A DnsColumnSetFrame.cpp125 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in ForEachColumnRule() local
126 if (!ruleWidth) return; in ForEachColumnRule()
133 nsSize ruleSize = isVertical ? nsSize(contentRect.width, ruleWidth) in ForEachColumnRule()
134 : nsSize(ruleWidth, contentRect.height); in ForEachColumnRule()
194 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in CreateBorderRenderers() local
195 if (!ruleWidth) return; in CreateBorderRenderers()
210 border.SetBorderWidth(eSideTop, ruleWidth); in CreateBorderRenderers()
216 border.SetBorderWidth(eSideLeft, ruleWidth); in CreateBorderRenderers()
/dports/lang/spidermonkey78/firefox-78.9.0/layout/generic/
H A DnsColumnSetFrame.cpp125 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in ForEachColumnRule() local
126 if (!ruleWidth) return; in ForEachColumnRule()
133 nsSize ruleSize = isVertical ? nsSize(contentRect.width, ruleWidth) in ForEachColumnRule()
134 : nsSize(ruleWidth, contentRect.height); in ForEachColumnRule()
194 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in CreateBorderRenderers() local
195 if (!ruleWidth) return; in CreateBorderRenderers()
210 border.SetBorderWidth(eSideTop, ruleWidth); in CreateBorderRenderers()
216 border.SetBorderWidth(eSideLeft, ruleWidth); in CreateBorderRenderers()
/dports/lang/spidermonkey60/firefox-60.9.0/layout/generic/
H A DnsColumnSetFrame.cpp150 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in ForEachColumnRule() local
151 if (!ruleWidth) return; in ForEachColumnRule()
158 nsSize ruleSize = isVertical ? nsSize(contentRect.width, ruleWidth) in ForEachColumnRule()
159 : nsSize(ruleWidth, contentRect.height); in ForEachColumnRule()
219 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in CreateBorderRenderers() local
220 if (!ruleWidth) return; in CreateBorderRenderers()
234 border.SetBorderWidth(eSideTop, ruleWidth); in CreateBorderRenderers()
240 border.SetBorderWidth(eSideLeft, ruleWidth); in CreateBorderRenderers()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/style/
H A DStyleMultiColData.h49 unsigned short ruleWidth() const in ruleWidth() function
H A DRenderStyle.h716 unsigned short columnRuleWidth() const { return rareNonInheritedData->m_multiCol->ruleWidth(); } in columnRuleWidth()
/dports/graphics/diffpdf/diffpdf-2.1.3/
H A Doptionsform.hpp32 OptionsForm(QPen *pen, QBrush *brush, qreal *ruleWidth,
H A Doptionsform.cpp28 OptionsForm::OptionsForm(QPen *pen, QBrush *brush, qreal *ruleWidth, in OptionsForm() argument
31 : QDialog(parent), m_pen(pen), m_brush(brush), m_ruleWidth(ruleWidth), in OptionsForm()
H A Dmainwindow.cpp1562 qreal ruleWidth = settings.value("RuleWidth", 1.5).toDouble(); local
1566 OptionsForm form(&pen, &brush, &ruleWidth, &showToolTips,
1570 settings.setValue("RuleWidth", ruleWidth);
/dports/www/firefox-legacy/firefox-52.8.0esr/layout/generic/
H A DnsColumnSetFrame.cpp81 nscoord ruleWidth = colStyle->GetComputedColumnRuleWidth(); in PaintColumnRule() local
82 if (!ruleWidth) in PaintColumnRule()
96 border.SetBorderWidth(NS_SIDE_TOP, ruleWidth); in PaintColumnRule()
102 border.SetBorderWidth(NS_SIDE_LEFT, ruleWidth); in PaintColumnRule()
112 nsSize ruleSize = isVertical ? nsSize(contentRect.width, ruleWidth) in PaintColumnRule()
113 : nsSize(ruleWidth, contentRect.height); in PaintColumnRule()
/dports/math/py-svgmath/SVGMath-0.3.3/svgmath/
H A Dgenerators.py162 … node.ruleWidth + (node.width - 2 * node.ruleWidth - node.enumerator.width) * enumalign,
165 … node.ruleWidth + (node.width - 2 * node.ruleWidth - node.denominator.width) * denomalign,
168 if node.ruleWidth:
191 drawLine(output, node.color, node.ruleWidth,
H A Dmeasurers.py253 node.ruleWidth = node.parseLength(widthAttr, unitWidth)
268 node.width += (node.ruleWidth + node.ruleGap) * math.sqrt(1 + node.slope**2)
272 … node.height = node.ruleWidth / 2 + node.ruleGap + node.enumerator.height + node.enumerator.depth
273 … node.depth = node.ruleWidth / 2 + node.ruleGap + node.denominator.height + node.denominator.depth
274 node.width = max(node.enumerator.width, node.denominator.width) + 2 * node.ruleWidth
275 node.leftspace = node.ruleWidth
276 node.rightspace = node.ruleWidth
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DRenderBlock.cpp2306 int ruleWidth = style()->columnRuleWidth(); in paintColumnRules() local
2308 bool renderRule = ruleStyle > BHIDDEN && !ruleTransparent && ruleWidth <= colGap; in paintColumnRules()
2338 …int ruleLeft = isHorizontalWritingMode() ? tx + ruleLogicalLeft - ruleWidth / 2 + ruleAdd : tx + b… in paintColumnRules()
2339 … int ruleRight = isHorizontalWritingMode() ? ruleLeft + ruleWidth : ruleLeft + contentWidth(); in paintColumnRules()
2340 …alWritingMode() ? ty + borderTop() + paddingTop() : ty + ruleLogicalLeft - ruleWidth / 2 + ruleAdd; in paintColumnRules()
2341 … int ruleBottom = isHorizontalWritingMode() ? ruleTop + contentHeight() : ruleTop + ruleWidth; in paintColumnRules()
/dports/x11-toolkits/blt/blt2.5/generic/
H A DbltTreeView.c566 DEF_TV_RULE_WIDTH, Blt_Offset(TreeView, ruleWidth),
5574 int x2 =0, y2, ri, rw = tvPtr->ruleWidth;
5582 if (tvPtr->ruleWidth<0) {
5657 if (tvPtr->ruleWidth) { in DrawFlatEntry()
5792 if (tvPtr->ruleWidth) { in DrawTreeEntry()
6553 if (tvPtr->ruleWidth) { in DisplayTreeView()
H A DbltTreeView.h1058 int ruleWidth; /* Width of rule under entries */ member
/dports/www/mattermost-webapp/mattermost/client/
H A D662.120743da6bd8d2715b0f.js.map1ruleWidth","ruleSpacing","numShift","denomShift","frac","delimSize","denomm","denom","hasBarLine",…
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/
H A DChangeLog-2010-05-2424216 (WebCore::StyleMultiColData::ruleWidth):
H A DChangeLog-2007-10-1467645 (WebCore::StyleMultiColData::ruleWidth):
H A DChangeLog-2009-06-1689137 (WebCore::StyleMultiColData::ruleWidth):
/dports/www/element-web/element-v1.9.8/bundles/fe56de007a54db37c626/
H A Dvendors~init.js.map1 …pe","delimiter_makeSmallDelim","advanceWidth","spanHeight","texHeight","ruleWidth","delimiterExten…