Home
last modified time | relevance | path

Searched refs:cellLength (Results 1 – 25 of 73) sorted by relevance

123

/dports/games/LibreMines/LibreMines-1.8.0/src/
H A Dminefieldtheme.cpp56 pmMine.reset( new QPixmap( QIcon(prefix + "mine.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
57 pmZero.reset( new QPixmap( QIcon(prefix + "0.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
58 pmOne.reset( new QPixmap( QIcon(prefix + "1.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
59 pmTwo.reset( new QPixmap( QIcon(prefix + "2.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
60 pmThree.reset( new QPixmap( QIcon(prefix + "3.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
61 pmFour.reset( new QPixmap( QIcon(prefix + "4.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
62 pmFive.reset( new QPixmap( QIcon(prefix + "5.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
63 pmSix.reset( new QPixmap( QIcon(prefix + "6.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
64 pmSeven.reset( new QPixmap( QIcon(prefix + "7.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
65 pmEight.reset( new QPixmap( QIcon(prefix + "8.svg").pixmap(cellLength, cellLength) ) ); in vSetMinefieldTheme()
[all …]
H A Dlibreminesgui.cpp57 cellLength( 0 ), in LibreMinesGui()
330 cellLength = iLimitWidthField/_X; in vNewGame()
345 widgetBoardContents->setGeometry(0, 0, _X*cellLength, _Y*cellLength); in vNewGame()
371 cell.label->resize(cellLength, cellLength); in vNewGame()
375 cell.button->resize(cellLength, cellLength); in vNewGame()
377 cell.button->setIconSize(QSize(cellLength, cellLength)); in vNewGame()
1323 principalMatrix[_X][_Y].button->setIconSize(QSize(cellLength, cellLength)); in SLOT_flagCell()
1339 principalMatrix[_X][_Y].button->setIconSize(QSize(cellLength, cellLength)); in SLOT_unflagCell()
1748 scrollAreaBoard->ensureVisible(x*cellLength + cellLength/2, y*cellLength + cellLength/2, in vKeyboardControllerSetCurrentCell()
1749 cellLength/2 + 1, cellLength/2 + 1); in vKeyboardControllerSetCurrentCell()
[all …]
/dports/science/libgeodecomp/libgeodecomp-0.4.0/src/io/
H A Dmpiio.h33 MPI_Aint cellLength; variable
34 getLengths<DIM>(&headerLength, &cellLength, mpiDatatype);
37 MPI_File_seek(file, headerLength - cellLength, MPI_SEEK_SET);
51 offset(headerLength, coord, dimensions, cellLength),
96 MPI_Aint cellLength = 0; variable
97 getLengths<DIM>(&headerLength, &cellLength, mpiDatatype);
125 offset(headerLength, coord, dimensions, cellLength),
184 const MPI_Aint& cellLength) in offset() argument
186 return headerLength + c.toIndex(dimensions) * cellLength; in offset()
192 MPI_Aint *cellLength, in getLengths() argument
[all …]
/dports/math/vtk8/VTK-8.2.0/Filters/Generic/
H A DvtkGenericStreamTracer.cxx352 double cellLength, in ConvertToTime() argument
365 retVal = interval.Interval*cellLength/speed; in ConvertToTime()
374 double cellLength, in ConvertToLength() argument
387 retVal = interval.Interval*cellLength; in ConvertToLength()
396 double cellLength, in ConvertToCellLength() argument
406 retVal = interval.Interval/cellLength; in ConvertToCellLength()
419 double cellLength, in ConvertToUnit() argument
447 this->InitialIntegrationStep, cellLength, speed); in ConvertIntervals()
880 double cellLength; in Integrate() local
898 cellLength, speed); in Integrate()
[all …]
H A DvtkGenericStreamTracer.h430 double cellLength, double speed);
432 double cellLength, double speed);
434 double cellLength, double speed);
436 double cellLength, double speed);
438 int direction, double cellLength, double speed);
/dports/math/vtk9/VTK-9.1.0/Filters/Generic/
H A DvtkGenericStreamTracer.cxx359 retVal = interval.Interval * cellLength / speed; in ConvertToTime()
379 retVal = interval.Interval * cellLength; in ConvertToLength()
393 retVal = (interval.Interval * speed) / cellLength; in ConvertToCellLength()
396 retVal = interval.Interval / cellLength; in ConvertToCellLength()
413 retVal = ConvertToTime(interval, cellLength, speed); in ConvertToUnit()
416 retVal = ConvertToLength(interval, cellLength, speed); in ConvertToUnit()
419 retVal = ConvertToCellLength(interval, cellLength, speed); in ConvertToUnit()
835 double cellLength; in Integrate() local
847 cellLength = sqrt(static_cast<double>(cell->GetLength2())); in Integrate()
942 delT.Interval = this->ConvertToTime(aStep, cellLength, speed); in Integrate()
[all …]
H A DvtkGenericStreamTracer.h422 static double ConvertToTime(IntervalInformation& interval, double cellLength, double speed);
423 static double ConvertToLength(IntervalInformation& interval, double cellLength, double speed);
424 static double ConvertToCellLength(IntervalInformation& interval, double cellLength, double speed);
426 IntervalInformation& interval, int unit, double cellLength, double speed);
428 double& step, double& minStep, double& maxStep, int direction, double cellLength, double speed);
/dports/math/vtk6/VTK-6.2.0/Filters/Generic/
H A DvtkGenericStreamTracer.cxx352 double cellLength, in ConvertToTime() argument
365 retVal = interval.Interval*cellLength/speed; in ConvertToTime()
374 double cellLength, in ConvertToLength() argument
387 retVal = interval.Interval*cellLength; in ConvertToLength()
396 double cellLength, in ConvertToCellLength() argument
406 retVal = interval.Interval/cellLength; in ConvertToCellLength()
419 double cellLength, in ConvertToUnit() argument
447 this->InitialIntegrationStep, cellLength, speed); in ConvertIntervals()
881 double cellLength; in Integrate() local
899 cellLength, speed); in Integrate()
[all …]
H A DvtkGenericStreamTracer.h382 double cellLength, double speed);
384 double cellLength, double speed);
386 double cellLength, double speed);
388 double cellLength, double speed);
390 int direction, double cellLength, double speed);
/dports/math/vtk8/VTK-8.2.0/IO/Geometry/
H A DvtkParticleReader.cxx530 unsigned long cellLength; in ProduceOutputFromBinaryFileDouble() local
668 cellLength = 1000; in ProduceOutputFromBinaryFileDouble()
669 if (cellLength > length) in ProduceOutputFromBinaryFileDouble()
671 cellLength = length; in ProduceOutputFromBinaryFileDouble()
673 length = length - cellLength; in ProduceOutputFromBinaryFileDouble()
674 verts->InsertNextCell((int)cellLength); in ProduceOutputFromBinaryFileDouble()
712 unsigned long cellLength; in ProduceOutputFromBinaryFileFloat() local
851 cellLength = 1000; in ProduceOutputFromBinaryFileFloat()
852 if (cellLength > length) in ProduceOutputFromBinaryFileFloat()
854 cellLength = length; in ProduceOutputFromBinaryFileFloat()
[all …]
/dports/math/vtk9/VTK-9.1.0/IO/Geometry/
H A DvtkParticleReader.cxx517 unsigned long cellLength; in ProduceOutputFromBinaryFileDouble() local
651 cellLength = 1000; in ProduceOutputFromBinaryFileDouble()
652 if (cellLength > length) in ProduceOutputFromBinaryFileDouble()
654 cellLength = length; in ProduceOutputFromBinaryFileDouble()
656 length = length - cellLength; in ProduceOutputFromBinaryFileDouble()
657 verts->InsertNextCell((int)cellLength); in ProduceOutputFromBinaryFileDouble()
694 unsigned long cellLength; in ProduceOutputFromBinaryFileFloat() local
827 cellLength = 1000; in ProduceOutputFromBinaryFileFloat()
828 if (cellLength > length) in ProduceOutputFromBinaryFileFloat()
830 cellLength = length; in ProduceOutputFromBinaryFileFloat()
[all …]
/dports/math/vtk6/VTK-6.2.0/IO/Geometry/
H A DvtkParticleReader.cxx526 unsigned long cellLength; in ProduceOutputFromBinaryFileDouble() local
678 cellLength = 1000; in ProduceOutputFromBinaryFileDouble()
679 if (cellLength > length) in ProduceOutputFromBinaryFileDouble()
681 cellLength = length; in ProduceOutputFromBinaryFileDouble()
683 length = length - cellLength; in ProduceOutputFromBinaryFileDouble()
684 verts->InsertNextCell((int)cellLength); in ProduceOutputFromBinaryFileDouble()
722 unsigned long cellLength; in ProduceOutputFromBinaryFileFloat() local
875 cellLength = 1000; in ProduceOutputFromBinaryFileFloat()
876 if (cellLength > length) in ProduceOutputFromBinaryFileFloat()
878 cellLength = length; in ProduceOutputFromBinaryFileFloat()
[all …]
/dports/math/vtk6/VTK-6.2.0/Filters/FlowPaths/
H A DvtkStreamTracer.cxx256 double interval, int unit, double cellLength ) in ConvertToLength() argument
266 retVal = interval * cellLength; in ConvertToLength()
272 vtkStreamTracer::IntervalInformation& interval, double cellLength ) in ConvertToLength() argument
274 return ConvertToLength( interval.Interval, interval.Unit, cellLength ); in ConvertToLength()
278 double& maxStep, int direction, double cellLength ) in ConvertIntervals() argument
287 this->IntegrationStepUnit, cellLength ); in ConvertIntervals()
828 double cellLength; in Integrate() local
837 cellLength = sqrt(static_cast<double>(cell->GetLength2())); in Integrate()
843 direction, cellLength ); in Integrate()
929 stepSize.Interval = this->ConvertToLength( aStep, cellLength ); in Integrate()
[all …]
/dports/math/vtk8/VTK-8.2.0/Filters/FlowPaths/
H A DvtkStreamTracer.cxx258 double interval, int unit, double cellLength ) in ConvertToLength() argument
267 retVal = interval * cellLength; in ConvertToLength()
273 vtkStreamTracer::IntervalInformation& interval, double cellLength ) in ConvertToLength() argument
275 return ConvertToLength( interval.Interval, interval.Unit, cellLength ); in ConvertToLength()
279 double& maxStep, int direction, double cellLength ) in ConvertIntervals() argument
288 this->IntegrationStepUnit, cellLength ); in ConvertIntervals()
847 double cellLength; in Integrate() local
856 cellLength = sqrt(static_cast<double>(cell->GetLength2())); in Integrate()
862 direction, cellLength ); in Integrate()
968 stepSize.Interval = this->ConvertToLength( aStep, cellLength ); in Integrate()
[all …]
/dports/math/vtk9/VTK-9.1.0/Filters/FlowPaths/
H A DvtkStreamTracer.cxx266 double vtkStreamTracer::ConvertToLength(double interval, int unit, double cellLength) in ConvertToLength() argument
275 retVal = interval * cellLength; in ConvertToLength()
282 vtkStreamTracer::IntervalInformation& interval, double cellLength) in ConvertToLength() argument
284 return ConvertToLength(interval.Interval, interval.Unit, cellLength); in ConvertToLength()
289 double& step, double& minStep, double& maxStep, int direction, double cellLength) in ConvertIntervals() argument
835 double cellLength; in Integrate() local
844 cellLength = sqrt(static_cast<double>(cell->GetLength2())); in Integrate()
955 stepSize.Interval = this->ConvertToLength(aStep, cellLength); in Integrate()
959 stepSize.Interval = this->ConvertToLength(aStep, cellLength) * (-1.0); in Integrate()
1024 cellLength = sqrt(static_cast<double>(cell->GetLength2())); in Integrate()
[all …]
H A DvtkLagrangianParticleTracker.cxx1004 double cellLength = this->ComputeCellLength(particle); in Integrate() local
1006 if (cellLength < 0.0) in Integrate()
1013 double stepLength = stepFactor * cellLength; in Integrate()
1014 double stepLengthMin = this->StepFactorMin * cellLength; in Integrate()
1015 double stepLengthMax = this->StepFactorMax * cellLength; in Integrate()
1137 stepFactor = stepTime * reintegrationFactor * velocityMagnitude / cellLength; in Integrate()
1250 double cellLength = 1.0; in ComputeCellLength() local
1291 cellLength = tmpCellLength; in ComputeCellLength()
1321 cellLength = std::fabs(vol) / xa; in ComputeCellLength()
1325 cellLength = std::sqrt(cell->GetLength2()); in ComputeCellLength()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
174 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
175 if (cellLength == 0) cellLength = 1; in installDefaults()
385 return cellLength; in getCellLength()
395 this.cellLength = cellLen; in setCellLength()
701 int cellLength = getCellLength(); in paintDeterminate() local
719 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
742 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
174 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
175 if (cellLength == 0) cellLength = 1; in installDefaults()
385 return cellLength; in getCellLength()
395 this.cellLength = cellLen; in setCellLength()
701 int cellLength = getCellLength(); in paintDeterminate() local
719 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
742 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
174 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
175 if (cellLength == 0) cellLength = 1; in installDefaults()
385 return cellLength; in getCellLength()
395 this.cellLength = cellLen; in setCellLength()
701 int cellLength = getCellLength(); in paintDeterminate() local
719 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
742 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
160 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
161 if (cellLength == 0) cellLength = 1; in installDefaults()
351 return cellLength; in getCellLength()
356 this.cellLength = cellLen; in setCellLength()
648 int cellLength = getCellLength(); in paintDeterminate() local
666 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
689 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
179 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
180 if (cellLength == 0) cellLength = 1; in installDefaults()
390 return cellLength; in getCellLength()
400 this.cellLength = cellLen; in setCellLength()
706 int cellLength = getCellLength(); in paintDeterminate() local
724 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
747 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
179 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
180 if (cellLength == 0) cellLength = 1; in installDefaults()
390 return cellLength; in getCellLength()
400 this.cellLength = cellLen; in setCellLength()
706 int cellLength = getCellLength(); in paintDeterminate() local
724 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
747 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
174 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
175 if (cellLength == 0) cellLength = 1; in installDefaults()
385 return cellLength; in getCellLength()
395 this.cellLength = cellLen; in setCellLength()
701 int cellLength = getCellLength(); in paintDeterminate() local
719 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
742 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
174 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
175 if (cellLength == 0) cellLength = 1; in installDefaults()
385 return cellLength; in getCellLength()
395 this.cellLength = cellLen; in setCellLength()
701 int cellLength = getCellLength(); in paintDeterminate() local
719 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
742 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java48 private int cellLength, cellSpacing; field in BasicProgressBarUI
174 cellLength = UIManager.getInt("ProgressBar.cellLength"); in installDefaults()
175 if (cellLength == 0) cellLength = 1; in installDefaults()
385 return cellLength; in getCellLength()
395 this.cellLength = cellLen; in setCellLength()
701 int cellLength = getCellLength(); in paintDeterminate() local
719 0.f, new float[] { cellLength, cellSpacing }, 0.f)); in paintDeterminate()
742 0f, new float[] { cellLength, cellSpacing }, 0f)); in paintDeterminate()

123