Home
last modified time | relevance | path

Searched refs:dest (Results 1 – 25 of 115) sorted by last modified time

12345

/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe35424 dest ruct
41405 dest roy
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js72360 return dest;
72386 if (dest && dest !== state.pipes) return this;
72387 if (!dest) dest = state.pipes; // got a match.
72392 if (dest) dest.emit('unpipe', this, unpipeInfo);
72397 if (!dest) {
78986 return dest;
79853 return dest;
79879 if (dest && dest !== state.pipes) return this;
79880 if (!dest) dest = state.pipes; // got a match.
79885 if (dest) dest.emit('unpipe', this, unpipeInfo);
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js5460 arraySet: function (dest, src, src_offs, len, dest_offs) { argument
5461 if (src.subarray && dest.subarray) {
5462 dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
5467 dest[dest_offs + i] = src[src_offs + i];
5494 arraySet: function (dest, src, src_offs, len, dest_offs) { argument
5496 dest[dest_offs + i] = src[src_offs + i];
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php9478 function Output($name = '', $dest = '')
9530 if (is_bool($dest)) {
9531 $dest = $dest ? Destination::DOWNLOAD : Destination::FILE;
9534 $dest = strtoupper($dest);
9535 if (empty($dest)) {
9538 $dest = Destination::INLINE;
9540 $dest = Destination::FILE;
9544 switch ($dest) {
9440 Output($name = '', $dest = '') global() argument
27060 OverWrite($file_in, $search, $replacement, $dest = Destination DOWNLOAD, $file_out = 'mpdf') global() argument
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/data/
H A Dout.php12 $dest = $_REQUEST['dest']; variable
16 if ($dest === 'I') {
25 } elseif ($dest === 'D') {
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.4.js7852 var dest=offscreen?panelNode.ownerDocument:panelNode;
7853 var table=this.tag.replace({domPanel:this,toggles:this.toggles},dest);
/plugin/odt/ODT/
H A DODTUtility.php506 * @param array $dest Target array for properties storage
511 …public static function openHTMLElement (ODTInternalParams $params, array &$dest, $element, $attrib… argument
515 $params->import->getPropertiesForElement($dest, $toMatch, $params->units);
518 self::adjustValuesForODT($dest, $params->units, $maxWidth);
542 * @param array $dest Target array for properties storage
548 …public static function getHTMLElementProperties (ODTInternalParams $params, array &$dest, $element… argument
552 $params->import->getPropertiesForElement($dest, $toMatch, $params->units, $inherit);
555 self::adjustValuesForODT($dest, $params->units, $maxWidth);
H A Dpage.php67 …public static function queryFormat (&$dest, $format, $orientation='portrait', $margin_top=2, $marg… argument
225 $dest ['format'] = $format;
226 $dest ['orientation'] = $orientation;
227 $dest ['width'] = $width;
228 $dest ['height'] = $height;
232 $dest ['margin-top'] = $margin_top;
233 $dest ['margin-bottom'] = $margin_bottom;
234 $dest ['margin-left'] = $margin_left;
235 $dest ['margin-right'] = $margin_right;
H A Dstyleset.php189 public function addStyleInternal(&$dest, &$dest_by_name, ODTStyle $new, $overwrite=false) { argument
195 for ($index = 0 ; $index < count($dest) ; $index++) {
196 if ($dest [$index]->isDefault() &&
197 $dest [$index]->getFamily() == $family) {
200 $dest [$index] = $new;
207 $dest [] = $new;
213 $dest [] = $new;
219 for ($index = 0 ; $index < count($dest) ; $index++) {
220 if ($dest [$index] == $dest_by_name [$name]) {
221 $dest [$index] = $new;
H A DODTDocument.php2011 * @param array $dest Properties found will be written in $dest as key value pairs,
2018 …public function getODTProperties (array &$dest, $element, $attributes=NULL, $media_sel=NULL, $inhe… argument
2027 …ODTUtility::getHTMLElementProperties($this->params, $dest, $element, $attributes, $maxWidth, $inhe…
2032 …public function getODTPropertiesFromElement (array &$dest, iElementCSSMatchable $element, $media_s… argument
2041 $this->importnew->getPropertiesForElement($dest, $element, $this->units, $inherit);
2045 ODTUtility::adjustValuesForODT($dest, $this->units, $maxWidth);
H A DODTExport.php166 … $dest = $params->document->getStyle($first_master->getProperty('style-page-layout-name'));
168 if (isset($source) && isset($dest)) {
169 $dest->setProperty('width', $source->getProperty('width'));
170 $dest->setProperty('height', $source->getProperty('height'));
171 $dest->setProperty('margin-top', $source->getProperty('margin-top'));
172 $dest->setProperty('margin-right', $source->getProperty('margin-right'));
173 $dest->setProperty('margin-bottom', $source->getProperty('margin-bottom'));
174 $dest->setProperty('margin-left', $source->getProperty('margin-left'));
/plugin/odt/ODT/css/
H A Dcssimportnew.php1085 * @param array $dest Property storage
1129 $dest = $temp;
1254 * @param array $dest Property storage
1257 protected function inherit (array &$dest, array $parents) { argument
1264 if ($dest [$key] == 'inherit') {
1265 $dest [$key] = $value;
1336 if (!isset($dest [$key]) || $dest [$key] == 'inherit') {
1337 $dest [$key] = $value;
1350 * @param array $dest Property storage
1379 $this->calculate($dest, $element, $units);
[all …]
/plugin/odt/ODT/styles/
H A DODTParagraphStyle.php469 …public static function copyLayoutProperties(ODTParagraphStyle $source, ODTParagraphStyle $dest, ar… argument
476 $dest -> setProperty($property, $value);
484 $dest -> setProperty($property, $value);
493 $dest -> setProperty($property, $value);
H A DODTStyle.php159 … protected function setPropertyInternal($property, $odt_property, $value, $section, &$dest=NULL) { argument
161 if ( !isset($dest) ) {
166 $dest [$property] = array ('odt_property' => $odt_property,
171 if ( !isset($dest) ) {
174 unset ($dest [$property]);
218 … protected function importPropertiesInternal(array $fields, $properties, $disabled, &$dest=NULL) { argument
221 …$this->setPropertyInternal($property, $fields[$property][0], $value, $fields[$property][1], $dest);
H A DODTStyleStyle.php216 … protected function importPropertiesInternal(array $fields, $properties, $disabled, &$dest=NULL) { argument
217 parent::importPropertiesInternal($fields, $properties, $disabled, $dest);
/plugin/odt/helper/
H A Dcssimport.php1401 …public function getPropertiesForElement (&$dest, $element, $classString, $media = NULL, $cssId=NUL… argument
1409 $rule->getProperties ($dest);
H A Dcssimportnew.php86 …public function getPropertiesForElement (&$dest, iElementCSSMatchable $element, helper_plugin_odt_… argument
87 $this->internal->getPropertiesForElement ($dest, $element, $units->getInternal());
/plugin/odt/renderer/
H A Dpage.php1980 * @param array $dest
1985 …public function getODTProperties (&$dest, $element, $classString, $inlineStyle, $media_sel=NULL, $… argument
1990 $this->import->getPropertiesForElement($dest, $element, $classString, $media_sel, $cssId);
1993 $this->document->getCSSStylePropertiesForODT($dest, $inlineStyle);
1999 $this->document->adjustValuesForODT($dest);
2126 …public function getODTPropertiesNew (&$dest, $element, $attributes=NULL, $media_sel=NULL, $inherit… argument
2130 $this->document->getODTProperties ($dest, $element, $attributes, $media_sel, $inherit);
2133 …public function getODTPropertiesFromElement (&$dest, iElementCSSMatchable $element, $media_sel=NUL… argument
2137 $this->document->getODTPropertiesFromElement ($dest, $element, $media_sel, $inherit);
/plugin/s5/ui/default/
H A Dslides.js327 var dest = null;
329 dest = parseInt(matches[1]);
331 dest = findSlide(window.location.hash.slice(1));
333 if (dest != null)
334 go(dest - snum);
345 var dest = findSlide(slideID[0].slice(1));
346 if (dest != null) {
350 "go("+dest+" - snum); " +
355 "go("+dest+" - snum); " +
/plugin/s5/ui/dokuwiki/
H A Dslides.js326 var dest = null;
328 dest = parseInt(matches[1]);
330 dest = findSlide(window.location.hash.slice(1));
332 if (dest != null)
333 go(dest - snum);
344 var dest = findSlide(slideID[0].slice(1));
345 if (dest != null) {
349 "go("+dest+" - snum); " +
354 "go("+dest+" - snum); " +
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D0cc991e3f7f8511a34730e154b3c5edc.asciidoc10 'dest' => [
H A D1216f8f7367df3aa823012cef310c08a.asciidoc10 'dest' => [
H A D1b8655e6ba99fe39933c6eafe78728b7.asciidoc14 'dest' => [
29 'dest' => [
H A D400e89eb46ead8e9c9e40f123fd5e590.asciidoc11 'dest' => [
12 'index' => 'dest',

12345