| /plugin/findologicxmlexport/vendor/twig/twig/src/ |
| D | Template.php | 40 protected $blocks = []; variable in Twig\\Template 168 * @param array $blocks The current set of blocks 170 public function displayParentBlock($name, array $context, array $blocks = []) argument 175 $this->traits[$name][0]->displayBlock($name, $context, $blocks, false); 177 $parent->displayBlock($name, $context, $blocks, false); 191 * @param array $blocks The current set of blocks 194 public function displayBlock($name, array $context, array $blocks = [], $useBlocks = true) argument 198 if ($useBlocks && isset($blocks[$name])) { 199 $template = $blocks[$name][0]; 200 $block = $blocks[$name][1]; [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
| D | use.rst | 11 template blocks reusable without using inheritance. 32 {% use "blocks.html" %} 37 The ``use`` statement tells Twig to import the blocks defined in 38 ``blocks.html`` into the current template (it's like macros, but for blocks): 42 {# blocks.html #} 48 imported blocks are not outputted automatically): 70 already defines the ``sidebar`` block, then the one defined in ``blocks.html`` 71 is ignored. To avoid name conflicts, you can rename imported blocks: 77 {% use "blocks.html" with sidebar as base_sidebar, title as base_title %} 94 {% use "blocks.html" %} [all …]
|
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Tar.php | 242 $blocks = array(); 247 $blocks[] = $seek; //Remove this file 255 $blocks[] = $size; 257 $blocks[] = $gap; //Don't remove the files between the gap 258 $blocks[] = $size; 261 $blocks[count($blocks)-1] += $size; //Also remove this file 277 array_pop($blocks); 279 $blocks[] = $gap; 284 $this->source->makeWriterRemoveBlocks($blocks, -$seek) 293 function makeWriterRemoveBlocks($blocks, $seek = 0) argument [all …]
|
| D | Ar.php | 275 $blocks = array(); 280 $blocks[] = $seek; //Remove this file 288 $blocks[] = $size; 290 $blocks[] = $gap; //Don't remove the files between the gap 291 $blocks[] = $size; 294 $blocks[count($blocks)-1] += $size; //Also remove this file 309 array_pop($blocks); 311 $blocks[] = $gap; 316 $this->source->makeWriterRemoveBlocks($blocks, -$seek) 325 function makeWriterRemoveBlocks($blocks, $seek = 0) argument [all …]
|
| D | Zip.php | 287 $blocks = array(); 292 $blocks[] = $seek; //Remove this file 302 $blocks[] = $size; 304 $blocks[] = $gap; //Don't remove the files between the gap 305 $blocks[] = $size; 308 $blocks[count($blocks)-1] += $size; //Also remove this file 328 array_pop($blocks); 330 $blocks[] = $gap; 335 $this->source->makeWriterRemoveBlocks($blocks, -$seek) 352 function makeWriterRemoveBlocks($blocks, $seek = 0) argument [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/ |
| D | ModuleTest.php | 30 $blocks = new Node(); 34 $node = new ModuleNode($body, $parent, $blocks, $macros, $traits, new Node([]), $source); 37 $this->assertEquals($blocks, $node->getNode('blocks')); 51 $blocks = new Node(); 56 $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source); 121 $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source); 203 $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/ |
| D | GoogleCloudVisionV1p4beta1Page.php | 43 public function setBlocks($blocks) argument 45 $this->blocks = $blocks; 52 return $this->blocks;
|
| D | Page.php | 43 public function setBlocks($blocks) argument 45 $this->blocks = $blocks; 52 return $this->blocks;
|
| D | GoogleCloudVisionV1p3beta1Page.php | 43 public function setBlocks($blocks) argument 45 $this->blocks = $blocks; 52 return $this->blocks;
|
| D | GoogleCloudVisionV1p1beta1Page.php | 43 public function setBlocks($blocks) argument 45 $this->blocks = $blocks; 52 return $this->blocks;
|
| D | GoogleCloudVisionV1p2beta1Page.php | 43 public function setBlocks($blocks) argument 45 $this->blocks = $blocks; 52 return $this->blocks;
|
| /plugin/asciidocjs/node_modules/nunjucks/src/ |
| D | environment.js | 326 _proto2.init = function init(ctx, blocks, env) { argument 333 this.blocks = {}; 335 lib.keys(blocks).forEach(function (name) { 336 _this4.addBlock(name, blocks[name]); 355 this.blocks[name] = this.blocks[name] || []; 356 this.blocks[name].push(block); 360 if (!this.blocks[name]) { 363 return this.blocks[name][0]; 366 var idx = lib.indexOf(this.blocks[name] || [], block); 367 var blk = this.blocks[name][idx + 1]; [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/ |
| D | EscaperNodeVisitor.php | 34 protected $blocks = []; variable in Twig\\NodeVisitor\\EscaperNodeVisitor 52 $this->blocks = []; 56 …$this->statusStack[] = isset($this->blocks[$node->getAttribute('name')]) ? $this->blocks[$node->ge… 69 $this->blocks = []; 79 $this->blocks[$node->getAttribute('name')] = $this->needEscaping($env);
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| D | Salsa20.php | 331 $blocks = str_split($text, 64); 332 foreach ($blocks as &$block) { 336 return implode('', $blocks); 370 $blocks = str_split($text, 64); 372 foreach ($blocks as &$block) { 376 $encrypted = implode('', $blocks); 393 $blocks = str_split($text, 64); 394 foreach ($blocks as &$block) { 397 $ciphertext .= implode('', $blocks);
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | references.md | 1 In the following example we will im[ple]ment support for [fenced code blocks][] which are part 4 [fenced code blocks]: https://help.github.com/articles/github-flavored-markdown#fenced-code-blocks
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/ |
| D | defined_for_blocks.test | 2 "defined" support for blocks 16 {% use 'blocks' %} 26 --TEMPLATE(blocks)--
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/ |
| D | GoogleCloudDocumentaiV1DocumentPage.php | 59 public function setBlocks($blocks) argument 61 $this->blocks = $blocks; 68 return $this->blocks;
|
| D | GoogleCloudDocumentaiV1beta1DocumentPage.php | 59 public function setBlocks($blocks) argument 61 $this->blocks = $blocks; 68 return $this->blocks;
|
| D | GoogleCloudDocumentaiV1beta2DocumentPage.php | 59 public function setBlocks($blocks) argument 61 $this->blocks = $blocks; 68 return $this->blocks;
|
| /plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/ |
| D | TemplateInterface.php | 40 * @param array $blocks An array of blocks to pass to the template 42 public function display(array $context, array $blocks = []); argument
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/ |
| D | basic.test | 4 {% use "blocks.twig" %} 7 --TEMPLATE(blocks.twig)--
|
| D | aliases.test | 4 {% use "blocks.twig" with content as foo %} 7 --TEMPLATE(blocks.twig)--
|
| /plugin/condition/ |
| D | syntax.php | 63 $blocks = array(); 65 $this->_parse($match, $blocks, $content); 67 return array($blocks, $content); 201 $blocks = $data[0]; 215 $ok = $this->_processblocks($blocks, $bug); 235 $blocks = $data[0]; 249 $ok = $this->_processblocks($blocks, $bug);
|
| /plugin/mdpage/vendor/cebe/markdown/ |
| D | Parser.php | 163 $blocks = []; 172 $blocks[] = $block; 179 return $blocks; 198 protected function renderAbsy($blocks) argument 201 foreach ($blocks as $block) {
|
| /plugin/pagecss/ |
| H A D | README.md | 3 Allows custom per-page CSS injection using `<pagecss>` blocks. Auto-supports Wrap plugin classes. 44 Multiple <pagecss> blocks are allowed 46 No output is shown for <pagecss> blocks — they only inject CSS
|