Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 76) sorted by last modified time

1234

/dokuwiki/vendor/geshi/geshi/
H A DLICENSE313 when it starts in an interactive mode:
/dokuwiki/inc/
H A Dparserutils.php38 * one request. The P_GET_METADATA_RENDER_LIMIT is used in this mode.
47 * is used in this mode. Use this mode when you are requesting more complex
50 * the simple cache mode that metadata needs to be rendered for all pages at once
57 * rendered. Use this mode with care, normally it should only be used in places
228 foreach ($modes as $mode) {
229 $Parser->addMode($mode['mode'], $mode['obj']);
551 * @return array[] with for each plugin the array('sort' => sortnumber, 'mode'
677 p_render($mode, $instructions, & $info, $date_at = '') global() argument
722 p_get_renderer($mode) global() argument
[all...]
H A Dio.php255 $mode = ($append) ? 'ab' : 'wb';
260 $fh = @gzopen($file, $mode . '9');
276 $fh = @fopen($file, $mode);
321 * A regex that matches any part of the line will remove the entire line in this mode.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php572 * @param string $mode
573 * @throws BadModeException if an invalid / unsupported mode is provided
575 public function __construct($mode)
577 parent::__construct($mode);
579 if ($this->mode == self::MODE_STREAM) {
580 throw new BadModeException('Block ciphers cannot be ran in stream mode');
662 * $mode should be either self::ENCRYPT or self::DECRYPT. See
669 * @param int $mode
672 private function processBlock($block, $mode)
691 $keys = $this->keys[$mode];
680 _processBlock($block, $mode) global() argument
[all...]
H A DRSA.php40 * One thing to consider when using this: so phpseclib uses PSS mode by default.
146 * Encryption padding mode
153 * Signature padding mode
697 * Used with signature production / verification and (if the encryption mode is self::PADDING_OAEP) encryption and
2050 _getPrivatePublicKey($mode = self PUBLIC_FORMAT_PKCS8) global() argument
3137 setEncryptionMode($mode) global() argument
3150 setSignatureMode($mode) global() argument
H A DRijndael.php161 * @param string $mode
162 * @throws \InvalidArgumentException if an invalid / unsupported mode is provided
164 public function __construct($mode)
166 parent::__construct($mode);
168 if ($this->mode == self::MODE_STREAM) {
169 throw new BadModeException('Block ciphers cannot be ran in stream mode');
275 $this->mode == self::MODE_GCM &&
284 return $this->mode == self::MODE_GCM &&
H A DTwofish.php358 * @param string $mode
359 * @throws BadModeException if an invalid / unsupported mode is provided
361 public function __construct($mode)
363 parent::__construct($mode);
365 if ($this->mode == self::MODE_STREAM) {
366 throw new BadModeException('Block ciphers cannot be ran in stream mode');
395 __construct($mode = self MODE_CBC) global() argument
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php27 /** @var array mode "rewrites" */
47 * Adds a token search pattern for a particular parsing mode.
49 * The pattern does not change the current mode.
53 * @param string $mode Should only apply this
57 public function addPattern($pattern, $mode = "accept")
59 if (! isset($this->regexes[$mode])) {
60 $this->regexes[$mode] = new ParallelRegex($this->case);
62 $this->regexes[$mode]->addPattern($pattern);
66 * Adds a pattern that will enter a new parsing mode.
71 * @param string $mode Shoul
58 addPattern($pattern, $mode = 'accept') global() argument
75 addEntryPattern($pattern, $mode, $new_mode) global() argument
89 addExitPattern($pattern, $mode) global() argument
107 addSpecialPattern($pattern, $mode, $special) global() argument
121 mapHandler($mode, $handler) global() argument
184 dispatchTokens($unmatched, $matched, $mode, $initialPos, $matchPos) global() argument
216 isModeEnd($mode) global() argument
228 isSpecialMode($mode) global() argument
239 decodeSpecial($mode) global() argument
[all...]
/dokuwiki/inc/Parsing/ParserMode/
H A DAbstractMode.php28 public function connectTo($mode)
38 public function accepts($mode)
40 return in_array($mode, (array) $this->allowedModes);
26 connectTo($mode) global() argument
36 accepts($mode) global() argument
H A DAcronym.php33 public function connectTo($mode) argument
38 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'acronym');
H A DCode.php8 public function connectTo($mode)
10 $this->Lexer->addEntryPattern('<code\b(?=.*</code>)', $mode, 'code');
9 connectTo($mode) global() argument
H A DEntity.php35 public function connectTo($mode)
40 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'entity');
36 connectTo($mode) global() argument
H A DEol.php8 public function connectTo($mode)
11 if (in_array($mode, $badModes)) {
16 $this->Lexer->addSpecialPattern('(?:^[ \t]*)?\n', $mode, 'eol');
9 connectTo($mode) global() argument
H A DExternallink.php33 public function connectTo($mode) argument
37 $this->Lexer->addSpecialPattern($pattern, $mode, 'externallink');
H A DFile.php8 public function connectTo($mode)
10 $this->Lexer->addEntryPattern('<file\b(?=.*</file>)', $mode, 'file');
9 connectTo($mode) global() argument
H A DHr.php8 public function connectTo($mode)
10 $this->Lexer->addSpecialPattern('\n[ \t]*-{4,}[ \t]*(?=\n)', $mode, 'hr');
9 connectTo($mode) global() argument
H A DInternallink.php8 public function connectTo($mode)
11 $this->Lexer->addSpecialPattern("\[\[.*?\]\](?!\])", $mode, 'internallink');
9 connectTo($mode) global() argument
H A DListblock.php23 public function connectTo($mode)
25 $this->Lexer->addEntryPattern('[ \t]*\n {2,}[\-\*]', $mode, 'listblock');
26 $this->Lexer->addEntryPattern('[ \t]*\n\t{1,}[\-\*]', $mode, 'listblock');
24 connectTo($mode) global() argument
H A DMedia.php8 public function connectTo($mode)
11 $this->Lexer->addSpecialPattern("\{\{(?:[^\}]|(?:\}[^\}]))+\}\}", $mode, 'media');
9 connectTo($mode) global() argument
H A DModeInterface.php6 * Defines a mode (syntax component) in the Parser
25 * Connects the mode
27 * @param string $mode
30 public function connectTo($mode); argument
40 * Check if given mode is accepted inside this mode
42 * @param string $mode
45 public function accepts($mode); argument
H A DMultiplyentity.php11 public function connectTo($mode)
16 $mode,
12 connectTo($mode) global() argument
H A DNotoc.php8 public function connectTo($mode)
10 $this->Lexer->addSpecialPattern('~~NOTOC~~', $mode, 'notoc');
9 connectTo($mode) global() argument
H A DQuote.php23 public function connectTo($mode)
25 $this->Lexer->addEntryPattern('\n>{1,}', $mode, 'quote');
24 connectTo($mode) global() argument
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php116 * [strict - true: strict mode, good for registration purposes - Causes errors
117 * on failures; false: loose mode, ideal for "wildlife" applications
185 // No no in strict mode
187 $this->_error('Only simple domain name parts can be handled in strict mode');
209 // No no in strict mode
211 $this->_error('Only simple domain name parts can be handled in strict mode');
305 // Neither email addresses nor URLs allowed in strict mode
307 $this->_error('Neither email addresses nor URLs are allowed in strict mode.');
793 $mode = 'next';
801 if ('add' == $mode) {
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php1806 if (isset($attribs['']['mode']) && strtolower(trim($attribs['']['mode'])) === 'base64') {
1807 $mode = \SimplePie\SimplePie::CONSTRUCT_BASE64;
1809 $mode = \SimplePie\SimplePie::CONSTRUCT_NONE;
1815 return \SimplePie\SimplePie::CONSTRUCT_TEXT | $mode;
1819 return \SimplePie\SimplePie::CONSTRUCT_HTML | $mode;
1823 return \SimplePie\SimplePie::CONSTRUCT_XHTML | $mode;
1826 return \SimplePie\SimplePie::CONSTRUCT_NONE | $mode;
1830 return \SimplePie\SimplePie::CONSTRUCT_TEXT | $mode;

1234