| /dokuwiki/inc/Parsing/ |
| H A D | Parser.php | 18 protected $handler; variable in dokuwiki\\Parsing\\Parser 32 * @param Doku_Handler $handler 34 public function __construct(Doku_Handler $handler) argument 36 $this->handler = $handler; 48 $this->lexer = new Lexer($this->handler, 'base', true); 115 if (!method_exists($this->handler, 'finalize')) { 120 get_class($this->handler) . '::_finalize()', 125 $this->handler->_finalize(); 127 $this->handler->finalize(); 129 return $this->handler->calls;
|
| /dokuwiki/inc/Parsing/Lexer/ |
| H A D | Lexer.php | 24 protected $handler; variable in dokuwiki\\Parsing\\Lexer\\Lexer 39 public function __construct($handler, $start = "accept", $case = false) argument 42 $this->handler = $handler; 118 * @param string $handler New target handler. 120 public function mapHandler($mode, $handler) argument 122 $this->mode_handlers[$mode] = $handler; 136 if (! isset($this->handler)) { 260 $handler = $this->modeStack->getCurrent(); 261 if (isset($this->mode_handlers[$handler])) { 262 $handler = $this->mode_handlers[$handler]; [all …]
|
| /dokuwiki/_test/tests/inc/parser/ |
| H A D | lexer.test.php | 160 $handler = $this->createMock('TestParser'); 161 $handler->expects($this->never())->method('accept'); 162 $lexer = new Lexer($handler); 166 $handler = $this->createMock('TestParser'); 167 $handler->expects($this->never())->method('accept'); 168 $lexer = new Lexer($handler); 185 $handler = $this->createMock('TestParser'); 186 $handler 192 $lexer = new Lexer($handler); 211 $handler = $this->createPartialMock('TestParser', ['accept']); [all …]
|
| /dokuwiki/inc/Extension/ |
| H A D | SyntaxPlugin.php | 75 * @param Doku_Handler $handler The Doku_Handler object 78 abstract public function handle($match, $state, $pos, Doku_Handler $handler); argument
|
| /dokuwiki/lib/plugins/info/ |
| H A D | syntax.php | 53 * @param Doku_Handler $handler The Doku_Handler object 56 public function handle($match, $state, $pos, Doku_Handler $handler) argument 303 foreach ($sequence as $handler) { 306 $renderer->cdata(get_class($handler[0]) . '::' . $handler[1] . '()');
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Enclosure.php | 123 public $handler; variable in SimplePie\\Enclosure 262 $this->handler = $this->get_handler(); // Needs to load last 877 $handler = $this->get_handler(); 986 if ($handler === 'flash') { 996 elseif ($handler === 'fmedia' || ($handler === 'mp3' && $mediaplayer !== '')) { 1007 elseif ($handler === 'quicktime' || ($handler === 'mp3' && $mediaplayer === '')) { 1021 elseif ($handler === 'wmedia') {
|
| /dokuwiki/inc/parser/ |
| H A D | handler.php | 50 * @param string $handler handler method name (see mode handlers below) 54 public function addCall($handler, $args, $pos) argument 56 $call = [$handler, $args, $pos]; 104 public function _addCall($handler, $args, $pos) argument 107 $this->addCall($handler, $args, $pos);
|
| /dokuwiki/lib/scripts/ |
| H A D | fileuploaderextended.js | 13 var handler = new qq[handlerClass]({ 34 return handler;
|
| H A D | fileuploader.js | 325 var handler = new qq[handlerClass]({ 343 return handler;
|
| /dokuwiki/vendor/splitbrain/php-cli/ |
| H A D | README.md | 78 By default, the CLI class registers an exception handler and will print the exception's message to …
|
| /dokuwiki/_test/core/ |
| H A D | phpQuery-onefile.php | 873 foreach($handlers as $handler) { 875 $event->data = $handler['data'] 876 ? $handler['data'] 879 $return = phpQuery::callbackRun($handler['callback'], $params); 939 foreach($eventNode->eventHandlers[$type] as $k => $handler) 940 if ($handler['callback'] == $callback)
|
| /dokuwiki/lib/scripts/jquery/ |
| H A D | jquery.min.js | 2 …handler:function(e){var t,n=_.get(this,r);if(1&e.isTrigger&&this[r]){if(n)(ce.event.special[r]||{}… property
|