Home
last modified time | relevance | path

Searched refs:orderBy (Results 1 – 25 of 2906) sorted by relevance

12345678910>>...117

/dports/databases/kdb/kdb-3.2.0/autotests/
H A DOrderByColumnTest.cpp44 QVERIFY(orderBy); in Q_DECLARE_METATYPE()
45 QVERIFY(orderBy->isEmpty()); in Q_DECLARE_METATYPE()
46 QCOMPARE(orderBy->count(), 0); in Q_DECLARE_METATYPE()
54 QVERIFY(!orderBy->isEmpty()); in Q_DECLARE_METATYPE()
64 QVERIFY(!orderBy->value(orderBy->count() + 10)); in Q_DECLARE_METATYPE()
121 QVERIFY(orderBy);
140 orderBy->clear();
152 orderBy->clear();
165 orderBy->clear();
176 orderBy->clear();
[all …]
/dports/net-mgmt/icingaweb2-module-ipl/icingaweb2-module-ipl-0.5.0/vendor/ipl/sql/src/
H A DOrderBy.php11 protected $orderBy; variable
15 return $this->orderBy !== null;
20 return $this->orderBy;
23 public function orderBy($orderBy, $direction = null) argument
25 if (! is_array($orderBy)) {
26 $orderBy = [$orderBy];
58 if ($this->orderBy !== null) {
59 foreach ($this->orderBy as &$orderBy) {
60 if ($orderBy[0] instanceof ExpressionInterface || $orderBy[0] instanceof Select) {
61 $orderBy[0] = clone $orderBy[0];
[all …]
/dports/net-mgmt/rackmonkey/rackmonkey-1.2.5-1/perl/RackMonkey/
H A DEngine.pm342 $orderBy = 'app.name' unless $self->_checkOrderBy($orderBy);
343 …$orderBy = $orderBy . ', app.name' unless $orderBy eq 'app.name'; # default second ordering is …
349 ORDER BY $orderBy
631 …$orderBy = 'os.meta_default_data, ' . $orderBy . ', device.os_version' if ($orderBy =~ /…
745 …$orderBy = 'os.meta_default_data, ' . $orderBy . ', device.os_version' if ($orderBy =~ /…
1203 $orderBy = 'org.meta_default_data, ' . $orderBy if ($orderBy =~ /^org.name/);
1407 $orderBy = 'org.name' unless $self->_checkOrderBy($orderBy);
1408 …$orderBy .= ' DESC' if ($orderBy eq 'org.customer' or $orderBy eq 'org.hardware' or $orderBy eq 'o…
1573 $orderBy = 'os.name' unless $self->_checkOrderBy($orderBy);
1574 $orderBy = 'org.meta_default_data, ' . $orderBy if ($orderBy =~ /^org.name/);
[all …]
/dports/dns/blocky/blocky-0.17/vendor/gorm.io/gorm/clause/
H A Dorder_by.go15 func (orderBy OrderBy) Name() string {
20 func (orderBy OrderBy) Build(builder Builder) {
21 if orderBy.Expression != nil {
22 orderBy.Expression.Build(builder)
24 for idx, column := range orderBy.Columns {
40 for i := len(orderBy.Columns) - 1; i >= 0; i-- {
41 if orderBy.Columns[i].Reorder {
42 orderBy.Columns = orderBy.Columns[i:]
43 clause.Expression = orderBy
50 orderBy.Columns = append(copiedColumns, orderBy.Columns...)
[all …]
/dports/www/gitea/gitea-1.16.5/routers/web/explore/
H A Drepo.go43 orderBy db.SearchOrderBy
49 orderBy = db.SearchOrderByNewest
51 orderBy = db.SearchOrderByOldest
55 orderBy = db.SearchOrderByLeastUpdated
61 orderBy = db.SearchOrderBySizeReverse
63 orderBy = db.SearchOrderBySize
65 orderBy = db.SearchOrderByStarsReverse
67 orderBy = db.SearchOrderByStars
69 orderBy = db.SearchOrderByForksReverse
71 orderBy = db.SearchOrderByForks
[all …]
/dports/databases/py-sqlobject/SQLObject-1.6.0/sqlobject/tests/
H A Dtest_sorting.py39 assert nameList(Names.select().orderBy(['firstName', 'lastName'])) == \
46 assert nameList(Names.select().orderBy(['first_name', 'last_name'])) == \
53 assert firstList(Names.select().orderBy('firstName')) == \
55 assert firstList(Names.select().orderBy('first_name')) == \
57 assert firstList(Names.select().orderBy('-firstName')) == \
59 assert firstList(Names.select().orderBy('-first_name')) == \
61 assert firstList(Names.select().orderBy(Names.q.firstName)) == \
63 assert firstList(Names.select().orderBy('firstName').reversed()) == \
65 assert firstList(Names.select().orderBy('-firstName').reversed()) == \
67 assert firstList(Names.select().orderBy(DESC(Names.q.firstName))) == \
[all …]
/dports/www/matomo/piwik/core/DataAccess/
H A DLogQueryBuilder.php53 $orderBy, $limitAndOffset) argument
116 * @param string $orderBy
177 if ($innerLimitAndOffset && $orderBy) {
179 $innerOrderBy = $orderBy;
199 if (!empty($orderBy)) {
200 … $orderBy = preg_replace(array_keys($epregReplace), array_values($epregReplace), $orderBy);
201 … $orderBy = str_replace(array_keys($toBeReplaced), array_values($toBeReplaced), $orderBy);
214 $orderBy = preg_replace('/'.$matchTables.'\./', 'log_inner.', $orderBy);
230 * @param string $orderBy order by clause
254 if ($orderBy) {
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmCorePlugin/test/fixtures/
H A Dsample_query_extensions.yml6 orderBy: []
14 orderBy: []
19 orderBy: []
26 orderBy: []
31 orderBy: []
38 orderBy: []
45 orderBy: []
51 orderBy: []
57 orderBy:
62 orderBy:
[all …]
/dports/databases/py-sqlobject/SQLObject-1.6.0/sqlobject/
H A Dsresults.py22 orderBy = ops['orderBy']
24 orderBy = map(self._mungeOrderBy, orderBy)
26 orderBy = self._mungeOrderBy(orderBy)
70 if isinstance(orderBy, str) and orderBy.startswith('-'):
71 orderBy = orderBy[1:]
83 orderBy = sqlbuilder.SQLConstant(orderBy)
89 return orderBy
97 def orderBy(self, orderBy): member in SelectResults
98 return self.clone(orderBy=orderBy)
310 orderBy = join.orderBy
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/Plugins/SqlEnterpriseFormatter/
H A Dformatorderby.cpp5 FormatOrderBy::FormatOrderBy(SqliteOrderBy* orderBy) : in FormatOrderBy() argument
6 orderBy(orderBy) in FormatOrderBy()
12 withStatement(orderBy->expr); in formatInternal()
13 if (orderBy->order != SqliteSortOrder::null) in formatInternal()
14 withKeyword(sqliteSortOrder(orderBy->order)); in formatInternal()
16 if (orderBy->nulls != SqliteNulls::null) in formatInternal()
17 withKeyword("NULLS").withKeyword(sqliteNulls(orderBy->nulls)); in formatInternal()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/releases/components/
H A Dreleases_sort_apollo_client.vue30 orderBy() {
48 return this.sortOptions.find((s) => s.orderBy === this.orderBy).label;
57 this.emitInputEventIfChanged(this.orderBy, direction);
60 this.emitInputEventIfChanged(item.orderBy, this.direction);
63 return this.orderBy === item.orderBy;
65 emitInputEventIfChanged(orderBy, direction) {
66 const newSort = SORT_MAP[orderBy][direction];
68 this.$emit('input', SORT_MAP[orderBy][direction]);
84 :key="item.orderBy"
H A Dreleases_sort.vue14 orderBy: (state) => state.sorting.orderBy,
21 const option = this.sortOptions.find((s) => s.orderBy === this.orderBy);
36 this.setSorting({ orderBy: item });
40 return this.orderBy === item;
55 :key="item.orderBy"
56 :active="isActiveSortItem(item.orderBy)"
57 @click="onSortItemClick(item.orderBy)"
/dports/finance/prestashop/prestashop/classes/
H A DSupplier.php135 $query->orderBy(' s.`name` ASC');
269 * @param null $orderBy
282 $orderBy = null, argument
297 if (empty($orderBy) || $orderBy == 'position') {
298 $orderBy = 'name';
336 if (strpos('.', $orderBy) > 0) {
337 $orderBy = explode('.', $orderBy);
338 $orderBy = pSQL($orderBy[0]) . '.`' . pSQL($orderBy[1]) . '`';
346 $orderBy = 'name';
396 if ($orderBy !== 'price') {
[all …]
H A DManufacturer.php360 * @param null $orderBy
374 $orderBy = null, argument
394 if (empty($orderBy) || $orderBy == 'position') {
395 $orderBy = 'name';
431 $orderBy = explode('.', $orderBy);
432 $orderBy = pSQL($orderBy[0]) . '.`' . pSQL($orderBy[1]) . '`';
435 if ($orderBy == 'price') {
437 } elseif ($orderBy == 'name') {
440 $orderBy = 'name';
489 if ($orderBy !== 'price') {
[all …]
/dports/www/gitea/gitea-1.16.5/routers/web/org/
H A Dhome.go62 var orderBy db.SearchOrderBy
66 orderBy = db.SearchOrderByNewest
68 orderBy = db.SearchOrderByOldest
70 orderBy = db.SearchOrderByRecentUpdated
72 orderBy = db.SearchOrderByLeastUpdated
78 orderBy = db.SearchOrderByStarsReverse
80 orderBy = db.SearchOrderByStars
82 orderBy = db.SearchOrderByForksReverse
84 orderBy = db.SearchOrderByForks
87 orderBy = db.SearchOrderByRecentUpdated
[all …]
/dports/www/thirtybees/thirtybees-1.1.0/classes/
H A DSupplier.php159 $query->orderBy(' s.`name` ASC');
299 * @param string|null $orderBy
318 $orderBy = null, argument
333 if (empty($orderBy) || $orderBy == 'position') {
334 $orderBy = 'name';
379 if (strpos('.', $orderBy) > 0) {
380 $orderBy = explode('.', $orderBy);
381 $orderBy = pSQL($orderBy[0]).'.`'.pSQL($orderBy[1]).'`';
386 } elseif ($orderBy == 'id_product') {
389 $orderBy = 'name';
[all …]
H A DManufacturer.php294 * @param string|null $orderBy
313 $orderBy = null, argument
333 if (empty($orderBy) || $orderBy == 'position') {
334 $orderBy = 'name';
371 $orderBy = explode('.', $orderBy);
372 $orderBy = pSQL($orderBy[0]).'.`'.pSQL($orderBy[1]).'`';
375 if ($orderBy == 'price') {
377 } elseif ($orderBy == 'name') {
380 $orderBy = 'name';
420 $sql->orderBy($aliasWithDot.'`'.bqSQL($orderBy).'` '.pSQL($orderWay));
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/apps/orangehrm/lib/model/admin/dao/
H A DUserDao.php11 * @param String $orderBy
15 public function getUserGroupList($orderField = 'userg_id', $orderBy = 'ASC') { argument
17 $orderBy = strcasecmp($orderBy, 'DESC') === 0 ? 'DESC' : 'ASC';
20 ->orderBy($orderField.' '.$orderBy);
31 * @param String $orderBy
122 * @param String $orderBy
126 public function getUsersList($isAdmin='Yes', $orderField='id', $orderBy='ASC') { argument
128 $orderBy = strcasecmp($orderBy, 'DESC') === 0 ? 'DESC' : 'ASC';
132 ->orderBy($orderField.' '.$orderBy);
257 $q->orderBy('mod_id ASC');
/dports/www/matomo/piwik/plugins/Insights/
H A DInsightReport.php33 * @param string $orderBy
38 …te, $metric, $currentReport, $lastReport, $totalValue, $lastTotalValue, $orderBy, $limitIncreaser,… argument
99 $orderBy = $insight->getMetadata('orderBy');
136 * @param string $orderBy Order by absolute, relative, importance
206 $this->getOrderByColumn($orderBy),
207 …$orderBy === self::ORDER_BY_RELATIVE ? $this->getOrderByColumn(self::ORDER_BY_ABSOLUTE) : $this->g…
234 'orderBy' => $orderBy,
249 private function getOrderByColumn($orderBy) argument
251 if (self::ORDER_BY_RELATIVE == $orderBy) {
253 } elseif (self::ORDER_BY_ABSOLUTE == $orderBy) {
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/core/
H A Dqgsexpressionsorter.h39 for ( const QgsFeatureRequest::OrderByClause &orderBy : std::as_const( mPreparedOrderBys ) ) in operator() local
52 if ( orderBy.nullsFirst() ) in operator()
67 if ( orderBy.ascending() ) in operator()
75 if ( orderBy.ascending() ) in operator()
83 if ( orderBy.ascending() ) in operator()
91 if ( orderBy.ascending() ) in operator()
99 if ( orderBy.ascending() ) in operator()
107 if ( orderBy.ascending() ) in operator()
117 if ( orderBy.ascending() ) in operator()
124 if ( orderBy.ascending() ) in operator()
[all …]
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/
H A Dqgsexpressionsorter.h39 for ( const QgsFeatureRequest::OrderByClause &orderBy : qgis::as_const( mPreparedOrderBys ) ) in operator() local
52 if ( orderBy.nullsFirst() ) in operator()
67 if ( orderBy.ascending() ) in operator()
75 if ( orderBy.ascending() ) in operator()
83 if ( orderBy.ascending() ) in operator()
91 if ( orderBy.ascending() ) in operator()
99 if ( orderBy.ascending() ) in operator()
107 if ( orderBy.ascending() ) in operator()
117 if ( orderBy.ascending() ) in operator()
124 if ( orderBy.ascending() ) in operator()
[all …]
/dports/security/vuls/vuls-0.13.7/vendor/github.com/Azure/azure-sdk-for-go/services/preview/devtestlabs/mgmt/2015-05-21-preview/dtl/dtlapi/
H A Dinterfaces.go33 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
34 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
35 …ListBySubscription(ctx context.Context, filter string, top *int32, orderBy string) (result dtl.Res…
36 …ListBySubscriptionComplete(ctx context.Context, filter string, top *int32, orderBy string) (result…
49 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
69 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
79 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
91 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
102 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
110 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/Azure/azure-sdk-for-go/services/preview/devtestlabs/mgmt/2015-05-21-preview/dtl/dtlapi/
H A Dinterfaces.go22 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
23 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
24 …ListBySubscription(ctx context.Context, filter string, top *int32, orderBy string) (result dtl.Res…
25 …ListBySubscriptionComplete(ctx context.Context, filter string, top *int32, orderBy string) (result…
38 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
58 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
68 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
80 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
91 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
99 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
[all …]
/dports/www/grafana8/azure-sdk-for-go-sdk-azidentity-v0.10.0/services/preview/devtestlabs/mgmt/2015-05-21-preview/dtl/dtlapi/
H A Dinterfaces.go22 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
23 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
24 …ListBySubscription(ctx context.Context, filter string, top *int32, orderBy string) (result dtl.Res…
25 …ListBySubscriptionComplete(ctx context.Context, filter string, top *int32, orderBy string) (result…
38 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
58 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
68 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
80 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
91 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
99 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
[all …]
/dports/www/grafana8/azure-sdk-for-go-sdk-azcore-v0.19.0/services/preview/devtestlabs/mgmt/2015-05-21-preview/dtl/dtlapi/
H A Dinterfaces.go22 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
23 …tx context.Context, resourceGroupName string, filter string, top *int32, orderBy string) (result d…
24 …ListBySubscription(ctx context.Context, filter string, top *int32, orderBy string) (result dtl.Res…
25 …ListBySubscriptionComplete(ctx context.Context, filter string, top *int32, orderBy string) (result…
38 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
58 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
68 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
80 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
91 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
99 …xt, resourceGroupName string, labName string, filter string, top *int32, orderBy string) (result d…
[all …]

12345678910>>...117