/plugin/register/ |
D | syntax.php | 93 $keys = array(); 113 $keys[$key] = $val; 119 if (!array_key_exists("long desc", $keys)) 120 $keys["long desc"] = ""; 121 if (!array_key_exists("addr", $keys)) 122 $keys["addr"] = ""; 123 if (!array_key_exists("reset", $keys)) 124 $keys["reset"] = "undef"; 125 if (!array_key_exists("perms", $keys)) 126 $keys["perms"] = ""; [all …]
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | RC2.php | 149 private $keys; variable in phpseclib3\\Crypt\\RC2 463 $keys = $this->keys; 470 $r0 = (($r0 + $keys[$j++] + ((($r1 ^ $r2) & $r3) ^ $r1)) & 0xFFFF) << 1; 472 $r1 = (($r1 + $keys[$j++] + ((($r2 ^ $r3) & $r0) ^ $r2)) & 0xFFFF) << 2; 474 $r2 = (($r2 + $keys[$j++] + ((($r3 ^ $r0) & $r1) ^ $r3)) & 0xFFFF) << 3; 476 $r3 = (($r3 + $keys[$j++] + ((($r0 ^ $r1) & $r2) ^ $r0)) & 0xFFFF) << 5; 485 $r0 += $keys[$r3 & 0x3F]; 486 $r1 += $keys[$r0 & 0x3F]; 487 $r2 += $keys[$r1 & 0x3F]; 488 $r3 += $keys[$r2 & 0x3F]; [all …]
|
D | DES.php | 153 private $keys; variable in phpseclib3\\Crypt\\DES 708 $keys = $this->keys[$mode]; 733 $b1 = (($r >> 3) & 0x1FFFFFFF) ^ ($r << 29) ^ $keys[++$ki]; 734 $b2 = (($r >> 31) & 0x00000001) ^ ($r << 1) ^ $keys[++$ki]; 1227 $keys = []; 1247 $keys[$des_round] = [ 1268 $keys[$des_round][self::ENCRYPT][ ] = $val1; 1269 $keys[$des_round][self::DECRYPT][$ki - 1] = $val1; 1270 $keys[$des_round][self::ENCRYPT][ ] = $val2; 1271 $keys[$des_round][self::DECRYPT][$ki ] = $val2; [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/ |
D | CoreTest.php | 217 $keys = array_keys($array); 220 [$keys, $array], 221 [$keys, new CoreTestIterator($array, $keys)], 222 [$keys, new CoreTestIteratorAggregate($array, $keys)], 223 [$keys, new CoreTestIteratorAggregateAggregate($array, $keys)], 240 $keys = array_keys($array); 246 [true, 1, new CoreTestIterator($array, $keys, true, 1)], 247 [true, '3', new CoreTestIterator($array, $keys, true, 3)], 248 [true, '3', new CoreTestIteratorAggregateAggregate($array, $keys, true, 3)], 250 [false, 4, new CoreTestIterator($array, $keys, true)], [all …]
|
/plugin/struct/meta/ |
D | CSVPageImporter.php | 60 $keys = array_reduce( 62 function ($keys, Column $col) { 63 if (!in_array($col->getLabel(), $keys, true)) { 64 return $keys; 66 $index = array_search($col->getLabel(), $keys, true); 67 $keys[$index] = $col->getFullQualifiedLabel(); 68 return $keys; 73 $keysAt = array_map(static fn($key) => "@@$key@@", $keys); 74 $keysHash = array_map(static fn($key) => "##$key##", $keys); 84 $text = $this->evaluateIfNotEmptyTags($text, $keys, $flatValues); [all …]
|
/plugin/vkeyboard/ |
D | vkeyboard.js | 1 …keys:[[["\u0630","\u0651 "],["1","!","\u00a1","\u00b9"],["2","@","\u00b2"],["3","#","\u00b3"],["4"… property
|
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/ |
D | underscore.js | 34 nativeKeys = Object.keys, 172 var keys = _.keys(obj); 173 for (i = 0, length = keys.length; i < length; i++) { 174 iteratee(obj[keys[i]], keys[i], obj); 183 var keys = !isArrayLike(obj) && _.keys(obj), 184 length = (keys || obj).length, 187 var currentKey = keys ? keys[index] : index; 198 var keys = !isArrayLike(obj) && _.keys(obj), 199 length = (keys || obj).length, 202 memo = obj[keys ? keys[index] : index]; [all …]
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/ |
D | WebDriverKeys.php | 95 * @param string|array|int|float $keys 99 public static function encode($keys, $isW3cCompliant = false) argument 101 if (is_numeric($keys)) { 102 $keys = (string) $keys; 105 if (is_string($keys)) { 106 $keys = [$keys]; 109 if (!is_array($keys)) { 118 foreach ($keys as $key) {
|
/plugin/sequencediagram/bower_components/underscore/ |
D | underscore.js | 31 nativeKeys = Object.keys, 104 keys = keysFunc(source), 105 l = keys.length; 107 var key = keys[i]; 156 var keys = _.keys(obj); 157 for (i = 0, length = keys.length; i < length; i++) { 158 iteratee(obj[keys[i]], keys[i], obj); 167 var keys = !isArrayLike(obj) && _.keys(obj), 168 length = (keys || obj).length, 171 var currentKey = keys ? keys[index] : index; [all …]
|
/plugin/indexmenu2/cms/modifiers/ |
D | ajaxum.js | 14 …keys,css,mo){el=el[keys.submenu];if(el.childNodes.length&&!el[keys.ajaxumTarget])return;var showms… argument
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/Internal/ |
D | WebDriverSendKeysAction.php | 15 private $keys = ''; variable in Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSendKeysAction 21 * @param string $keys 27 $keys = '' argument 30 $this->keys = $keys; 36 $this->keyboard->sendKeys($this->keys);
|
/plugin/asciidocjs/node_modules/neo-async/ |
D | async.js | 25 var nativeKeys = Object.keys; 2178 var keys = nativeKeys(object); 2179 var size = keys.length; 2184 var key = keys[index]; 2278 function baseEachSync(object, iterator, keys) { argument 2280 var size = keys.length; 2283 var key = keys[index]; 2413 function baseEach(object, iterator, callback, keys) { argument 2416 var size = keys.length; 2420 key = keys[index]; [all …]
|
/plugin/commonmark/ |
D | action.php | 55 $keys = array_keys($this->headingInfo); 57 if (in_array($hid,$keys)) { 62 if ($hid == $keys[0]) { 71 $index = array_search($hid,$keys); 75 if (isset($keys[$index+1])) { // check for non-last element 76 $endlevel = $this->headingInfo[$keys[$index+1]]['level']; 77 … $lineEnd = $this->headingInfo[$keys[$index+1]]['startline'] - 1; // go one line up 127 $keys = array_keys($input); 128 foreach($keys as $key) {
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
D | keys.rst | 1 ``keys`` 4 The ``keys`` filter returns the keys of an array. It is useful when you want to 5 iterate over the keys of an array: 9 {% for key in array|keys %}
|
/plugin/asciidocjs/node_modules/yargs/build/lib/ |
D | usage.js | 115 Object.keys(keyOrKeys).forEach(k => { 155 let keys = []; 156 keys = keys.concat(Object.keys(descriptions)); 157 keys = keys.concat(Object.keys(demandedOptions)); 158 keys = keys.concat(Object.keys(demandedCommands)); 159 keys = keys.concat(Object.keys(options.default)); 160 keys = keys.filter(filterHiddenOptions); 161 keys = Object.keys(keys.reduce((acc, key) => { 237 …const aliasKeys = (Object.keys(options.alias) || []).concat(Object.keys(yargs.parsed.newAliases) |… 238 keys = keys.filter(key => !yargs.parsed.newAliases[key] && [all …]
|
D | yargs-factory.js | 160 array(keys) { argument 161 argsert('<array|string>', [keys], arguments.length); 162 this[kPopulateParserHintArray]('array', keys); 163 this[kTrackManuallySetKeys](keys); 166 boolean(keys) { argument 167 argsert('<array|string>', [keys], arguments.length); 168 this[kPopulateParserHintArray]('boolean', keys); 169 this[kTrackManuallySetKeys](keys); 197 coerce(keys, value) { argument 198 argsert('<object|string|array> [function]', [keys, value], arguments.length); [all …]
|
/plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/lib/ |
D | usage.js | 72 Object.keys(key).forEach(function (k) { 98 keys = Object.keys( 99 Object.keys(descriptions) 100 .concat(Object.keys(demanded)) 101 .concat(Object.keys(options.default)) 134 var aliasKeys = (Object.keys(options.alias) || []) 135 .concat(Object.keys(yargs.parsed.newAliases) || []) 137 keys = keys.filter(function (key) { 143 var switches = keys.reduce(function (acc, key) { 153 if (keys.length) { [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/ |
D | KeySet.php | 30 public $keys; variable in Google\\Service\\Spanner\\KeySet 51 public function setKeys($keys) argument 53 $this->keys = $keys; 60 return $this->keys;
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/ |
D | Code128.php | 183 $keys=''; 186 $keys .= chr($i); 196 $keys = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'; 199 $keys .= chr($i); 208 …$keys = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuv… 215 $keys = ''; 223 $keys .= chr($i); 257 if (strpos($keys, $code[$i]) === false) { 260 $sum += (strpos($keys, $code[$i]) * ($i + 1)); 275 $ck = strpos($keys, $code[$i]);
|
/plugin/asciidocjs/node_modules/core-js/modules/ |
D | es6.reflect.enumerate.js | 8 var keys = this._k = []; // keys 10 for (key in iterated) keys.push(key); 14 var keys = that._k; 17 if (that._i >= keys.length) return { value: undefined, done: true }; 18 } while (!((key = keys[that._i++]) in that._t));
|
/plugin/asciidocjs/node_modules/core-js/library/modules/ |
D | es6.reflect.enumerate.js | 8 var keys = this._k = []; // keys 10 for (key in iterated) keys.push(key); 14 var keys = that._k; 17 if (that._i >= keys.length) return { value: undefined, done: true }; 18 } while (!((key = keys[that._i++]) in that._t));
|
/plugin/dlcounter/ |
D | admin.php | 123 $keys = array_keys( $arr ); 124 for( $i = 0; $i < count($keys); $i++ ){ 125 if( $back2Front ) $keys[$i] = $this->switchKeyHelperA( $keys[$i] ); 126 else $keys[$i] = $this->switchKeyHelperB( $keys[$i] ); 128 return array_combine( $keys, $arr );
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Webmasters/ |
D | ApiDataRow.php | 26 public $keys; variable in Google\\Service\\Webmasters\\ApiDataRow 53 public function setKeys($keys) argument 55 $this->keys = $keys; 59 return $this->keys;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SearchConsole/ |
D | ApiDataRow.php | 29 public $keys; variable in Google\\Service\\SearchConsole\\ApiDataRow 59 public function setKeys($keys) argument 61 $this->keys = $keys; 68 return $this->keys;
|
/plugin/asciidocjs/node_modules/yargs-parser/build/lib/ |
D | yargs-parser.js | 81 keys: [] property 88 const assignment = Object.keys(opt).map(function (key) { 101 flags.keys.push(key); 105 flags.keys.push(key); 109 flags.keys.push(key); 113 flags.keys.push(key); 117 flags.keys.push(key); 121 flags.keys.push(key); 127 flags.keys.push(key); 135 flags.keys.push(key); [all …]
|