Home
last modified time | relevance | path

Searched refs:key (Results 76 – 100 of 2492) sorted by relevance

12345678910>>...100

/plugin/txtconf/
H A Dtxtconfig.class.php84 foreach ($keys as $key) {
85 if (isset($this->_metadata[$key])) {
104 $this->setting[$key] = new $class($key,$param);
105 $this->setting[$key]->initialize($default[$key],$local[$key],$protected[$key]);
113 function add_local_setting($key,$value) { argument
129 if (isset($this->_metadata[$key])) {
130 $class = $this->_metadata[$key][0];
139 $this->setting[$key] = new $class($key,$param);
173 $config[$key] = $value;
276 $key = htmlspecialchars($this->_key);
[all …]
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DLookahead.php74 $key = $lookahead->key(),
80 ->integer($key)
91 $key = $lookahead->key(),
97 ->integer($key)
108 $key = $lookahead->key(),
114 ->integer($key)
133 $key = $lookahead->key(),
139 ->integer($key)
150 $key = $lookahead->key(),
156 ->integer($key)
/plugin/authgooglesheets/vendor/google/auth/src/Cache/
H A DSysVCacheItemPool.php95 * @param mixed $key
113 foreach ($keys as $key) {
114 $items[$key] = $this->hasItem($key) ?
115 clone $this->items[$key] :
116 new $itemClass($key);
124 public function hasItem($key): bool argument
127 return isset($this->items[$key]) && $this->items[$key]->isHit();
143 public function deleteItem($key): bool argument
145 return $this->deleteItems([$key]);
157 foreach ($keys as $key) {
[all …]
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DArrayComparator.php53 foreach ($expected as $key => $value) {
54 unset($remaining[$key]);
56 if (!array_key_exists($key, $actual)) {
59 $this->exporter->export($key),
74 $this->exporter->export($key),
79 $this->exporter->export($key),
80 $this->exporter->shortenedExport($actual[$key])
85 $this->exporter->export($key),
93 $this->exporter->export($key),
103 foreach ($remaining as $key => $value) {
[all …]
/plugin/fblogin/lib/
H A Dfacebook.php102 protected function setPersistentData($key, $value) { argument
103 if (!in_array($key, self::$kSupportedKeys)) {
108 $session_var_name = $this->constructSessionVariableName($key);
112 protected function getPersistentData($key, $default = false) { argument
113 if (!in_array($key, self::$kSupportedKeys)) {
123 protected function clearPersistentData($key) { argument
124 if (!in_array($key, self::$kSupportedKeys)) {
134 foreach (self::$kSupportedKeys as $key) {
135 $this->clearPersistentData($key);
153 protected function constructSessionVariableName($key) { argument
[all …]
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DRestorer.php55 foreach (array_keys($GLOBALS) as $key) {
56 if ($key != 'GLOBALS' &&
57 !in_array($key, $superGlobalArrays) &&
58 !$snapshot->blacklist()->isGlobalVariableBlacklisted($key)) {
59 if (isset($globalVariables[$key])) {
60 $GLOBALS[$key] = $globalVariables[$key];
62 unset($GLOBALS[$key]);
132 foreach ($keys as $key) {
133 if (isset($superGlobalVariables[$superGlobalArray][$key])) {
134 … $GLOBALS[$superGlobalArray][$key] = $superGlobalVariables[$superGlobalArray][$key];
[all …]
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DConfiguration.php
H A DArrayCollection.php110 set($key, $value) global() argument
128 get($key) global() argument
146 remove($key) global() argument
213 containsKey($key) global() argument
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DXML.php42 * @param string $key
46 public static function load($key, $password = '') argument
48 if (!Strings::is_stringable($key)) {
49 throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
59 if (substr($key, 0, 5) != '<?xml') {
60 $key = '<xml>' . $key . '</xml>';
62 if (!$dom->loadXML($key)) {
68 foreach ($keys as $key) {
70 …("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='$key']");
75 switch ($key) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DOpenSSH.php54 * @param string $key
60 $parsed = parent::load($key, $password);
70 $key = libsodium::load($key);
71 $key['comment'] = $comment;
72 return $key;
156 return $key;
159 $key = 'ssh-ed25519 ' . base64_encode($key) . ' ' . $comment;
160 return $key;
169 return $key;
172 $key = 'ecdsa-sha2-' . $alias . ' ' . base64_encode($key) . ' ' . $comment;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DTripleDES.php254 * @param string $key
256 public function setKey($key) argument
262 switch (strlen($key)) {
264 $key .= substr($key, 0, 8);
273 $this->key = $key;
274 $this->key_length = strlen($key);
279 $this->des[0]->setKey(substr($key, 0, 8));
280 $this->des[1]->setKey(substr($key, 8, 8));
281 $this->des[2]->setKey(substr($key, 16, 8));
299 if ($this->mode_3cbc && strlen($this->key) > 8) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DArrayHasKey.php24 protected $key; variable in PHPUnit_Framework_Constraint_ArrayHasKey
27 * @param int|string $key
29 public function __construct($key) argument
32 $this->key = $key;
46 return array_key_exists($this->key, $other);
50 return $other->offsetExists($this->key);
63 return 'has the key ' . $this->exporter->export($this->key);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/
H A DFilesystemCache.php28 public function has($key) argument
30 return file_exists($this->dir.'/'.$key);
33 public function get($key) argument
35 $path = $this->dir.'/'.$key;
38 throw new \RuntimeException('There is no cached value for '.$key);
44 public function set($key, $value) argument
50 $path = $this->dir.'/'.$key;
57 public function remove($key) argument
59 $path = $this->dir.'/'.$key;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DXML.php44 * @param string $key
48 public static function load($key, $password = '') argument
50 if (!Strings::is_stringable($key)) {
51 throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
68 if (substr($key, 0, 5) != '<?xml') {
69 $key = '<xml>' . $key . '</xml>';
71 if (!$dom->loadXML($key)) {
77 foreach ($keys as $key) {
84 switch ($key) {
113 foreach ($components as $key => $value) {
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DFileCacheReader.php101 $key = $this->classNameHashes[$class->name];
103 if (isset($this->loadedAnnotations[$key])) {
104 return $this->loadedAnnotations[$key];
111 return $this->loadedAnnotations[$key] = $annot;
121 return $this->loadedAnnotations[$key] = $annot;
138 if (isset($this->loadedAnnotations[$key])) {
139 return $this->loadedAnnotations[$key];
146 return $this->loadedAnnotations[$key] = $annot;
156 return $this->loadedAnnotations[$key] = $annot;
173 if (isset($this->loadedAnnotations[$key])) {
[all …]
/plugin/confmanager/tpl/
H A DshowConfigTwoLine.php11 <?php foreach ($local as $key => $value): ?>
12 <?php $isDefault = array_key_exists($key, $default) ?>
20 value="<?php echo hsc($key) ?>"
28 name="values[<?php echo hsc($key) ?>]"
35 <?php if($local[$key] === ''): ?>
76 <?php foreach($default as $key => $value): ?>
77 <?php $isOverridden = array_key_exists($key, $local) ?>
81 <span class="default_key"><?php echo hsc($key); ?></span>
88 <?php if($local[$key] === ''): ?>
/plugin/authgoogle/google/io/
H A DGoogle_HttpRequest.php131 * @param string $key
135 public function getResponseHeader($key) { argument
137 ? $this->responseHeaders[$key]
171 * @param string $key
175 public function getRequestHeader($key) { argument
177 ? $this->requestHeaders[$key]
254 $key = $this->getUrl();
257 $key .= $this->accessKey;
264 return md5($key);
285 $str .= $key . ': ' . $val . "\n";
[all …]
/plugin/quickstats/GEOIP/
H A Dcc_arrays_dat.php84 $key = array_search($cc, $QSTATS_COUNTRY_CODES);
85 if($key) {
86 return $QSTATS_COUNTRY_NAMES[$key];
93 $key = array_search($country, $QSTATS_COUNTRY_NAMES);
94 if($key !== false) {
95 return $key ;
108 foreach($QSTATS_COUNTRY_NAMES as $key => $eval)
112 $ret_str .= $QSTATS_COUNTRY_CODES[$key]. '::' . $eval."\n";
/plugin/combo/ComboStrap/TagAttribute/
H A DStyleAttribute.php35 foreach ($styles as $key => $value) {
36 $rule .= " $key:$value;" . DOKU_LF;
44 * @param array $array of property as key and value
93 [$key, $value] = preg_split("/:/", $stylingDeclaration, 2);
94 $stylingDeclarationAsArray[$key] = $value;
105 foreach ($actualQuery as $key => $value) {
106 $expectedValue = $expectedQuery[$key];
108 throw new ExceptionNotEquals("The expected style does not have the $key property");
111 throw new ExceptionNotEquals("The style $key property does not have the same value ($value vs $expectedValue)");
113 unset($expectedQuery[$key]);
[all...]
/plugin/zip/pear/File/Archive/Writer/
H A DMulti.php56 foreach($this->writers as $key => $foo) {
57 $error = $this->writers[$key]->newFile($filename, $stat, $mime);
71 foreach($this->writers as $key => $foo) {
72 if ($this->writers[$key]->newFileNeedsMIME()) {
85 foreach($this->writers as $key => $foo) {
86 $error = $this->writers[$key]->writeData($data);
102 foreach($this->writers as $key => $foo) {
103 $error = $this->writers[$key]->writeFile($filename);
119 foreach($this->writers as $key => $foo) {
120 $error = $this->writers[$key]->close();
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/
H A Dfckconnector.py49 def setHeader(self, key, value): argument
50 self.headers.append ((key, value))
77 def has_key(self, key): argument
78 return self.request.has_key(key) or self.get_request.has_key(key)
80 def get(self, key, default=None): argument
81 if key in self.request.keys():
82 field = self.request[key]
83 elif key in self.get_request.keys():
84 field = self.get_request[key]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DunindentedCollections.yml18 key:
23 ['collection' => ['key' => ['a', 'b', 'c']]]
30 key:
43 key:
49 ['collection' => ['key' => ['a', 'b', 'c']], 'foo' => 'bar']
56 key:
62 ['collection' => ['key' => ['a', 'b', 'c'], 'foo' => 'bar']]
69 - key: foo
72 ['collection' => [['key' => 'foo', 'foo' => 'bar']]]
79 - key: foo
[all …]
/plugin/combo/resources/library/combo/dist/
H A Dcombo.min.js1 !function(){function t(t){return t&&t.__esModule?t.default:t}function e(t,e,n,r,a,o,i){try{var l=t[o](i),s=l.value}catch(t){return void n(t)}l.done?e(s):Promise.resolve(s).then(r,a)}function n(t){return function(){var n=this,r=arguments;return new Promise((function(a,o){var i=t.apply(n,r);function l(t){e(i,a,o,l,s,"next",t)}function s(t){e(i,a,o,l,s,"throw",t)}l(void 0)}))}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function o(t,e,n){return e&&a(t.prototype,e),n&&a(t,n),t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var l,s=function(){"use strict";function t(){r(this,t)}return o(t,null,[{key:"toBoolean",value:function(t){return"boolean"==typeof t?t:"true"===t}}]),t}(),u=function(){"use strict";function t(){r(this,t)}return o(t,[{key:"error",value:function(t){console.error(t)}}],[{key:"getLogger",value:function(){return void 0===l&&(l=new t),l}}]),t}(),c=function(t){return crypto.getRandomValues(new Uint8Array(t))},h=function(t,e){return function(t,e,n){var r=(2<<Math.log(t.length-1)/Math.LN2)-1,a=-~(1.6*r*e/t.length);return function(){for(var o="";;)for(var i=n(a),l=a;l--;)if((o+=t[i[l]&r]||"").length===e)return o}}(t,e,c)},d=function(){"use strict";function t(){r(this,t)}return o(t,null,[{key:"toHtmlId",value:function(t){return t.toString().replace(/[_.\s:\/\\]/g,"-")}},{key:"createRandomId",value:function(){return h("abcdefghijklmnopqrstuvwxyz",10)()}},{key:"toEntities",value:function(t){for(var e=[],n=0;n<t.length;n++){var r="&#".concat(t[n].charCodeAt(),";");e.push(r)}return e.join("")}}]),t}(),f=function(){"use strict";function t(e){r(this,t),i(this,"tab","unknown"),i(this,"mutable",!0),i(this,"values",[]),i(this,"defaultValues",[]),i(this,"multiple",!1),i(this,"children",{}),this.name=e}return o(t,[{key:"getLabelAnchor",value:function(){if(void 0===this.getUrl()&&void 0===this.getDescription())return this.getLabel();var t=this.getUrl();return void 0===this.getUrl()?(t="#",'\n<span class="d-inline-block" tabindex="0" data-bs-toggle="tooltip" title="'.concat(this.getDescription(),'">\n <a href="').concat(t,'" title="').concat(this.getDescription(),'" style="text-decoration:none;pointer-events: none;">').concat(this.getLabel(),"</a>\n</span>")):'<a href="'.concat(t,'" title="').concat(this.getDescription(),'" data-bs-toggle="tooltip" style="text-decoration:none" target="_blank">').concat(this.getLabel(),"</a>")}},{key:"setType",value:function(t){return this.type=t,this}},{key
[all...]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
H A DDashboard.php151 $key = floor($method['coverage'] / 10) * 10;
152 $key = $key . '-' . ($key + 10) . '%';
153 $result['method'][$key]++;
162 $key = floor($class['coverage'] / 10) * 10;
163 $key = $key . '-' . ($key + 10) . '%';
164 $result['class'][$key]++;
192 $key = $className . '::' . $methodName;
194 $key = $methodName;
252 $key = $className . '::' . $methodName;
254 $key = $methodName;
[all …]
/plugin/subconfhelper/helper/
H A Dconfig.php70 foreach ($keys as $key) {
71 if (isset($this->_metadata[$key])) {
72 $class = $this->_metadata[$key][0];
75 $this->setting[] = new setting_no_class($key,$param);
78 $param = $this->_metadata[$key];
89 $this->setting[$key] = new $class($key,$param);
90 $this->setting[$key]->initialize($default[$key],$local[$key],$protected[$key]);

12345678910>>...100