Home
last modified time | relevance | path

Searched refs:totalSteps (Results 1 – 25 of 263) sorted by relevance

1234567891011

/dports/games/scummvm/scummvm-2.5.1/engines/saga2/
H A Dspellini.cpp69 effectron->totalSteps = effectron->parent->maxAge; in SPELLINITFUNCTION()
71 effectron->totalSteps = 20; in SPELLINITFUNCTION()
82 effectron->totalSteps = effectron->parent->maxAge; in SPELLINITFUNCTION()
84 effectron->totalSteps = 20; in SPELLINITFUNCTION()
96 effectron->totalSteps = effectron->parent->maxAge; in SPELLINITFUNCTION()
98 effectron->totalSteps = 20; in SPELLINITFUNCTION()
113 effectron->velocity = tp / effectron->totalSteps; in SPELLINITFUNCTION()
130 effectron->velocity = tp / effectron->totalSteps; in SPELLINITFUNCTION()
131 effectron->totalSteps += (effectron->partno / 2); in SPELLINITFUNCTION()
247 effectron->velocity = tp / effectron->totalSteps; in SPELLINITFUNCTION()
[all …]
H A Dspellsta.cpp56 if (effectron->stepNo > effectron->totalSteps) in SPELLSTATUSFUNCTION()
62 if (effectron->stepNo > effectron->totalSteps) in SPELLSTATUSFUNCTION()
70 if (effectron->stepNo > effectron->totalSteps) in SPELLSTATUSFUNCTION()
79 if (effectron->stepNo >= effectron->totalSteps) in SPELLSTATUSFUNCTION()
85 if (effectron->stepNo - (effectron->partno / 9) > effectron->totalSteps) in SPELLSTATUSFUNCTION()
93 if ((effectron->partno > effectron->totalSteps) || in SPELLSTATUSFUNCTION()
94 (effectron->stepNo > effectron->totalSteps)) in SPELLSTATUSFUNCTION()
100 if (effectron->stepNo - (effectron->partno / 9) > effectron->totalSteps) in SPELLSTATUSFUNCTION()
117 effectron->stepNo > effectron->totalSteps) in SPELLSTATUSFUNCTION()
124 effectron->stepNo > effectron->totalSteps) in SPELLSTATUSFUNCTION()
[all …]
H A Dspellsiz.cpp33 if (effectron->stepNo <= effectron->totalSteps) { in SPELLHEIGHTFUNCTION()
35 } else if (effectron->stepNo - effectron->totalSteps <= 8) { in SPELLHEIGHTFUNCTION()
36 return 8 * (effectron->stepNo - effectron->totalSteps); in SPELLHEIGHTFUNCTION()
42 if (effectron->stepNo <= effectron->totalSteps) { in SPELLBREADTHFUNCTION()
44 } else if (effectron->stepNo - effectron->totalSteps <= 8) { in SPELLBREADTHFUNCTION()
45 return 8 * (effectron->stepNo - effectron->totalSteps); in SPELLBREADTHFUNCTION()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/qt3support/widgets/
H A Dq3progressbar.cpp132 total_steps(totalSteps), in Q3ProgressBar()
187 total_steps(totalSteps), in Q3ProgressBar()
223 total_steps = totalSteps; in setTotalSteps()
271 if (total_steps != totalSteps) in setProgress()
272 setTotalSteps(totalSteps); in setProgress()
289 opt.maximum = pb->totalSteps(); in getStyleOption()
394 int totalSteps) in setIndicator() argument
396 if (!totalSteps) in setIndicator()
403 if (totalSteps > INT_MAX/1000) { in setIndicator()
405 totalSteps /= 1000; in setIndicator()
[all …]
H A Dq3progressbar.h60 Q_PROPERTY(int totalSteps READ totalSteps WRITE setTotalSteps)
68 Q3ProgressBar(int totalSteps, QWidget *parent, const char *name,
71 Q3ProgressBar(int totalSteps, QWidget *parent = 0, Qt::WindowFlags f=0);
73 int totalSteps() const;
94 virtual void setTotalSteps(int totalSteps);
96 void setProgress(int progress, int totalSteps);
100 virtual bool setIndicator(QString &progress_str, int progress, int totalSteps);
117 inline int Q3ProgressBar::totalSteps() const in totalSteps() function
/dports/science/jmol/jmol-14.32.7/src/org/jmol/thread/
H A DMoveToThread.java90 private int totalSteps; field in MoveToThread
164 if (totalSteps <= 0) in setManagerMove()
172 return totalSteps; in setManagerMove()
237 return totalSteps; in setManagerMoveTo()
267 / totalSteps); in run1Move()
270 / totalSteps); in run1Move()
273 / totalSteps); in run1Move()
279 / totalSteps)); in run1Move()
280 if (iStep == totalSteps) { in run1Move()
310 if (totalSteps > 0) in run1MoveTo()
[all …]
/dports/devel/qmake/qt-x11-free-3.3.8/src/widgets/
H A Dqprogressbar.h54 Q_PROPERTY( int totalSteps READ totalSteps WRITE setTotalSteps )
63 QProgressBar( int totalSteps, QWidget* parent=0, const char* name=0, WFlags f=0 );
65 int totalSteps() const;
85 virtual void setTotalSteps( int totalSteps );
87 void setProgress( int progress, int totalSteps );
92 int totalSteps );
114 inline int QProgressBar::totalSteps() const in totalSteps() function
/dports/print/scribus-devel/scribus-1.5.7/scribus/ui/
H A Dmultiprogressdialog.cpp111 bool MultiProgressDialog::setTotalSteps(const QString &barName, int totalSteps) in setTotalSteps() argument
115 progressBars[barName]->setMaximum(totalSteps); in setTotalSteps()
131 bool MultiProgressDialog::setProgress(const QString &barName, int progress, int totalSteps) in setProgress() argument
135 progressBars[barName]->setMaximum(totalSteps); in setProgress()
142 …ressDialog::setupBar(const QString &barName, const QString & barText, int progress, int totalSteps) in setupBar() argument
150 progressBars[barName]->setMaximum(totalSteps); in setupBar()
163 void MultiProgressDialog::setOverallTotalSteps(int totalSteps) in setOverallTotalSteps() argument
165 overallProgressBar->setMaximum(totalSteps); in setOverallTotalSteps()
173 void MultiProgressDialog::setOverallProgress(int progress, int totalSteps) in setOverallProgress() argument
175 overallProgressBar->setMaximum(totalSteps); in setOverallProgress()
H A Dscprogressbar.cpp32 ScProgressBar::ScProgressBar(bool showNumbers, int totalSteps, QWidget* parent) : in ScProgressBar() argument
36 setMaximum(totalSteps); in ScProgressBar()
44 bool ScProgressBar::setIndicator(QString & indicator, int progress, int totalSteps) in setIndicator() argument
46 if ( !totalSteps ) in setIndicator()
53 return QProgressBar::setIndicator(indicator, progress, totalSteps); in setIndicator()
56 indicator = tr("%1 of %2").arg(progress).arg(totalSteps); in setIndicator()
H A Dmultiprogressdialog.h107 bool setTotalSteps(const QString& barName, int totalSteps);
122 bool setProgress(const QString& barName, int progress, int totalSteps);
127 void setOverallTotalSteps(int totalSteps);
138 void setOverallProgress(int progress, int totalSteps);
147 bool setupBar(const QString&barName, const QString&barText, int progress, int totalSteps);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/qt3support/dialogs/
H A Dq3progressdialog.cpp77 int totalSteps) : in Q3ProgressDialogData() argument
81 bar(new Q3ProgressBar(totalSteps, that)), in Q3ProgressDialogData()
256 int totalSteps, in Q3ProgressDialog() argument
263 init(creator, labelText, cancelButtonText, totalSteps); in Q3ProgressDialog()
315 init(creator, labelText, cancelButtonText, totalSteps); in Q3ProgressDialog()
521 int Q3ProgressDialog::totalSteps() const in totalSteps() function in Q3ProgressDialog
524 return bar()->totalSteps(); in totalSteps()
528 void Q3ProgressDialog::setTotalSteps(int totalSteps) in setTotalSteps() argument
530 bar()->setTotalSteps(totalSteps); in setTotalSteps()
646 if (progress == bar()->totalSteps() && d->autoReset) in setProgress()
[all …]
H A Dq3progressdialog.h66 Q_PROPERTY(int totalSteps READ totalSteps WRITE setTotalSteps)
77 const QString &cancelButtonText, int totalSteps,
82 int totalSteps, QWidget* parent=0, Qt::WindowFlags f=0);
92 int totalSteps() const;
107 void setTotalSteps(int totalSteps);
109 void setProgress(int progress, int totalSteps);
/dports/devel/qmake/qt-x11-free-3.3.8/src/dialogs/
H A Dqprogressdialog.h58 Q_PROPERTY( int totalSteps READ totalSteps WRITE setTotalSteps )
69 int totalSteps, QWidget* parent=0, const char* name=0,
81 int totalSteps() const;
96 void setTotalSteps( int totalSteps );
98 void setProgress( int progress, int totalSteps );
/dports/x11-toolkits/qwt6/qwt-6.1.6/src/
H A Dqwt_abstract_slider.cpp54 totalSteps( 100 ), in PrivateData()
71 uint totalSteps; member in QwtAbstractSlider::PrivateData
471 d_data->totalSteps = stepCount; in setTotalSteps()
478 uint QwtAbstractSlider::totalSteps() const in totalSteps() function in QwtAbstractSlider
480 return d_data->totalSteps; in totalSteps()
668 if ( d_data->totalSteps == 0 ) in incrementedValue()
677 value += stepCount * range / d_data->totalSteps; in incrementedValue()
682 map.setPaintInterval( 0, d_data->totalSteps ); in incrementedValue()
689 const double stepSize = range / d_data->totalSteps; in incrementedValue()
694 v += stepCount * range / d_data->totalSteps; in incrementedValue()
[all …]
/dports/devel/xelfviewer/XELFViewer-0.03/XQwt/3rdparty/qwt/src/
H A Dqwt_abstract_slider.cpp54 totalSteps( 100 ), in PrivateData()
71 uint totalSteps; member in QwtAbstractSlider::PrivateData
471 d_data->totalSteps = stepCount; in setTotalSteps()
478 uint QwtAbstractSlider::totalSteps() const in totalSteps() function in QwtAbstractSlider
480 return d_data->totalSteps; in totalSteps()
668 if ( d_data->totalSteps == 0 ) in incrementedValue()
677 value += stepCount * range / d_data->totalSteps; in incrementedValue()
682 map.setPaintInterval( 0, d_data->totalSteps ); in incrementedValue()
689 const double stepSize = range / d_data->totalSteps; in incrementedValue()
694 v += stepCount * range / d_data->totalSteps; in incrementedValue()
[all …]
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Games/
H A DAchievementDefinition.php31 public $totalSteps; variable in Google_Service_Games_AchievementDefinition
122 public function setTotalSteps($totalSteps) argument
124 $this->totalSteps = $totalSteps;
128 return $this->totalSteps;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Games/
H A DAchievementDefinition.php31 public $totalSteps; variable in Google_Service_Games_AchievementDefinition
122 public function setTotalSteps($totalSteps) argument
124 $this->totalSteps = $totalSteps;
128 return $this->totalSteps;
/dports/deskutils/kchmviewer/kchmviewer-RELEASE_8_0/src/
H A Dkde-qt.cpp22 …Text, const QString & labelText, const QString & cancelButtonText, int totalSteps, QWidget * creat… in KQProgressModalDialog() argument
29 progressBar()->setMaximum( totalSteps ); in KQProgressModalDialog()
33 …Text, const QString & labelText, const QString & cancelButtonText, int totalSteps, QWidget * creat… in KQProgressModalDialog() argument
34 : QProgressDialog( labelText, cancelButtonText, 0, totalSteps, creator ) in KQProgressModalDialog()
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/Console/Concerns/
H A DInteractsWithIO.php244 * @param iterable|int $totalSteps
248 public function withProgressBar($totalSteps, Closure $callback) argument
251 is_iterable($totalSteps) ? count($totalSteps) : $totalSteps
256 if (is_iterable($totalSteps)) {
257 foreach ($totalSteps as $value) {
268 if (is_iterable($totalSteps)) {
269 return $totalSteps;
/dports/net/rssguard/rssguard-4.0.4/src/librssguard/gui/reusable/
H A Dprogressbarwithtext.cpp11 qint64 totalSteps = qint64(maximum()) - minimum(); in text() local
16 result.replace(QLatin1String("%m"), locale.toString(totalSteps)); in text()
22 if (totalSteps == 0) { in text()
27 const auto progress = static_cast<int>((qint64(value()) - minimum()) * 100.0 / totalSteps); in text()
/dports/graphics/yafaray/libYafaRay-3.5.1/src/gui/
H A Dqtprogress.cc37 void QtProgress::init(int totalSteps) in init() argument
40 m_totalSteps = totalSteps; in init()
41 QCoreApplication::postEvent(m_win, new ProgressUpdateEvent(0, 0, totalSteps)); in init()
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/q3progressdialog/
H A Dtst_q3progressdialog.cpp94 QCOMPARE(obj1.totalSteps(), 0); in getSetCheck()
96 QCOMPARE(obj1.totalSteps(), INT_MIN); in getSetCheck()
98 QCOMPARE(obj1.totalSteps(), INT_MAX); in getSetCheck()
/dports/math/py-graphillion/Graphillion-1.3/src/subsetting/util/
H A DMessageHandler.hpp116 int totalSteps; member in tdzdd::MessageHandler_
125 beginLine(0), totalSteps(0), stepCount(0), in MessageHandler_()
158 totalSteps = steps; in setSteps()
187 << (stepCount * 100 / totalSteps); in step()
195 while (dotCount * totalSteps < stepCount * 10) { in step()
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/methods/reinforcement_learning/
H A Dsac.hpp126 size_t& TotalSteps() { return totalSteps; } in TotalSteps()
128 const size_t& TotalSteps() const { return totalSteps; } in TotalSteps()
180 size_t totalSteps; member in mlpack::rl::SAC
H A Dq_learning.hpp114 size_t& TotalSteps() { return totalSteps; } in TotalSteps()
116 const size_t& TotalSteps() const { return totalSteps; } in TotalSteps()
174 size_t totalSteps; member in mlpack::rl::QLearning

1234567891011