Home
last modified time | relevance | path

Searched refs:clones (Results 1 – 21 of 21) sorted by path

/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A Dcomposer.lock580 "description": "Create deep copies (clones) of your objects",
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1 …raversed source objects.\n\t * @param {Array} [stackB=[]] Associates clones with source counte…
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md848 * Bug: Cloning an EntityEnclosingRequest now clones the EntityBody too
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md454 This method is useful for reducing the number of clones needed to mutate
/plugin/barcodes/
H A Dcomposer.lock172 "description": "Create deep copies (clones) of your objects",
/plugin/codemirror/dist/keymaps/
H A Dvim.min.js.map1 …turns an object to track the changes associated insert mode. It\n // clones the object that is…
/plugin/diagramsnet/lib/js/diagramly/
H A DTrees.js705 clones[1].geometry.x -= pgeo.x;
706 clones[1].geometry.y -= pgeo.y;
828 graph.model.setTerminal(clones[0], clones[1], true);
838 clones[1].geometry.x -= pgeo.x;
839 clones[1].geometry.y -= pgeo.y;
913 graph.model.setTerminal(clones[0], clones[1], false);
933 [clones[0]]);
974 clones[1].geometry.y += clones[1].geometry.height - pgeo.y + level;
981 clones[1].geometry.y -= clones[1].geometry.height + pgeo.y + level;
985 clones[1].geometry.x -= clones[1].geometry.width + pgeo.x + level;
[all …]
/plugin/diagramsnet/lib/js/grapheditor/
H A DEditorUi.js1884 var clones = graph.cloneCells(result, null, cloneMap);
1892 for (var i = 0; i < clones.length; i++)
1894 model.add(parent, clones[i]);
1901 var geo = graph.getCellGeometry(clones[i]);
1914 graph.updateCustomLinks(graph.createCellMapping(cloneMap, lookup), clones);
1917 mxClipboard.setCells(clones);
H A DGraph.js7621 var clones = this.cloneCells(cells, null, cloneMap);
7635 for (var i = 0; i < clones.length; i++)
7637 model.add(parent, clones[i]);
7644 var geo = this.getCellGeometry(clones[i]);
7658 this.createCellLookup(cells)), clones);
9351 var clones = this.cloneCells(cells, false, cloneMap, true);
9359 var child = this.moveCells([clones[i]], s, s, false)[0];
9364 model.add(parent, clones[i]);
9370 model.add(parent, clones[i], index + 1);
9376 var row = this.getCellGeometry(clones[i]);
[all …]
H A DSidebar.js2341 var clones = graph.cloneCells(cells);
2342 graph.splitEdge(target, clones, null,
2345 select = clones;
/plugin/diagramsnet/lib/plugins/
H A Dexplore.js308 var clones = graph.cloneCells(cells);
315 clones[i].sourceCellId = cells[i].id;
317 if (graph.model.isEdge(clones[i]))
320 clones[i].geometry.x = 0;
321 clones[i].geometry.y = 0;
322 clones[i].geometry.points = null;
323 clones[i].setStyle(clones[i].getStyle() + edgeStyle);
324 clones[i].setTerminal(realCell, clones[i].getTerminal(true) == null);
333 clones.splice(0, 0, backCell);
341 clones.splice(0, 0, moreCell);
[all …]
/plugin/diagramsnet/lib/plugins/trees/
H A Dtrees.js516 -clones[1].geometry.width - spacing;
521 -clones[1].geometry.height - spacing;
526 clones[1].geometry.x = cell.geometry.x + cell.geometry.width - clones[1].geometry.width;
541 -clones[1].geometry.width - spacing) * s;
546 -clones[1].geometry.height - spacing) * s;
626 return graph.addCells(clones);
643 graph.model.setTerminal(clones[0], clones[1], true);
685 return graph.addCells(clones);
731 clones[1].geometry.y -= clones[1].geometry.height + level;
735 clones[1].geometry.x -= clones[1].geometry.width + level;
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js.map1 …= 4;\n\n/**\n * This method is like `_.clone` except that it recursively clones `value`.\n *\n * @…
/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js.map1 …= 4;\n\n/**\n * This method is like `_.clone` except that it recursively clones `value`.\n *\n * @…
/plugin/dw2pdf/
H A Dcomposer.lock190 "description": "Create deep copies (clones) of your objects",
/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md3 DeepCopy helps you create deep copies (clones) of your objects. It is designed to handle cycles in the association graph.
91 DeepCopy recursively traverses all the object's properties and clones them. To avoid cloning the same object twice it
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md3 DeepCopy helps you create deep copies (clones) of your objects. It is designed to handle cycles in …
96 DeepCopy recursively traverses all the object's properties and clones them. To avoid cloning the sa…
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetCollection.php31 private $clones; variable in Assetic\\Asset\\AssetCollection
52 $this->clones = new \SplObjectStorage();
60 $this->clones = new \SplObjectStorage();
76 $clone = isset($this->clones[$asset]) ? $this->clones[$asset] : null;
78 unset($this->clones[$asset], $this->assets[$i]);
98 $clone = isset($this->clones[$asset]) ? $this->clones[$asset] : null;
100 unset($this->clones[$asset]);
131 $this->clones = new \SplObjectStorage();
217 …atorIterator(new AssetCollectionFilterIterator(new AssetCollectionIterator($this, $this->clones)));
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/
H A DAssetCollectionIterator.php30 private $clones; variable in Assetic\\Asset\\Iterator\\AssetCollectionIterator
32 public function __construct(AssetCollectionInterface $coll, \SplObjectStorage $clones) argument
38 $this->clones = $clones;
63 if (!isset($this->clones[$asset])) {
64 $clone = $this->clones[$asset] = clone $asset;
73 $clone = $this->clones[$asset];
114 return new self($this->current(), $this->clones);
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md4541 This method is like `_.clone` except that it recursively clones `value`.
4569 This method is like `_.cloneWith` except that it recursively clones `value`.
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md1501 * Changed: Cloning VObject objects now clones the entire tree, rather than just