Home
last modified time | relevance | path

Searched refs:groupBy (Results 1 – 25 of 31) sorted by relevance

12

/plugin/authgooglesheets/vendor/google/apiclient-services/src/SecurityCommandCenter/
H A DGroupAssetsRequest.php33 public $groupBy; variable in Google\\Service\\SecurityCommandCenter\\GroupAssetsRequest
78 public function setGroupBy($groupBy) argument
80 $this->groupBy = $groupBy;
87 return $this->groupBy;
H A DGroupFindingsRequest.php33 public $groupBy; variable in Google\\Service\\SecurityCommandCenter\\GroupFindingsRequest
78 public function setGroupBy($groupBy) argument
80 $this->groupBy = $groupBy;
87 return $this->groupBy;
/plugin/data-graph/
H A Dsyntax.php79 $groupBy = $kv["group by"] ;
89 $groupBy = $v;
118 if($groupBy == $g){
142 print($mark."[[?group=". $groupBy . "&aggregate=". $g ."|". $g . "]]".$mark);
153 … ' where ' . $filter_short . ' and d.key="' . $agg . '" and d2.key="' . $groupBy. '" and d3.key = …
184 print("=== " . ucfirst($agg) . " by " . $groupBy . " ====\n");
186 print("^ " . ucfirst($groupBy) . "^ (SUM) ^ mean ^ # systems ^ System list ^\n");
/plugin/datagraph/
H A Dsyntax.php79 $groupBy = $kv["group by"] ;
89 $groupBy = $v;
118 if($groupBy == $g){
142 print($mark."[[?group=". $groupBy . "&aggregate=". $g ."|". $g . "]]".$mark);
153 … ' where ' . $filter_short . ' and d.key="' . $agg . '" and d2.key="' . $groupBy. '" and d3.key = …
184 print("=== " . ucfirst($agg) . " by " . $groupBy . " ====\n");
186 print("^ " . ucfirst($groupBy) . "^ (SUM) ^ mean ^ # systems ^ System list ^\n");
/plugin/bugzillaint/
H A Dscript.js48 var groupBy = master.data('group_by');
54 if ( groupBy && group != bugs[i][groupBy] ) {
55 group = bugs[i][groupBy];
131 var groupBy = master.data('group_by');
134 if ( extra == 'assigned_to' && groupBy != 'assigned_to' ) {
141 if ( extra == 'classification' && groupBy != 'classification' ) {
148 if ( extra == 'product' && groupBy != 'product' ) {
155 if ( extra == 'component' && groupBy != 'component' ) {
180 if ( extra == 'priority' && groupBy != 'priority' ) {
186 if ( extra == 'severity' && groupBy != 'severity' ) {
[all …]
/plugin/bugzillaint/helper/
H A Dbugzillaclient.php62 public function quicksearch( $query, $extras, $groupBy ) { argument
179 if ( isset($groupBy) ) {
180 $options['include_fields'][] = $groupBy;
190 if ( isset($groupBy) ) {
191 usort($result, function ($a, $b) use ($groupBy) {
192 $c = strcmp( $a[$groupBy], $b[$groupBy] );
/plugin/authgoogle/google/contrib/
H A DGoogle_DatastoreService.php716 public $groupBy; variable in Google_Query
741 public function setGroupBy(/* array(Google_PropertyReference) */ $groupBy) { argument
742 $this->assertIsArray($groupBy, 'Google_PropertyReference', __METHOD__);
743 $this->groupBy = $groupBy;
746 return $this->groupBy;
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dcollections.js684 var parity = _.groupBy([1, 2, 3, 4, 5, 6], function(num){ return num % 2; });
689 var grouped = _.groupBy(list, 'length');
695 _.groupBy([{}], function(){ assert.strictEqual(this, context); }, context);
697 grouped = _.groupBy([4.2, 6.1, 6.4], function(num) {
704 _.groupBy(array, function(value, index, obj){ assert.strictEqual(obj, array); });
707 grouped = _.groupBy(array);
716 assert.deepEqual(_.groupBy(matrix, 0), {1: [[1, 2], [1, 3]], 2: [[2, 3]]});
717 assert.deepEqual(_.groupBy(matrix, 1), {2: [[1, 2]], 3: [[1, 3], [2, 3]]});
H A Dfunctions.js717 assert.deepEqual(_.groupBy(collection, /b/g), {0: ['foo'], 1: ['bar'], 2: ['bbiz']});
/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.d.ts1930 groupBy(config: any): void; method
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Dcollection.js741 assert.deepEqual(col.groupBy(function(model){ return model.id; })[first.id], [first]);
1069 var grouped = collection.groupBy('x');
/plugin/sequencediagram/bower_components/underscore/
H A Dunderscore-min.js5 …};return r=x(r,e),m.each(t,function(e,i){var o=r(e,i,t);n(u,e,o)}),u}};m.groupBy=F(function(n,t,r)…
H A Dunderscore.js408 _.groupBy = group(function(result, value, key) {
H A Dunderscore-min.map1 …n","sortBy","criteria","sort","left","right","a","b","group","behavior","groupBy","indexBy","count…
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
H A Dunderscore-min.js5 …};return r=x(r,e),m.each(t,function(e,i){var o=r(e,i,t);n(u,e,o)}),u}};m.groupBy=F(function(n,t,r)…
H A Dunderscore.js421 _.groupBy = group(function(result, value, key) {
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/
H A Dbackbone.js1214 isEmpty: 1, chain: 1, sample: 3, partition: 3, groupBy: 3, countBy: 3,
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js7550 actual = _.groupBy([{ 'a': '__proto__' }], 'a');
7697 var actual = _.groupBy(array, Math.floor);
7709 return index ? _.groupBy(array, value) : _.groupBy(array);
7718 var actual = _.groupBy(['one', 'two', 'three'], 'length');
7725 var actual = _.groupBy(array, function(n) {
7742 assert.deepEqual(_.groupBy(array, 0), { '1': [[1, 'a']], '2': [[2, 'a'], [2, 'b']] });
7743 assert.deepEqual(_.groupBy(array, 1), { 'a': [[1, 'a'], [2, 'a']], 'b': [[2, 'b']] });
7749 var actual = _.groupBy({ 'a': 6.1, 'b': 4.2, 'c': 6.3 }, Math.floor);
7764 actual = _(array).groupBy().map(iteratee).filter(predicate).take().value();
7766 …assert.deepEqual(actual, _.take(_.filter(lodashStable.map(_.groupBy(array), iteratee), predicate))…
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js9393 var groupBy = createAggregator(function(result, value, key) {
16574 lodash.groupBy = groupBy;
H A Dlodash.min.js100 …t(n,Wu(n))},An.functionsIn=function(n){return null==n?[]:Et(n,Bu(n))},An.groupBy=Po,An.initial=fun…
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js9393 var groupBy = createAggregator(function(result, value, key) {
16574 lodash.groupBy = groupBy;
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md91 * <a href="#_groupbycollection-iteratee_identity">`_.groupBy`</a>
2875 <h3 id="_groupbycollection-iteratee_identity"><code>_.groupBy(collection, [iteratee=_.identity])</c…
2896 _.groupBy([6.1, 4.2, 6.3], Math.floor);
2900 _.groupBy(['one', 'two', 'three'], 'length');
8594 `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`,
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js493 function groupBy(collection, extractor) { function
517 return groupBy(c, extractor, grouped);
2600 isTopLevel && groupBy(elements, function(e) { return e.id; })
26691 var expandings = groupBy(elements, function(element) {
46947 var ids = groupBy(elements, 'id');
54120 var ids = groupBy(elements, 'id');
54354 return size(groupBy(elements, function(e) { return e.parent && e.parent.id; })) !== 1;
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js8137 var groupBy = createAggregator(function(result, value, key) {
12772 lodash.groupBy = groupBy;
/plugin/aceeditor/
H A Dbuild.js1 …identity);return T(e,function(t,o){var u=s.call(n,t,o,e);r(i,u,t)}),i};x.groupBy=function(e,t,n){r… function

12