Home
last modified time | relevance | path

Searched refs:calls (Results 1 – 17 of 17) sorted by relevance

/dokuwiki/inc/Parsing/Handler/
H A DNest.php31 $this->calls[] = $call;
35 public function writeCalls($calls) argument
37 $this->calls = array_merge($this->calls, $calls);
43 $last_call = end($this->calls);
55 $unmerged_calls = $this->calls;
56 $this->calls = [];
60 $first_call = reset($this->calls);
61 $this->callWriter->writeCall(["nest", [$this->calls],
[all...]
H A DAbstractRewriter.php13 /** @var array[] list of calls */
14 public $calls = []; variable in dokuwiki\\Parsing\\Handler\\AbstractRewriter
25 $this->calls[] = $call;
29 public function writeCalls($calls) argument
31 $this->calls = array_merge($this->calls, $calls);
H A DBlock.php12 protected $calls = []; variable in dokuwiki\\Parsing\\Handler\\Block
61 $this->calls[] = ['p_open', [], $pos];
80 $ccount = count($this->calls);
82 if ($this->calls[$i][0] == 'p_open') {
84 } elseif ($this->calls[$i][0] == 'cdata') {
85 $content .= $this->calls[$i][1][0];
94 //array_splice($this->calls,$i); // <- this is much slower than the loop below
98 ) array_pop($this->calls);
101 $i = count($this->calls) - 1;
102 if ($this->calls[
144 process($calls) global() argument
[all...]
H A DCallWriter.php21 $this->Handler->calls[] = $call;
25 public function writeCalls($calls)
27 $this->Handler->calls = array_merge($this->Handler->calls, $calls);
26 writeCalls($calls) global() argument
H A DCallWriterInterface.php15 * Append a list of calls to our call list
17 * @param array[] $calls list of calls to be appended
19 public function writeCalls($calls); argument
H A DPreformatted.php13 $last_call = end($this->calls);
24 foreach ($this->calls as $call) {
H A DReWriterInterface.php6 * A ReWriter takes over from the orignal call writer and handles all new calls itself until
9 * @property array[] $calls The list of current calls
24 * Process any calls that have been added and add them to the
H A DQuote.php12 $last_call = end($this->calls);
26 foreach ($this->calls as $call) {
H A DLists.php17 $last_call = end($this->calls);
29 foreach ($this->calls as $call) {
H A DTable.php20 $last_call = end($this->calls);
31 foreach ($this->calls as $call) {
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientMulticall.php12 private $calls = []; variable in IXR\\Client\\ClientMulticall
28 $this->calls[] = $struct;
34 return parent::query('system.multicall', $this->calls);
/dokuwiki/inc/parser/
H A Dhandler.php22 /** @var array The current CallWriter will write directly to this list of calls, Parser reads it */ variable in Doku_Handler
23 public $calls = [];
129 * sections, rewrites blocks and adds document_start and document_end calls.
138 $last_call = end($this->calls);
139 $this->calls[] = ['section_close', [], $last_call[2]];
144 $this->calls = $B->process($this->calls);
149 array_unshift($this->calls, ['document_start', [], 0]);
150 $last_call = end($this->calls);
151 $this->calls[]
[all...]
/dokuwiki/inc/Parsing/
H A DParser.php129 return $this->handler->calls;
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php175 $result = new Error(-32600, 'Recursive calls to system.multicall are forbidden');
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md140 Note: if your backend code calls for a PSR-3 logger but does not actually type check for the interface (AKA being LoggerAware only) you can also just pass an instance of `splitbrain\phpcli\CLI`.
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md174 * PHP 7.4 support: Ensure the proper argument order for `implode()` calls. [#617](https://github.com/simplepie/simplepie/pull/617)
176 * Preemptively changed `is_writeable()` calls to `is_writable()` in case the former is deprecated in PHP. [#604](https://github.com/simplepie/simplepie/pull/604)
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG495 * Keyword Linking now uses considerably less strtolower calls (milian)
498 * Use considerably less strlen() calls on various points by caching the results (milian)
517 * Make sure strict_mode is set properly when doing repeated set_language calls (milian)
538 this makes is_a calls unneeded and thus prevents PHP notices in PHP 5.x (milian)
965 set used by calls to htmlentities() in GeSHi