Home
last modified time | relevance | path

Searched +full:value -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 201 – 225 of 232) sorted by path

12345678910

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/
H A DElement.php27 * Raw element value
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php14 * portion of the certificate that contains optional parameters with default values. ie. if the parameter isn't there the default value is
15 * used. Problem is, if the parameter is there and it just so happens to have the default value there are two ways that that parameter can
16 * be encoded. It can be encoded explicitly or left out all together. This would effect the signature value and thus may invalidate the
134 * Attribute value disposition.
135 * If disposition is >= 0, this is the index of the target value.
138 const ATTR_APPEND = -2; // Add a value.
139 const ATTR_REPLACE = -3; // Clear first, then add a value.
530 $filters['tbsCertificate']['signature']['issuer']['rdnSequence']['value'] = $type_utf8_string;
531 $filters['tbsCertificate']['issuer']['rdnSequence']['value'] = $type_utf8_string;
532 $filters['tbsCertificate']['subject']['rdnSequence']['value']
4398 _setExtension($id, $value, $critical = false, $replace = true, $path = null) global() argument
4472 setExtension($id, $value, $critical = false, $replace = true) global() argument
4603 setAttribute($id, $value, $disposition = self ATTR_ALL) global() argument
4658 setKeyIdentifier($value) global() argument
5031 setRevokedCertificateExtension($serial, $id, $value, $critical = false, $replace = true) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php60 private $value;
63 * Mode independent value used for serialization.
173 $this->value = clone $x;
175 $this->value = new static("$x");
176 $this->value->setPrecision($x->getPrecision());
178 $this->value = new self::$mainEngine($x, $base);
189 return $this->value->toString();
197 return (string)$this->value;
207 return $this->value->__debugInfo();
218 return $this->value
104 const VALUE = 0; global() define in phpseclib\\Math\\BigInteger
191 var $value; global() variable in phpseclib\\Math\\BigInteger
1328 _baseSquare($value) global() argument
1367 _karatsubaSquare($value) global() argument
3622 _trim($value) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php67 // this value isn't really used anymore but i'm keeping it reserved for historical reasons
608 list($key, $value) = Strings::unpackSSH2('ss', $response);
609 $this->extensions[$key] = $value;
1006 foreach ($files as $value) {
1007 if ($value == '.' || $value == '..') {
1008 $result[] = $relativeDir . $value;
1011 if (is_array($this->query_stat_cache($this->realpath($dir . '/' . $value)))) {
1012 $temp = $this->nlist_helper($dir . '/' . $value, true, $relativeDir . $value
1419 _update_stat_cache($path, $value) global() argument
[all...]
H A DSSH1.php
H A DSSH2.php2547 foreach ($responses[$i] as $key => $value) {
2548 $this->keyboard_requests_responses[$key] = $value;
2561 foreach ($this->keyboard_requests_responses as $key => $value) {
2563 $responses[] = $value;
4113 // currently, there's only one possible value for $data_type_code: NET_SSH2_EXTENDED_DATA_STDERR
4129 list($value) = Strings::unpackSSH2('s', $response);
4130 switch ($value) {
4650 * named constants from it, using the value as the name of the constant and the index as the value of the constant.
4659 foreach ($arg as $key => $value) {
5360 setWindowColumns($value) global() argument
5371 setWindowRows($value) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md187 * Fixed inline documentation for return value types for accuracy. [#570](https://github.com/simplepie/simplepie/pull/570)
189 * Removed unnecessary `else`s when a value has already been returned. [#566](https://github.com/simplepie/simplepie/pull/566)
217 * PHP 7.1 Support: Fixed PHP error when trying to use a non-numeric value in `round()`. [#458](https://github.com/simplepie/simplepie/pull/458)
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php110 * Sets a new option value. Available options and values:
120 * @param mixed Parameter to set (string: single parameter; array of Parameter => Value pairs)
121 * @param string Value to use (if parameter 1 is a string)
125 function set_parameter($option, $value = false) argument
128 $option = array($option => $value);
642 * @return array Either Hangul Syllable decomposed or original 32bit value as one value array
905 // Take array values and split output to 4 bytes per value
948 * Sets a new option value. Available options and values:
958 * @param mixed Parameter to set (string: single parameter; array of Parameter => Value pair
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBaseDataCache.php70 * Fetches a value from the cache.
78 * @param mixed $default Default value to return if the key does not exist.
80 * @return array|mixed The value of the item from the cache, or $default in case of cache miss.
83 * MUST be thrown if the $key string is not a legal value.
114 * public function set(string $key, mixed $value, null|int|\DateInterval $ttl = null): bool;
118 * @param array $value The value of the item to store, must be serializable.
119 * @param null|int $ttl Optional. The TTL value of this item. If no value is sent and
120 * the driver supports TTL then the library may set a default value
128 set_data(string $key, array $value, int $ttl = null) global() argument
[all...]
H A DDataCache.php66 * Fetches a value from the cache.
74 * @param mixed $default Default value to return if the key does not exist.
76 * @return array|mixed The value of the item from the cache, or $default in case of cache miss.
79 * MUST be thrown if the $key string is not a legal value.
88 * public function set(string $key, mixed $value, null|int|\DateInterval $ttl = null): bool;
92 * @param array $value The value of the item to store, must be serializable.
93 * @param null|int $ttl Optional. The TTL value of this item. If no value is sent and
94 * the driver supports TTL then the library may set a default value
102 set_data(string $key, array $value, int $ttl = null) global() argument
[all...]
H A DPsr16.php78 * Fetches a value from the cache.
86 * @param mixed $default Default value to return if the key does not exist.
88 * @return array|mixed The value of the item from the cache, or $default in case of cache miss.
91 * MUST be thrown if the $key string is not a legal value.
109 * public function set(string $key, mixed $value, null|int|\DateInterval $ttl = null): bool;
113 * @param array $value The value of the item to store, must be serializable.
114 * @param null|int $ttl Optional. The TTL value of this item. If no value is sent and
115 * the driver supports TTL then the library may set a default value
123 set_data(string $key, array $value, int $ttl = null) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DEnclosure.php823 * `$options` is an array or comma-separated key:value string, with the
831 * will have this value as its class name. Defaults to blank.
838 * numeric pixel value (such as `360`) or `auto`. Defaults to `auto`,
850 * numeric pixel value (such as `480`) or `auto`. Defaults to `auto`,
861 * @param array|string $options Comma-separated key:value list, or array
977 // Set proper placeholder value
H A DFile.php94 foreach ($headers as $key => $value) {
95 $headers2[] = "$key: $value";
180 foreach ($headers as $key => $value) {
181 $out .= "$key: $value\r\n";
H A DGzdecode.php181 * @param mixed $value
183 public function __set($name, $value) argument
H A DIRI.php113 * Each key is the scheme, each value is an array with each key as the IRI
114 * part and value as the default value for that part.
150 * @param mixed $value Property value
152 public function __set($name, $value) argument
155 call_user_func([$this, 'set_' . $name], $value);
164 call_user_func([$this, 'set_' . substr($name, 1)], $value);
424 $value = ord($string[$position]);
435 if (($value
[all...]
H A DItem.php138 * See {@see \SimplePie\SimplePie::get_feed_tags()} for a description of the return value
156 * Get the base URL value.
929 * @todo If an element exists at a level, but its value is empty, we should fall back to the value from the parent (if it exists).
1168 $value = null;
1171 $value = $this->sanitize($hash['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1178 $hashes_parent[] = $algo.':'.$value;
1182 $value = null;
1185 $value = $this->sanitize($hash['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1192 $hashes_parent[] = $algo.':'.$value;
[all...]
H A DLocator.php326 foreach ($array as $key => $value) {
330 if (in_array(strtolower(strrchr($value, '.')), ['.rss', '.rdf', '.atom', '.xml'])) {
336 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
349 foreach ($array as $key => $value) {
353 if (preg_match('/(feed|rss|rdf|atom|xml)/i', $value)) {
358 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $this->force_fsockopen, $this->curl_options]);
H A DMisc.php135 foreach ($element['attribs'] as $key => $value) {
137 $full .= " $key=\"" . htmlspecialchars($value['data'], ENT_COMPAT, 'UTF-8') . '"';
211 foreach ($array2 as $key => $value) {
212 if (is_array($value)) {
213 $array1[$key] = Misc::array_merge_recursive($array1[$key], $value);
215 $array1[$key] = $value;
1929 * Returns an associative array of name/value pairs, where the value is an
1943 [$name, $value] = explode('=', $section, 2);
1944 $return[urldecode($name)][] = urldecode($value);
[all...]
H A DParser.php146 $xml_is_sane = isset($values[0]['value']);
212 $attributes[$attrName] = $xml->value;
222 $this->cdata(null, $xml->value);
272 foreach ($attributes as $name => $value) {
274 $attribs[$attrib_namespace][$attribute] = $value;
299 foreach ($attribs[''] as $name => $value) {
300 $this->data['data'] .= ' ' . $name . '="' . htmlspecialchars($value, ENT_COMPAT, $this->encoding) . '"';
400 return $data['value'] ?? '';
460 if (isset($link['value'])) {
461 $link = $link['value'];
[all...]
H A DRating.php69 * Rating value
74 public $value; variable in SimplePie\\Rating
82 public function __construct($scheme = null, $value = null) argument
85 $this->value = $value;
114 * Get the value of the rating
120 if ($this->value !== null) {
121 return $this->value;
H A DRegistry.php154 // trigger_error(sprintf('"%s"(): Using argument #1 ($type) with value "%s" is deprecated since SimplePie 1.8.0, use class-string "%s" instead.', __METHOD__, $type, $this->legacyTypes[$type]), \E_USER_DEPRECATED);
195 // trigger_error(sprintf('"%s"(): Using argument #1 ($type) with value "%s" is deprecated since SimplePie 1.8.0, use class-string "%s" instead.', __METHOD__, $type, $this->legacyTypes[$type]), \E_USER_DEPRECATED);
H A DRestriction.php82 public $value; variable in SimplePie\\Restriction
90 public function __construct($relationship = null, $type = null, $value = null) argument
94 $this->value = $value;
143 if ($this->value !== null) {
144 return $this->value;
H A DSanitize.php252 * Set element/attribute key/value pairs of HTML attributes
260 * @param array|null $element_attribute Element/attribute key/value pairs, null for default
508 $value = $this->registry->call(Misc::class, 'absolutize_url', [$element->getAttribute($attribute), $this->base]);
509 if ($value !== false) {
510 $value = $this->https_url($value);
511 $element->setAttribute($attribute, $value);
549 $value = $attr->value;
551 // In XHTML, empty values should never exist, so we repeat the value
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php78 * Key/value pairs of the headers
103 private const STATE_VALUE = 'value';
155 * Value of the hedaer currently being parsed
159 protected $value = ''; variable in SimplePie\\HTTP\\Parser
271 $this->value = trim($this->value, "\x0D\x20");
272 if ($this->name !== '' && $this->value !== '') {
276 $this->headers[$this->name] .= ', ' . $this->value;
278 $this->headers[$this->name] = $this->value;
282 $this->value
333 protected function value() global() function in SimplePie\\HTTP\\Parser
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php223 // Check the value is valid
224 $value = hexdec($ipv6_part);
225 if (dechex($value) !== strtolower($ipv6_part) || $value < 0 || $value > 0xFFFF) {
231 $value = (int) $ipv4_part;
232 if ((string) $value !== $ipv4_part || $value < 0 || $value > 0xFF) {

12345678910