Home
last modified time | relevance | path

Searched refs:array (Results 226 – 250 of 765) sorted by path

12345678910>>...31

/plugin/dirtylittlehelper/mermaid/editor/
H A Deditor.worker.js1array=t}function g(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.leng…
/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js28array=e}function y(){}i.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.leng…
H A Dmermaid.min.js.map1array/src/ascending.js","webpack://mermaid/./node_modules/d3-array/src/bisector.js","webpack://mer…
/plugin/discoursesearch/
H A Dasyncsearch.js25 _.filter = function( array, id ) { argument
27 $.each( array, function() {
/plugin/ditaa/ditaa/
H A Dditaa.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/htmlparser/ net/ ...
/plugin/dlcount/
H A Daction.php184 $array = array(
193 foreach ($array as $name=>$size) {
205 $array = array(
214 foreach ($array as $name=>$secs) {
215 if ($seconds < $secs && $secs != end($array)) continue;
H A Dadmin.php151 $array = array(
160 foreach ($array as $name=>$size) {
172 $array = array(
181 foreach ($array as $name=>$secs) {
182 if ($seconds < $secs && $secs != end($array)) continue;
/plugin/docimporter/
H A D.action.php.swp16array();� $raw_tables = array();� #Convert tables �� $myWikiContent = ge…
26array('ow' => true);� $image_data = new IXR_Base64($image_data);� …
/plugin/dokucrypt/
H A Dscript.js1294 function array(n) { class
/plugin/dokucrypt2/
H A Dscript.js538 // you would probably expect, as array[row][column]. The state arrays
600 // This method circularly shifts the array left by the number of elements
601 // given in its parameter. It returns the resulting array and is used for
637 // Performs the substitution step of the cipher. State is the 2d array of
703 // key. The parameter key is an array of bytes holding the value of the key.
704 // The returned value is an array whose elements are the 32-bit words that
721 // Now walk down the rest of the array filling in expanded key bytes as
770 // block, an array of bytes representing a plaintext block, and expandedKey,
771 // an array of words representing the expanded key previously returned by
772 // keyExpansion(). The ciphertext block is returned as an array o
1366 function array(n) { global() class
[all...]
/plugin/dokutexit/
H A Dtexitrender.php101 $array = preg_split("/\r?\n/", trim($data));
104 $this->_data[$state] = $array;
107 array_push($this->_data[$state], $array);
/plugin/dropfiles/
H A Dyarn.lock121 array-find-index@^1.0.1:
125 array-union@^1.0.1:
127 …resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375…
129 array-uniq "^1.0.1"
131 array-uniq@^1.0.1:
133 …resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e0588947…
135 array-unique@^0.2.1:
618 array-find-index "^1.0.1"
1197 array-union "^1.0.1"
1208 array-union "^1.0.1"
[all …]
/plugin/dump/
H A DREADME.md4 This [Dokuwiki Plugin](https://www.dokuwiki.org/plugin:dump) dumps the callstack (the array of inst…
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md105 - Class now accepts only single array `$config` parameter
118 - Images in PHP variables (`<img src="var:smileyface">`) were moved from direct Mpdf properties to `Mpdf::$imageVars` public property array
123 - `fontDir` property of Mpdf class is private and must be accessed via configuration variable with array of paths or `AddFontDirectory` method
143 - `_MPDF_SYSTEM_TTFONTS` constant in favor of `fontDir` configuration variable with array of paths or `AddFontDirectory` method
511 - $this->decimal_align = array('DP'=>'.', 'DC'=>',', 'DM'=>"\xc2\xb7", 'DA'=>"\xd9\xab", 'DD'=>'-');
512 - $this->h2toc = array('H1'=>0, 'H2'=>1, 'H3'=>2);
513 - $this->h2bookmarks = array('H1'=>0, 'H2'=>1, 'H3'=>2);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DForm.php55 * @var array
938 function SetFormChoice($w, $h, $name, $flags, $array, $align = 'L', $js = '')
950 for ($i = 0; $i < count($array['VAL']); $i++) {
951 $array['VAL'][$i] = $this->Win1252ToPDFDocEncoding($array['VAL'][$i]);
952 $array['OPT'][$i] = $this->Win1252ToPDFDocEncoding($array['OPT'][$i]);
955 for ($i = 0; $i < count($array['VAL']); $i++) {
957 $this->mpdf->UTF8StringToArray($array['VAL'][$i]); // Add characters to font subset
958 $this->mpdf->UTF8StringToArray($array['OP
940 SetFormChoice($w, $h, $name, $flags, $array, $align = 'L', $js = '') global() argument
1289 _setflag($array) global() argument
1308 _put_button_icon($array, $w, $h) global() argument
[all...]
H A DFpdiTrait.php102 * @param float|int|array $x The abscissa of upper-left corner. Alternatively you could use an assoc array
108 * @return array The size
123 * @param float|int|array $x The abscissa of upper-left corner. Alternatively you could use an assoc array
129 * @return array The size.
138 /* Extract $x if an array */
181 * @return array
242 * @param array $newSize The size.
281 * @return array|boo
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/
H A DArrays.php8 public static function get($array, $key, $default = null) argument
10 if (is_array($array) && array_key_exists($key, $array)) {
11 return $array[$key];
22 * Returns an array of all k-combinations from an input array of n elements, where k equals 1..n.
25 * Example: array[one, two] will give:
31 * @param array $array
32 * @return array
34 allUniqueSortedCombinations($array) global() argument
67 combinations($array, $k) global() argument
[all...]
/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md146 - `DeepCopy\TypeMatcher` applies on any element found in graph, including array elements.
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php35 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs.
42 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs.
148 * Copy an array
149 * @param array $array
150 * @return array
152 private function copyArray(array $array) argument
154 foreach ($array as $key => $value) {
155 $array[
[all...]
/plugin/dw2pdf/vendor/psr/log/
H A DREADME.md45 $this->logger->error('Oh no!', array('exception' => $exception));
/plugin/dw2pdf/vendor/setasign/fpdi/
H A DREADME.md97 - The return value of `getTemplateSize()` had changed to an array with more speaking keys
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfArray.php16 * Class representing a PDF array object
19 * @property array $value The value of the PDF type.
24 * Parses an array of the passed tokenizer and parser.
35 // Recurse into this function until we reach the end of the array.
56 public static function create(array $values = [])
65 * Ensures that the passed array is a PdfArray instance with a (optional) specific size.
67 * @param mixed $array
72 public static function ensure($array, $size = null) argument
74 $result = PdfType::ensureType(self::class, $array, 'Array value expected.');
76 if ($size !== null && \count($array
[all...]
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/DataStructure/
H A DRectangle.php50 * @param PdfArray|mixed $array
57 public static function byPdfArray($array, PdfParser $parser) argument
59 $array = PdfArray::ensure(PdfType::resolve($array, $parser), 4)->value;
60 $ax = PdfNumeric::ensure(PdfType::resolve($array[0], $parser))->value;
61 $ay = PdfNumeric::ensure(PdfType::resolve($array[1], $parser))->value;
62 $bx = PdfNumeric::ensure(PdfType::resolve($array[2], $parser))->value;
63 $by = PdfNumeric::ensure(PdfType::resolve($array[3], $parser))->value;
145 * Get the rectangle as an array.
147 * @return array
[all...]
/plugin/dwedit/
H A DREADME5 <?php tpl_toolsevent('dweditlink', array());?>
7 tpl_toolsevent('dweditlink', array());
/plugin/edittable/lib/
H A Dhandsontable.full.js1278 accumulator = iteratee(accumulator, array[index], index, array);
1349 if (iteratee(array[index], index, array) === false) {
1354 return array;
1363 function arraySum(array) {
1376 function arrayMax(array) {
1379 }, Array.isArray(array) ? array[0] : void 0);
1389 function arrayMin(array) {
1392 }, Array.isArray(array) ? array[0] : void 0);
1401 function arrayAvg(array) {
1402 if (!array.length) {
[all …]

12345678910>>...31