Home
last modified time | relevance | path

Searched refs:computeSize (Results 1 – 25 of 918) sorted by relevance

12345678910>>...37

/dports/graphics/jogamp-jogl/gluegen/src/java/com/jogamp/gluegen/cgram/types/
H A DSizeThunk.java75 public abstract long computeSize(MachineDataInfo machDesc); in computeSize() method in SizeThunk
129 public long computeSize(final MachineDataInfo machDesc) {
144 public long computeSize(final MachineDataInfo machDesc) {
159 public long computeSize(final MachineDataInfo machDesc) {
174 public long computeSize(final MachineDataInfo machDesc) {
189 public long computeSize(final MachineDataInfo machDesc) {
204 public long computeSize(final MachineDataInfo machDesc) {
219 public long computeSize(final MachineDataInfo machDesc) {
269 return thunk1.computeSize(machDesc) + thunk2.computeSize(machDesc); in add()
294 return thunk1.computeSize(machDesc) * thunk2.computeSize(machDesc);
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests.forms/forms/org/eclipse/ui/tests/forms/layout/
H A DTestColumnWrapLayout.java116 Point size = inner.computeSize(SWT.DEFAULT, SWT.DEFAULT); in testColumnLayoutInShell()
128 Point size = inner.computeSize(SWT.DEFAULT, SWT.DEFAULT); in testHorizontalSpacingHasNoEffectWhenOnlyOneColumn()
139 Point size = inner.computeSize(SWT.DEFAULT, SWT.DEFAULT); in testHorizontalSpacing()
151 Point size = inner.computeSize(SWT.DEFAULT, SWT.DEFAULT); in testHorizontalMargins()
163 Point size = inner.computeSize(SWT.DEFAULT, SWT.DEFAULT); in testVerticalSpacingHasNoEffectWhenOnlyOneColumn()
217 size = inner.computeSize(109, SWT.DEFAULT); in testSelectsCorrectNumberOfColumns()
231 size = inner.computeSize(108, SWT.DEFAULT); in testSelectsCorrectNumberOfColumns()
312 size = inner.computeSize(25, SWT.DEFAULT); in testLeftAlignment()
326 inner.computeSize(SWT.DEFAULT, SWT.DEFAULT, false); in testControlsFlushedCorrectly()
330 inner.computeSize(SWT.DEFAULT, SWT.DEFAULT, false); in testControlsFlushedCorrectly()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/
H A DTest_org_eclipse_swt_widgets_Link.java118 link.computeSize(0, 0); in test_computeSizeIIZ()
120 link.computeSize(0, 0, false); in test_computeSizeIIZ()
122 link.computeSize(-10, -10); in test_computeSizeIIZ()
124 link.computeSize(-10, -10, false); in test_computeSizeIIZ()
126 link.computeSize(10, 10); in test_computeSizeIIZ()
128 link.computeSize(10, 10, false); in test_computeSizeIIZ()
130 link.computeSize(10000, 10000); in test_computeSizeIIZ()
132 link.computeSize(10000, 10000, false); in test_computeSizeIIZ()
H A DTest_org_eclipse_swt_widgets_CoolItem.java92 Point size = coolItem.computeSize(SWT.DEFAULT, SWT.DEFAULT); in test_computeSizeII()
94 Point size2 = coolItem.computeSize(SWT.DEFAULT, SWT.DEFAULT); in test_computeSizeII()
97 size = coolItem.computeSize(50, 25); in test_computeSizeII()
98 size2 = coolItem.computeSize(100, 25); in test_computeSizeII()
102 size = coolItem.computeSize(1,1); in test_computeSizeII()
103 size2 = coolItem.computeSize(26, 26); in test_computeSizeII()
195 size = button.computeSize(SWT.DEFAULT, SWT.DEFAULT); in test_setControlLorg_eclipse_swt_widgets_Control()
196 size2 = coolItem.computeSize(size.x, size.y); in test_setControlLorg_eclipse_swt_widgets_Control()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/
H A DWrappedPageBook.java32 protected Point computeSize(Composite composite, int wHint, int hHint, in computeSize() method in WrappedPageBook.PageBookLayout
38 result = currentPage.computeSize(wHint, hHint, flushCache); in computeSize()
54 return computeSize(parent, SWT.DEFAULT, SWT.DEFAULT, changed).x; in computeMaximumWidth()
59 return computeSize(parent, 0, SWT.DEFAULT, changed).x; in computeMinimumWidth()
108 public Point computeSize(int wHint, int hHint, boolean changed) { in computeSize() method in WrappedPageBook
109 return ((PageBookLayout) getLayout()).computeSize(this, wHint, hHint, in computeSize()
/dports/misc/mnn/MNN-1.2.0/source/backend/metal/
H A DMetalConvolution1x1.metal67 int computeSize = min(cst.output_size - rx, CONV_UNROLL);
68 if (computeSize == CONV_UNROLL) {
85 } else if (computeSize == 3) {
99 } else if (computeSize == 2) {
121 if (computeSize > 1) {xy_out[1] = activate(ftype4(result1), cst.activation); }
122 if (computeSize > 2) {xy_out[2] = activate(ftype4(result2), cst.activation); }
123 if (computeSize > 3) {xy_out[3] = activate(ftype4(result3), cst.activation); }
152 int computeSize = min(cst.output_size - rx, CONV_UNROLL_L);
184 if (computeSize > 1) {xy_out[1] = activate(ftype4(result1), cst.activation); }
185 if (computeSize > 2) {xy_out[2] = activate(ftype4(result2), cst.activation); }
[all …]
/dports/print/scribus-devel/scribus-1.5.7/scribus/plugins/export/pixmapexport/
H A Ddialog.cpp56 computeSize(); in ExportForm()
62 connect(enlargementBox, SIGNAL(valueChanged(int)), this, SLOT(computeSize())); in ExportForm()
63 connect(DPIBox, SIGNAL(valueChanged(int)), this, SLOT(computeSize())); in ExportForm()
67 void ExportForm::computeSize() in computeSize() function in ExportForm
94 computeSize(); in IntervalPagesRadio_stateChanged()
101 computeSize(); in AllPagesRadio_stateChanged()
108 computeSize(); in OnePageRadio_stateChanged()
/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 DExpandableComposite.java408 protected Point computeSize(Composite parent, int wHint, int hHint, in computeSize() method in ExpandableComposite.ExpandableLayout
415 toggleSize = toggleCache.computeSize(SWT.DEFAULT, SWT.DEFAULT); in computeSize()
488 csize = clientCache.computeSize(minWidth, SWT.DEFAULT); in computeSize()
490 csize = clientCache.computeSize(cwHint, SWT.DEFAULT); in computeSize()
499 dsize = descriptionCache.computeSize(dwHint, SWT.DEFAULT); in computeSize()
532 return computeSize(parent, MIN_WIDTH, SWT.DEFAULT, changed).x; in computeMinimumWidth()
537 return computeSize(parent, SWT.DEFAULT, SWT.DEFAULT, changed).x; in computeMaximumWidth()
973 public Point computeSize(int wHint, int hHint, boolean changed) { in computeSize() method in ExpandableComposite
978 size = layout.computeSize(this, wHint, hHint, changed); in computeSize()
1044 int theight = textLabel.computeSize(SWT.DEFAULT, SWT.DEFAULT).y; in getTextClientHeightDifference()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/
H A DSizeCache.java143 preferredSize = computeSize(control, SWT.DEFAULT, SWT.DEFAULT); in getPreferredSize()
158 public Point computeSize(int widthHint, int heightHint) { in computeSize() method in SizeCache
225 cachedHeight = computeSize(control, widthHint, heightHint); in computeSize()
248 cachedWidth = computeSize(control, widthHint, heightHint); in computeSize()
253 return computeSize(control, widthHint, heightHint); in computeSize()
266 private Point computeSize(Control control, int widthHint, int heightHint) { in computeSize() method in SizeCache
270 Point result = control.computeSize(adjustedWidthHint, adjustedHeightHint, flushChildren); in computeSize()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/layout/
H A DComputeSizeTest.java78 case 0: widget.computeSize(xSize, SWT.DEFAULT, flushState); break; in runTest()
79 case 1: widget.computeSize(SWT.DEFAULT, ySize, flushState); break; in runTest()
80 case 2: widget.computeSize(xSize, ySize, flushState); break; in runTest()
81 case 3: widget.computeSize(SWT.DEFAULT, SWT.DEFAULT, flushState); break; in runTest()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/com/aelitis/azureus/ui/swt/devices/
H A DTranscodeChooser.java271 Point computeSize = shell.computeSize(shell.getClientArea().width, in initBottom() local
273 shell.setSize(computeSize); in initBottom()
389 Point computeSize = shell.computeSize( in createProfileList()
392 shell.setSize(computeSize); in createProfileList()
476 Point computeSize = shell.computeSize(total_images>12?800:600, SWT.DEFAULT, true); in createProfileList() local
477 shell.setSize(computeSize); in createProfileList()
589 Point computeSize = shell.computeSize(600, SWT.DEFAULT, true); in addImageBox()
630 Point computeSize = shell.computeSize(shell.getClientArea().width, in resetProfileInfoBox() local
632 shell.setSize(computeSize); in resetProfileInfoBox()
764 Point computeSize = shell.computeSize(400, SWT.DEFAULT, true); in createDeviceList() local
[all …]
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/ui/swt/components/
H A DDoubleBufferedLabel.java88 computeSize( in computeSize() method in DoubleBufferedLabel
92 return computeSize(wHint, hHint, true); in computeSize()
96 computeSize( in computeSize() method in DoubleBufferedLabel
102 Point pt = computeSize(wHint, hHint, changed, false); in computeSize()
116 computeSize( in computeSize() method in DoubleBufferedLabel
/dports/multimedia/gstreamer1-plugins-svt-hevc/SVT-HEVC-1.5.1/Source/Lib/ASM_AVX2/
H A DEbTransforms_AVX2.h66 const EB_U32 computeSize, //Computation area size
79 const EB_U32 computeSize,
90 const EB_U32 computeSize, //Computation area size
100 const EB_U32 computeSize, //Computation area size
/dports/multimedia/svt-hevc/SVT-HEVC-1.5.1/Source/Lib/ASM_AVX2/
H A DEbTransforms_AVX2.h66 const EB_U32 computeSize, //Computation area size
79 const EB_U32 computeSize,
90 const EB_U32 computeSize, //Computation area size
100 const EB_U32 computeSize, //Computation area size
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/
H A DCTabFolderLayout.java27 protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) { in computeSize() method in CTabFolderLayout
38 tabW = Math.max(tabW, renderer.computeSize(i, SWT.SELECTED, gc, SWT.DEFAULT, SWT.DEFAULT).x); in computeSize()
42 tabW += renderer.computeSize(i, state, gc, SWT.DEFAULT, SWT.DEFAULT).x; in computeSize()
57 width += control.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; in computeSize()
92 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
H A DCLayoutData.java25 Point computeSize (Control control, int wHint, int hHint, boolean flushCache) { in computeSize() method in CLayoutData
29 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
36 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/custom/
H A DCTabFolderLayout.java27 protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) { in computeSize() method in CTabFolderLayout
38 tabW = Math.max(tabW, renderer.computeSize(i, SWT.SELECTED, gc, SWT.DEFAULT, SWT.DEFAULT).x); in computeSize()
42 tabW += renderer.computeSize(i, state, gc, SWT.DEFAULT, SWT.DEFAULT).x; in computeSize()
57 width += control.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; in computeSize()
92 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
H A DCLayoutData.java25 Point computeSize (Control control, int wHint, int hHint, boolean flushCache) { in computeSize() method in CLayoutData
29 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
36 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/
H A DRowLayout.java204 protected Point computeSize (Composite composite, int wHint, int hHint, boolean flushCache) { in computeSize() method in RowLayout
216 Point computeSize (Control control, boolean flushCache) { in computeSize() method in RowLayout
223 return control.computeSize (wHint, hHint, flushCache); in computeSize()
265 Point size = computeSize (child, flushCache); in layoutHorizontal()
267 …size = child.computeSize (width, child.getLayoutData() == null ? SWT.DEFAULT : ((RowData) child.ge… in layoutHorizontal()
291 Point size = computeSize (child, flushCache); in layoutHorizontal()
293 …size = child.computeSize (width, child.getLayoutData() == null ? SWT.DEFAULT : ((RowData) child.ge… in layoutHorizontal()
390 Point size = computeSize (child, flushCache); in layoutVertical()
392 …size=child.computeSize(child.getLayoutData()==null?SWT.DEFAULT:((RowData)child.getLayoutData()).wi… in layoutVertical()
415 Point size = computeSize (child, flushCache); in layoutVertical()
[all …]
H A DFillData.java25 Point computeSize (Control control, int wHint, int hHint, boolean flushCache) { in computeSize() method in FillData
29 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
36 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/layout/
H A DRowLayout.java204 protected Point computeSize (Composite composite, int wHint, int hHint, boolean flushCache) { in computeSize() method in RowLayout
216 Point computeSize (Control control, boolean flushCache) { in computeSize() method in RowLayout
223 return control.computeSize (wHint, hHint, flushCache); in computeSize()
265 Point size = computeSize (child, flushCache); in layoutHorizontal()
267 …size = child.computeSize (width, child.getLayoutData() == null ? SWT.DEFAULT : ((RowData) child.ge… in layoutHorizontal()
291 Point size = computeSize (child, flushCache); in layoutHorizontal()
293 …size = child.computeSize (width, child.getLayoutData() == null ? SWT.DEFAULT : ((RowData) child.ge… in layoutHorizontal()
390 Point size = computeSize (child, flushCache); in layoutVertical()
392 …size=child.computeSize(child.getLayoutData()==null?SWT.DEFAULT:((RowData)child.getLayoutData()).wi… in layoutVertical()
415 Point size = computeSize (child, flushCache); in layoutVertical()
[all …]
H A DFillData.java25 Point computeSize (Control control, int wHint, int hHint, boolean flushCache) { in computeSize() method in FillData
29 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
36 Point size = control.computeSize (wHint, hHint, flushCache); in computeSize()
/dports/devel/folly/folly-2021.12.27.00/folly/detail/
H A DAtomicUnorderedMapUtils.h32 size_t computeSize(size_t size) { in computeSize() function
42 auto len = computeSize(size); in allocate()
68 auto len = computeSize(size); in deallocate()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/Folly/folly/detail/
H A DAtomicUnorderedMapUtils.h32 size_t computeSize(size_t size) { in computeSize() function
42 auto len = computeSize(size); in allocate()
68 auto len = computeSize(size); in deallocate()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/widgets/
H A Dnumber_badge.cpp38 computeSize(); in NUMBER_BADGE()
101 computeSize(); in SetMaximumNumber()
108 computeSize(); in SetTextSize()
132 void NUMBER_BADGE::computeSize() in computeSize() function in NUMBER_BADGE

12345678910>>...37