/plugin/latexport/implementation/ |
D | decorator.php | 15 class decorator extends Doku_Renderer { class 21 protected $decorator; variable in decorator 25 * @param decorator The next decorator layer. 27 function __construct($decorator) { argument 28 $this->decorator = $decorator; 125 $this->decorator->input($link); 135 $this->decorator->table_cline($start, $end); 149 $this->decorator->appendCommand($command, $scope, $argument); 163 $this->decorator->appendInlineCommand($command, $scope, $argument); 172 $this->decorator->appendContent($c); [all …]
|
D | decorator_includer.php | 64 * @param decorator To send further the decorated events. 66 function __construct($includes, $decorator) { argument 67 parent::__construct($decorator); 78 $this->decorator->document_start($pageId, $recursionLevel); 88 $this->decorator->header($text, $level, $pos); 108 $this->decorator->listu_open(); 129 $this->decorator->listitem_open($level, $node); 149 $this->decorator->listcontent_open(); 172 $this->decorator->listcontent_close(); 177 $this->decorator->listcontent_close(); [all …]
|
D | decorator_headings.php | 54 * @param decorator The next decorator. 56 function __construct($decorator) { argument 57 parent::__construct($decorator); 101 $this->decorator->header($text, 1, $pos); 106 $this->decorator->header($text, 1, $pos); 110 $this->decorator->header($text, 3, $pos); 129 $this->decorator->header($text, 3, $pos); 133 $this->decorator->header($text, 2, $pos); 137 $this->decorator->header($text, 3, $pos); 146 $this->decorator->header($text, 3, $pos); [all …]
|
D | decorator_tables.php | 75 $this->decorator->p_open(); 84 $this->decorator->linebreak(); 86 $this->decorator->p_close(); 99 $this->decorator->cdata($text); 101 $this->decorator->unformatted($text); 114 $this->decorator->table_open($maxcols, $numrows, $pos); 119 $this->decorator->table_close($pos); 128 $this->decorator->tablerow_open(); 135 $this->decorator->tablerow_close(); 151 $this->decorator->tableheader_open(1, null, 1); [all …]
|
D | decorator_images.php | 22 * @param decorator The next decorator. 24 function __construct($decorator) { argument 25 parent::__construct($decorator); 68 $this->decorator->cdata($text); 80 $this->decorator->internalmedia(
|
D | decorator_math.php | 31 function __construct($decorator) { argument 32 parent::__construct($decorator); 56 $this->decorator->mathjax_content($this->processEquation($this->equation));
|
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
D | DefinitionCacheFactory.php | 82 foreach ($this->decorators as $decorator) { 83 $new_cache = $decorator->decorate($cache); 94 …* @param HTMLPurifier_DefinitionCache_Decorator|string $decorator An instance or the name of a dec… 96 public function addDecorator($decorator) argument 98 if (is_string($decorator)) { 99 $class = "HTMLPurifier_DefinitionCache_Decorator_$decorator"; 100 $decorator = new $class; 102 $this->decorators[$decorator->name] = $decorator;
|
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/ |
D | Decorator.php | 29 $decorator = $this->copy(); 31 $decorator->cache =& $cache; 32 $decorator->type = $cache->type; 33 return $decorator;
|
/plugin/latexport/_test/ |
D | decorator.test.php | 12 private $decorator; variable in decorator_test 20 $this->decorator = new Decorator($this->decoratorMock); 24 $this->decorator->document_start("xx", 3);
|
/plugin/eventline/timeline_js/ |
D | timeline-bundle.css | 24 .timeline-highlight-decorator, 25 .timeline-highlight-point-decorator{ 31 set in the decorator function params */ 32 .timeline-horizontal .timeline-highlight-point-decorator, 33 .timeline-horizontal .timeline-highlight-decorator{ 38 .timeline-vertical .timeline-highlight-point-decorator, 39 .timeline-vertical .timeline-highlight-decorator{ 44 .timeline-highlight-decorator{background-color:#FFC080;} 45 .timeline-highlight-point-decorator{background-color:#ff5;}
|
/plugin/tline/timeline_js/ |
D | timeline-bundle.css | 24 .timeline-highlight-decorator, 25 .timeline-highlight-point-decorator{ 31 set in the decorator function params */ 32 .timeline-horizontal .timeline-highlight-point-decorator, 33 .timeline-horizontal .timeline-highlight-decorator{ 38 .timeline-vertical .timeline-highlight-point-decorator, 39 .timeline-vertical .timeline-highlight-decorator{ 44 .timeline-highlight-decorator{background-color:#FFC080;} 45 .timeline-highlight-point-decorator{background-color:#ff5;}
|
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/ |
D | helpers.js | 87 let decorator = /\*/.test(open); 89 type: decorator ? 'Decorator' : 'MustacheStatement', 135 let decorator = /\*/.test(openBlock.open); 142 if (decorator) { 164 type: decorator ? 'DecoratorBlock' : 'BlockStatement',
|
D | compiler.js | 156 DecoratorBlock(decorator) { argument 157 let program = decorator.program && this.compileProgram(decorator.program); 158 let params = this.setupFullMustacheParams(decorator, program, undefined), 159 path = decorator.path; 217 Decorator(decorator) { argument 218 this.DecoratorBlock(decorator);
|
/plugin/latexport/renderer/ |
D | tex.php | 121 $this->decorator->document_start($this->currentPageId, $this->recursionLevel); 130 $this->decorator->header($text, $level + $this->headingLevel, $pos); 137 $this->decorator->document_end($this->recursionLevel - 1);
|
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/ |
D | helpers.js | 104 var decorator = /\*/.test(open); 106 type: decorator ? 'Decorator' : 'MustacheStatement', 145 var decorator = /\*/.test(openBlock.open); 153 if (decorator) { 172 type: decorator ? 'DecoratorBlock' : 'BlockStatement',
|
D | compiler.js | 166 DecoratorBlock: function DecoratorBlock(decorator) { 167 var program = decorator.program && this.compileProgram(decorator.program); 168 var params = this.setupFullMustacheParams(decorator, program, undefined), 169 path = decorator.path; 224 Decorator: function Decorator(decorator) { 225 this.DecoratorBlock(decorator);
|
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/ |
D | helpers.js | 103 var decorator = /\*/.test(open); 105 type: decorator ? 'Decorator' : 'MustacheStatement', 144 var decorator = /\*/.test(openBlock.open); 152 if (decorator) { 171 type: decorator ? 'DecoratorBlock' : 'BlockStatement',
|
D | compiler.js | 161 DecoratorBlock: function DecoratorBlock(decorator) { 162 var program = decorator.program && this.compileProgram(decorator.program); 163 var params = this.setupFullMustacheParams(decorator, program, undefined), 164 path = decorator.path; 219 Decorator: function Decorator(decorator) { 220 this.DecoratorBlock(decorator);
|
/plugin/asciidocjs/node_modules/handlebars/types/ |
D | index.d.ts | 136 DecoratorBlock(decorator: hbs.AST.DecoratorBlock): void; 137 Decorator(decorator: hbs.AST.Decorator): void; 159 DecoratorBlock(decorator: hbs.AST.DecoratorBlock): void; 160 Decorator(decorator: hbs.AST.Decorator): void;
|
/plugin/jquery-syntax/jquery-syntax/base/ |
D | jquery.syntax.brush.python.css | 1 .syntax-theme-base .syntax .python .decorator {
|
/plugin/asciidocjs/node_modules/core-js/library/modules/ |
D | es7.reflect.metadata.js | 8 return function decorator(target, targetKey) { function
|
/plugin/asciidocjs/node_modules/core-js/modules/ |
D | es7.reflect.metadata.js | 8 return function decorator(target, targetKey) { function
|
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/ |
D | runtime.js | 58 templateSpec.main.decorator = templateSpec.main_d; 161 ret.decorator = templateSpec[i + '_d']; 422 if (fn.decorator) { 424 prog = fn.decorator(
|
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/ |
D | runtime.js | 44 templateSpec.main.decorator = templateSpec.main_d; 133 ret.decorator = templateSpec[i + '_d']; 334 if (fn.decorator) { 336 prog = fn.decorator(prog, props, container, depths && depths[0], data, blockParams, depths);
|
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/ |
D | runtime.js | 61 templateSpec.main.decorator = templateSpec.main_d; 150 ret.decorator = templateSpec[i + '_d']; 351 if (fn.decorator) { 353 prog = fn.decorator(prog, props, container, depths && depths[0], data, blockParams, depths);
|