Home
last modified time | relevance | path

Searched refs:self (Results 1 – 25 of 67) sorted by relevance

123

/dokuwiki/vendor/composer/
H A DInstalledVersions.php55 foreach (self::getInstalled() as $installed) {
77 foreach (self::getInstalled() as $installed) {
99 foreach (self::getInstalled() as $installed) {
123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
139 foreach (self::getInstalled() as $installed) {
170 foreach (self::getInstalled() as $installed) {
191 foreach (self::getInstalled() as $installed) {
212 foreach (self::getInstalled() as $installed) {
233 foreach (self::getInstalled() as $installed) {
250 $installed = self
[all...]
H A Dautoload_real.php21 if (null !== self::$loader) {
22 return self::$loader;
28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DColors.php36 self::C_RESET => "\33[0m",
37 self::C_BLACK => "\33[0;30m",
38 self::C_DARKGRAY => "\33[1;30m",
39 self::C_BLUE => "\33[0;34m",
40 self::C_LIGHTBLUE => "\33[1;34m",
41 self::C_GREEN => "\33[0;32m",
42 self::C_LIGHTGREEN => "\33[1;32m",
43 self::C_CYAN => "\33[0;36m",
44 self::C_LIGHTCYAN => "\33[1;36m",
45 self
[all...]
/dokuwiki/inc/
H A DSafeFN.class.php51 return self::unicodeToSafe(Unicode::fromUtf8($filename));
81 return Unicode::toUtf8(self::safeToUnicode(strtolower($filename)));
91 return !preg_match('#[^' . self::$plain . self::$post_indicator . self::$pre_indicator . ']#', $safe);
109 if ($codepoint < 127 && (strpos(self::$plain . self::$post_indicator, chr($codepoint)) !== false)) {
111 $safe .= self::$post_indicator;
115 } elseif ($codepoint == ord(self::$pre_indicator)) {
116 $safe .= self
[all...]
H A DLogger.php46 public static function getInstance($facility = self::LOG_ERROR)
48 if (empty(self::$instances[$facility])) {
49 self::$instances[$facility] = new Logger($facility);
51 return self::$instances[$facility];
65 return self::getInstance(self::LOG_ERROR)->log(
84 return self::getInstance(self::LOG_DEBUG)->log(
103 return self::getInstance(self
[all...]
H A DErrorHandler.php60 $plugin = self::guessPlugin($e);
64 $logged = self::logException($e)
93 if (self::logException($e)) $msg .= '<br />More info is available in the error log.';
115 self::fatalException(
130 $prefix = self::ERRORCODES[$e->getSeverity()];
166 self::logException($ex);
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php108 * @var self::STATE_*
110 public $state = self::STATE_BEFORE_VERSION_NAME;
156 while ($this->state && $this->state !== self::STATE_EMIT && $this->has_data()) {
161 if ($this->state === self::STATE_EMIT) {
215 $this->state = self::STATE_VERSION_NAME;
217 $this->state = self::STATE_ERROR;
226 $this->state = self::STATE_VERSION_EQUALS;
228 $this->state = self::STATE_ERROR;
237 $this->state = self::STATE_VERSION_VALUE;
239 $this->state = self
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php107 * If the mapping type is self::TYPE_ANY what do we actually encode it as?
110 * @see self::encode_der()
120 * @see self::encode_der()
130 * @see self::decodeDER()
144 self::TYPE_BOOLEAN => true,
145 self::TYPE_INTEGER => true,
146 self::TYPE_BIT_STRING => 'bitString',
147 self::TYPE_OCTET_STRING => 'octetString',
148 self::TYPE_NULL => 'null',
149 self
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php84 public const LINKBACK = '<a href="' . self::URL . '" title="' . self::NAME . ' ' . self::VERSION . '">' . self::NAME . '</a>';
580 public $autodiscovery = self::LOCATOR_ALL;
1016 public function set_autodiscovery_level($level = self::LOCATOR_ALL)
1656 if (!($this->get_type() & ~self::TYPE_NONE)) {
1825 if (!$file->success && !($file->method & self::FILE_SOURCE_REMOTE === 0 || ($file->status_code === 200 || $file->status_code > 206 && $file->status_code < 300))) {
1858 $self = $locate->get_rel_link('self');
3181 store_links(& $file, $hub, $self) global() argument
[all...]
H A DCache.php96 if (!empty(self::$handlers[$type])) {
97 $class = self::$handlers[$type];
113 return self::get_handler($location, $filename, $extension);
124 self::$handlers[$type] = $class;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php54 * Contains $keys[self::ENCRYPT]
61 * Contains $keys[self::DECRYPT]
99 self::MODE_ECB => 'des-ecb',
100 self::MODE_CBC => 'des-cbc',
101 self::MODE_CFB => 'des-cfb',
102 self::MODE_OFB => 'des-ofb'
103 // self::MODE_CTR is undefined for DES
117 * Used only if $engine == self::ENGINE_INTERNAL
119 * @see self::setupKey()
120 * @see self
[all...]
H A DBase.php
H A DRC4.php83 * @see self::setKey()
91 * @see self::setKey()
107 if ($engine == self::ENGINE_OPENSSL) {
163 * @see self::crypt()
169 if ($this->engine != self::ENGINE_INTERNAL) {
172 return $this->crypt($plaintext, self::ENCRYPT);
182 * @see self::crypt()
188 if ($this->engine != self::ENGINE_INTERNAL) {
191 return $this->crypt($ciphertext, self::DECRYPT);
233 $this->stream[self
[all...]
H A DTripleDES.php47 * Inner chaining is used by SSH-1 and is generally considered to be less secure then outer chaining (self::MODE_CBC3).
56 const MODE_CBC3 = self::MODE_CBC;
86 * @see self::setKey()
93 * Internal flag whether using self::MODE_3CBC or not
136 // In case of self::MODE_3CBC, we init as CRYPT_DES_MODE_CBC
161 if ($this->mode == self::MODE_STREAM) {
178 if ($engine == self::ENGINE_OPENSSL) {
257 // copied from self::setKey()
280 // except for: self::MODE_3CBC (inner chaining CBC) with a key > 64bits
355 * @see self
[all...]
/dokuwiki/inc/Debug/
H A DDebugHelper.php44 if (!self::isEnabled()) return;
51 [$self, $call] = $backtrace;
53 self::triggerDeprecationEvent(
56 self::formatCall($self),
57 self::formatCall($call),
58 $self['file'] ?? $call['file'] ?? '',
59 $self['line'] ?? $call['line'] ?? 0
91 if (!self::isEnabled()) return;
98 self
[all...]
/dokuwiki/inc/Utf8/
H A DSort.php45 if (!self::$useIntl || !class_exists('\Collator')) {
50 if (!isset(self::$collators[$lc])) {
62 self::$collators[$lc] = $collator;
65 return self::$collators[$lc];
78 self::$useIntl = $use;
93 $collator = self::getCollator();
112 $collator = self::getCollator();
131 $collator = self::getCollator();
150 $collator = self::getCollator();
171 $collator = self
[all...]
H A DAsian.php67 return (bool)preg_match('/' . self::REGEXP . '/u', $term);
80 $asia = @preg_replace('/(' . self::REGEXP . ')/u', $sep . '\1' . $sep, $text);
96 return preg_split('/(' . self::REGEXP . '+)/u', $term, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
H A DPhpString.php120 $strlen = self::strlen($str); // see notes
140 if (!isset($strlen)) $strlen = self::strlen($str); // see notes
184 if ($start > 0) $ret .= self::substr($string, 0, $start);
186 $ret .= self::substr($string, $start + $length);
245 return self::ltrim(self::rtrim($str, $charlist), $charlist);
303 switch (self::strlen($str)) {
307 return self::strtoupper($str);
310 return self::strtoupper($matches[1]) . $matches[2];
335 $ucfirst = self
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php122 * @var self::STATE_*
124 protected $state = self::STATE_HTTP_VERSION;
179 while ($this->state && $this->state !== self::STATE_EMIT && $this->has_data()) {
184 if ($this->state === self::STATE_EMIT || $this->state === self::STATE_BODY) {
232 $this->state = self::STATE_STATUS;
234 $this->state = self::STATE_ERROR;
237 $this->state = self::STATE_ERROR;
249 $this->state = self::STATE_REASON;
251 $this->state = self
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSCP.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php65 * @see self::__sleep()
66 * @see self::__wakeup()
74 * @see self::__sleep()
75 * @see self::__wakeup()
91 self::$engines = [];
101 self::$mainEngine = $fqmain;
117 self::$engines = [$main, $modexp];
127 self::initialize_static_variables();
129 return self::$engines;
137 if (!isset(self
[all...]
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js3 var self = this,
18 self._onProgress(id, fileName, loaded, total);
19 self._options.onProgress(id, fileName, loaded, total);
22 self._onComplete(id, fileName, result);
23 self._options.onComplete(id, fileName, result);
26 self._onCancel(id, fileName);
27 self._options.onCancel(id, fileName);
30 self._onUpload();
142 var self = this,
149 self
[all...]
H A Dfileuploader.js305 var self = this;
311 self._onInputChange(input);
316 var self = this,
330 self._onProgress(id, fileName, loaded, total);
331 self._options.onProgress(id, fileName, loaded, total);
334 self._onComplete(id, fileName, result);
335 self._options.onComplete(id, fileName, result);
338 self._onCancel(id, fileName);
339 self._options.onCancel(id, fileName);
346 var self
[all...]
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DEmailAddressValidator.php36 if (!self::checkTextLength($emailAddress, 3, 256)) {
65 if (!self::checkLocalPortion($emailAddressParts[0])) {
70 if (!self::checkDomainPortion($emailAddressParts[1], $allowLocal)) {
88 if (!self::checkTextLength($localPortion, 1, 64)) {
119 if (!self::checkTextLength($domainPortion, 1, 255)) {
153 if (!self::checkTextLength($domainPortionParts[$i], 1, 63)) {

123