Home
last modified time | relevance | path

Searched refs:innerWidth (Results 1 – 25 of 871) sorted by relevance

12345678910>>...35

/dports/math/reduce/Reduce-svn5758-src/jlisp/android/AndroidReduce/src/uk/ac/cam/aa582/structures/boxes/
H A DFractionBox.java52 return width = this.innerWidth() + (2 * leftMargin()); in width()
92 innerWidth = Float.NEGATIVE_INFINITY; in eraseMemory()
98 …float x1 = leftMargin() + (numerator.width() < this.innerWidth() ? ((this.innerWidth() - numerator… in onDraw()
105 float stopX = startX + innerWidth(); in onDraw()
110 …float x2 = leftMargin() + (denominator.width() < this.innerWidth() ? ((this.innerWidth() - denomin… in onDraw()
169 private float innerWidth() { in innerWidth() method in FractionBox
170 if(optimize && innerWidth >= 0) return innerWidth; in innerWidth()
171 return innerWidth = Math.max(numerator.width(), denominator.width()); in innerWidth()
184 float innerWidth = Float.NEGATIVE_INFINITY; field in FractionBox
199 float dn_squeeze = this.innerWidth() - Math.max(dw - d_squeeze, nw - n_squeeze); in getSquashingDistance()
/dports/devel/lab/lab-0.17.2/vendor/github.com/rivo/tview/
H A Dbox.go20 innerX, innerY, innerWidth, innerHeight int member
95 return b.innerX, b.innerY, b.innerWidth, b.innerHeight
306 b.innerX, b.innerY, b.innerWidth, b.innerHeight = b.draw(screen, b.x, b.y, b.width, b.height)
310 b.innerX, b.innerY, b.innerWidth, b.innerHeight = b.GetInnerRect()
316 b.innerWidth += b.innerX
319 if b.innerX+b.innerWidth >= width {
320 b.innerWidth = width - b.innerX
329 if b.innerWidth < 0 {
330 b.innerWidth = 0
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/rivo/tview/
H A Dbox.go20 innerX, innerY, innerWidth, innerHeight int member
95 return b.innerX, b.innerY, b.innerWidth, b.innerHeight
306 b.innerX, b.innerY, b.innerWidth, b.innerHeight = b.draw(screen, b.x, b.y, b.width, b.height)
310 b.innerX, b.innerY, b.innerWidth, b.innerHeight = b.GetInnerRect()
316 b.innerWidth += b.innerX
319 if b.innerX+b.innerWidth >= width {
320 b.innerWidth = width - b.innerX
329 if b.innerWidth < 0 {
330 b.innerWidth = 0
/dports/lang/nim/nim-1.6.2/tests/niminaction/Chapter8/canvas/
H A Dcanvas_test.nim5 canvas.width = window.innerWidth
10 ctx.fillRect(0, 0, window.innerWidth, window.innerHeight)
14 let letterLeftPos = (window.innerWidth div 2) - (letterWidth div 2)
/dports/games/cdogs-sdl/cdogs-sdl-1.0.1/src/cdogs/hud/
H A Dgauge.c40 const int width, const int innerWidth, in HUDDrawGauge() argument
50 if (innerWidth > 0) in HUDDrawGauge()
52 HUDDrawGaugeInner(g, pm, pos, innerWidth, barColor); in HUDDrawGauge()
/dports/www/webtrees/webtrees-1.7.18/webtrees/assets/js-1.7.9/
H A Djquery.wheelzoom.patch2 > innerWidth = $img.innerWidth(),
4 > PosX = (innerWidth - width)/2,
/dports/www/grafana8/grafana-8.3.6/packages/grafana-ui/src/components/PanelChrome/
H A DPanelChrome.tsx15 children: (innerWidth: number, innerHeight: number) => React.ReactNode;
38 …const { contentStyle, innerWidth, innerHeight } = getContentStyle(padding, theme, width, headerHei…
55 {children(innerWidth, innerHeight)}
82 const innerWidth = width - chromePadding * 2 - panelBorder;
89 return { contentStyle, innerWidth, innerHeight };
/dports/www/grafana8/grafana-8.3.6/packages/grafana-ui/src/components/Table/
H A DTableCell.tsx27 let innerWidth = ((cell.column.width as number) ?? 24) - tableStyles.cellPadding * 2;
31 innerWidth -= tableStyles.lastChildExtraPadding;
39 innerWidth,
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/rivo/tview/tview-2e907d29e475/
H A Dbox.go20 innerX, innerY, innerWidth, innerHeight int member
94 return b.innerX, b.innerY, b.innerWidth, b.innerHeight
298 b.innerX, b.innerY, b.innerWidth, b.innerHeight = b.draw(screen, b.x, b.y, b.width, b.height)
302 b.innerX, b.innerY, b.innerWidth, b.innerHeight = b.GetInnerRect()
308 b.innerWidth += b.innerX
311 if b.innerX+b.innerWidth >= width {
312 b.innerWidth = width - b.innerX
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/
H A DHyperlink.java158 int innerWidth = wHint; in computeSize() local
159 if (innerWidth != SWT.DEFAULT) { in computeSize()
160 innerWidth -= marginWidth * 2; in computeSize()
161 if (innerWidth < 0) in computeSize()
162 innerWidth = 0; in computeSize()
170 Point textSize = computeTextSize(innerWidth, innerHeight); in computeSize()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/modelinglib/qmt/stereotype/
H A Dstereotypecontroller.cpp193 qreal innerWidth = size.width() - margins.left() - margins.right(); in createIcon() local
206 … qreal paintWidth = stereotypeIcon.width() * innerWidth / iconBoundingRect.width() * widthRatio; in createIcon()
209 if (paintWidth > innerWidth) { in createIcon()
210 paintHeight *= innerWidth / paintHeight; in createIcon()
211 paintWidth = innerWidth; in createIcon()
233 … + QPointF((innerWidth - totalPaintWidth) / 2, (innerHeight - totalPaintHeight) / 2)); in createIcon()
/dports/finance/fava/fava-1.18/frontend/src/charts/
H A DBarChart.svelte30 $: innerWidth = Math.min(width - margin.left - margin.right, maxWidth);
36 .range([0, innerWidth]);
61 const labelsCount = innerWidth / 70;
73 $: yAxis = axisLeft(y).tickSize(-innerWidth).tickFormat(formatCurrencyShort);
H A DScatterPlot.svelte24 $: innerWidth = width - margin.left - margin.right;
31 .range([0, innerWidth]);
41 .tickSize(-innerWidth)
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/base/
H A DnsScreen.h58 int32_t innerWidth = 0; in GetWidth() local
59 aRv = owner->GetInnerWidth(&innerWidth); in GetWidth()
60 return innerWidth; in GetWidth()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/base/
H A DnsScreen.h52 int32_t innerWidth = 0; in GetWidth() local
53 aRv = owner->GetInnerWidth(&innerWidth); in GetWidth()
54 return innerWidth; in GetWidth()
/dports/deskutils/egroupware/egroupware/api/js/etemplate/
H A Det2_dataview_view_resizeable.ts177 var max_width = column.children().children().innerWidth();
205 if(col.innerWidth() > max_width)
207 max_width = col.innerWidth();
/dports/www/firefox/firefox-99.0/browser/components/shell/
H A DScreenshotChild.jsm27 innerWidth: contentWindow.innerWidth,
/dports/www/firefox-esr/firefox-91.8.0/browser/components/shell/
H A DScreenshotChild.jsm27 innerWidth: contentWindow.innerWidth,
/dports/mail/thunderbird/thunderbird-91.8.0/browser/components/shell/
H A DScreenshotChild.jsm27 innerWidth: contentWindow.innerWidth,
/dports/www/ilias/ILIAS-5.4.25/libs/bower/bower_components/yui2/src/common/tests/functional/yui/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/
H A DDragAndDropShim.java22 int innerWidth = getViewportWidth(); in ddTest() local
24 int deltaX = -(innerWidth - elWidth - 170); in ddTest()
/dports/www/ilias6/ILIAS-6.14/libs/bower/bower_components/yui2/src/common/tests/functional/yui/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/
H A DDragAndDropShim.java22 int innerWidth = getViewportWidth(); in ddTest() local
24 int deltaX = -(innerWidth - elWidth - 170); in ddTest()
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/Units/parser-typescript.r/ts-const.d/
H A Dinput.ts14 window.innerWidth / window.innerHeight,
20 renderer.setSize(window.innerWidth, window.innerHeight);
/dports/lang/spidermonkey78/firefox-78.9.0/remote/domains/content/
H A DEmulation.jsm31 if (win.innerWidth === width && win.innerHeight === height) {
37 if (win.innerWidth === width && win.innerHeight === height) {
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/history/view/media/
H A Dhistory_view_invoice.cpp143 auto innerWidth = newWidth - st::msgPadding.left() - st::msgPadding.right(); in countCurrentSize() local
151 if (_title.countHeight(innerWidth) < 2 * st::webPageTitleFont->height) { in countCurrentSize()
162 _descriptionHeight = _description.countHeight(innerWidth); in countCurrentSize()
172 _attach->resizeGetHeight(innerWidth + bubble.left() + bubble.right()); in countCurrentSize()
174 …->customInfoLayout() && _attach->width() + _parent->skipBlockWidth() > innerWidth + bubble.left() … in countCurrentSize()
178 newHeight += st::mediaInBubbleSkip + _status.countHeight(innerWidth); in countCurrentSize()
/dports/www/nextcloud/nextcloud/apps-pkg/theming/lib/
H A DIconBuilder.php200 $innerWidth = ($appIconFile->getImageWidth() - $border_w * 2);
202 $appIconFile->adaptiveResizeImage($innerWidth, $innerHeight);
204 $offset_w = (int)(512 / 2 - $innerWidth / 2);

12345678910>>...35