Home
last modified time | relevance | path

Searched refs:b (Results 2501 – 2511 of 2511) sorted by path

1...<<101

/plugin/yuriigantt/3rd/dhtmlxgantt/sources/
H A Ddhtmlxgantt.js10976 if(a[field] == b[field]){
10986 criteria = function (a, b) { argument
25239 scales.sort(function (a, b) { argument
25240 if (cellSize(a.unit, a.step) < cellSize(b.unit, b.step)) {
25242 } else if (cellSize(a.unit, a.step) > cellSize(b.unit, b.step)) {
29599 for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
29601 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29790 var compare = function(a, b) { argument
29791 return a < b;
29794 arr.sort(function(a, b) { argument
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_click_drag.js739 var compare = function(a, b) { argument
740 return a < b;
743 arr.sort(function(a, b) { argument
744 if (a[field] === b[field]) return 0;
746 return desc ? compare(a[field], b[field]) : compare(b[field], a[field]);
H A Ddhtmlxgantt_drag_timeline.js519 var compare = function(a, b) { argument
520 return a < b;
523 arr.sort(function(a, b) { argument
524 if (a[field] === b[field]) return 0;
526 return desc ? compare(a[field], b[field]) : compare(b[field], a[field]);
H A Ddhtmlxgantt_keyboard_navigation.js1184 compareTo: function (b) { argument
1186 if (!b) return false;
1188 if (!!this[i] != !!b[i]) return false;
1191 var canStringifyThat = !!(b[i] && b[i].toString);
1194 if (b[i] != this[i]) return false;
1196 if (b[i].toString() != this[i].toString())
H A Ddhtmlxgantt_multiselect.js206 res.sort(function(a, b) { argument
207 return gantt.getGlobalTaskIndex(a) > gantt.getGlobalTaskIndex(b) ? 1 : -1;
H A Ddhtmlxgantt_tooltip.js1008 var compare = function(a, b) { argument
1009 return a < b;
1012 arr.sort(function(a, b) { argument
1013 if (a[field] === b[field]) return 0;
1015 return desc ? compare(a[field], b[field]) : compare(b[field], a[field]);
H A Ddhtmlxgantt_undo.js735 action.commands.sort(function (a, b) { argument
736 if (a.entity === "task" && b.entity === "task") {
737 if (a.type !== b.type) {
738 return (actionWeights[b.type] || 0) - (actionWeights[a.type] || 0);
740 …else if (a.type === "move" && a.oldValue && b.oldValue && b.oldValue.parent === a.oldValue.parent)…
741 return a.oldValue.$index - b.oldValue.$index;
749 var weightB = weights[b.entity] || weights.any;
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/skins/
H A Ddhtmlxgantt_skyblue.css110 color: #42464b;
985 color: #42464b;
1085 color: #42464b;
1456 color: #42464b;
/plugin/yuriigantt/
H A DLICENSE126 Component, and (b) serves only to enable use of the work with that
217 b) The work must carry prominent notices stating that it is
257 b) Convey the object code in, or embodied in, a physical product
273 with subsection 6b.
368 b) Requiring preservation of specified reasonable legal notices or
418 finally terminates your license, and (b) permanently, if the copyright
531 conveyed by you (or copies made from those copies), or (b) primarily
/plugin/zip/pear/File/
H A DArchive.php1036 $b =& File_Archive::_convertToWriter($bC);
1041 if (PEAR::isError($b)) {
1042 return $b;
1048 $writer->addWriter($b);
/plugin/zip/pear/File/Archive/Predicate/
H A DDuplicate.php90 function compare($a, $b) { argument
91 return ($a === null ? -1 : $a) - ($b === null ? -1 : $b);

1...<<101