Home
last modified time | relevance | path

Searched refs:blocks (Results 101 – 125 of 183) sorted by relevance

12345678

/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DQRcode.php349 protected $blocks; variable in jucksearm\\barcode\\lib\\QRcode
690 $this->blocks = $this->rsBlockNum($spec);
870 $row = $this->count % $this->blocks;
871 $col = $this->count / $this->blocks;
877 $row = ($this->count - $this->dataLength) % $this->blocks;
878 $col = ($this->count - $this->dataLength) / $this->blocks;
/plugin/textinsert/
H A DREADME11 comes when dealing with extended blocks of text and with its ability to include other
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst138 You can assign values to variables inside code blocks. Assignments use the
252 well as things like blocks. Control structures appear inside ``{% ... %}``
253 blocks.
333 elements of your site and defines **blocks** that child templates can
362 In this example, the :doc:`block<tags/block>` tags define four blocks that
483 otherwise handle as variables or blocks. For example if the default syntax is
H A Dapi.rst72 The possibility to render blocks from the API was added in Twig 1.28.
74 If a template defines blocks, they can be rendered individually via the
339 to escape/unescape blocks of code.
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG164 * deprecated silent display of undefined blocks
392 * fixed recursively calling blocks in templates with inheritance
584 * added an error when defining two blocks with the same name in a template
595 * fixed a regression when a template only extends another one without defining any blocks
626 * fixed raw blocks when used with the whitespace trim option
728 …* changed name regex to match PHP one "[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*" (works for blocks
770 * added support for horizontal reuse of template blocks (see docs for more information)
887 (blocks can now be called individually and still work with inheritance)
987 * fixed automatic-escaping for blocks
1008 * made it possible to insert newlines in tag and variable blocks
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js3852 var blocks=[];
3919 },generateNodePath:function(path,blocks){blocks.push("var node = __path__(root, o"); argument
3923 }blocks.push(");")
3943 blocks.push("__link__(");
3950 blocks.push('"',name,'":');
3951 addParts(val,"",blocks,info)
3952 }blocks.push("});")
3980 blocks.push("}]);")
4000 ++i){blocks.push(",d"+i)
4001 }blocks.push(") {");
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js14537 addLocals: function(blocks) argument
14558 var blocks = [];
14585 fnBlock.push(blocks.join(""));
14691 blocks.push(");");
14744 blocks.push('__link__(');
14752 blocks.push(',');
14760 blocks.push('});');
14827 blocks.push('}]);');
14861 blocks.push(',d'+i);
14862 blocks.push(') {');
[all …]
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.4.js3772 var topBlock=[],topOuts=[],blocks=[],info={args:this.markupArgs,argIndex:0};
3773 this.generateMarkup(topBlock,topOuts,blocks,info);
3774 this.addCode(topBlock,topOuts,blocks);
3783 fnBlock.push.apply(fnBlock,blocks);
3824 }}}}}},generateMarkup:function(topBlock,topOuts,blocks,info){topBlock.push(',"<',this.tagName,'"'); argument
3841 this.generateChildMarkup(topBlock,topOuts,blocks,info);
3843 },generateChildMarkup:function(topBlock,topOuts,blocks,info){for(var i=0; argument
3846 if(isTag(child)){child.tag.generateMarkup(topBlock,topOuts,blocks,info)
3848 }}},addCode:function(topBlock,topOuts,blocks){if(topBlock.length){blocks argument
3852 addLocals(blocks) global() argument
3919 generateDOM(path,blocks,args) global() argument
3930 generateNodePath(path,blocks) global() argument
3935 generateChildDOM(path,blocks,args) global() argument
3953 AnonymousFunction4beb6123d900(topBlock,topOuts,blocks,info) global() argument
3964 AnonymousFunction4beb6123da00(path,blocks,args) global() argument
[all...]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D10.10.js.map1 … // whitespace\n [/[ \\t\\r\\n]+/, ''],\n // blocks\n [/set…
/plugin/html2pdf/snorriheim/
H A Ddesign.css492 /* code blocks by indention */
497 /* code blocks by code tag */
507 /* code blocks by file tag */
/plugin/geonav/tpl/startermap/css/
H A Dcontent.css91 /* filenames for downloadable file and code blocks */
/plugin/ckgdoku/ckeditor/
H A Dcontents-default.css108 /* code blocks by code tag */
270 /* filenames for file and code blocks */
/plugin/ckgedit/ckeditor/
H A Dcontents-default.css108 /* code blocks by code tag */
270 /* filenames for file and code blocks */
/plugin/qrcode2/
H A Dphpqrcode.php2859 public $blocks; variable in QRrawcode
2883 $this->blocks = QRspec::rsBlockNum($spec);
2943 $row = $this->count % $this->blocks;
2944 $col = $this->count / $this->blocks;
2950 $row = ($this->count - $this->dataLength) % $this->blocks;
2951 $col = ($this->count - $this->dataLength) / $this->blocks;
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js1669 var blocks = line.split("\t");
1671 line = blocks.shift(); // Do not add first block twice.
1672 for(var i = 0; i < blocks.length; i++) {
1673 var block = blocks[i];
/plugin/markdownextra/
H A Dmarkdown.php1659 $blocks = explode("\t", $line);
1661 $line = $blocks[0];
1662 unset($blocks[0]); # Do not add first block twice.
1663 foreach ($blocks as $block) {
/plugin/latexcaption/
H A DREADME.md32 …- Currently supported blocks to caption are: `figure`, `subfigure`, `table`, `subtable`, `codebloc…
/plugin/fckg/fckeditor/editor/css/
H A Dfck_editorarea_RTL.css72 /* code blocks by code tag */
232 /* filenames for file and code blocks */
H A Dfck_editorarea.css.default_template112 /* code blocks by code tag */
272 /* filenames for file and code blocks */
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dembed.rst18 {# These blocks are defined in "teasers_skeleton.twig" #}
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
H A Dgithub-sample.md101 Preformatted blocks are useful for ASCII art:
/plugin/mdpage/vendor/cebe/markdown/
H A DREADME.md211 In the following example we will implement support for [fenced code blocks][] which are part of the…
213 [fenced code blocks]: https://help.github.com/articles/github-flavored-markdown#fenced-code-blocks
277 2. **Rendering** the element. After all blocks have been consumed, they are being rendered using the
H A DCHANGELOG.md18 - #132 Improve detection and rendering of fenced code blocks in lists.
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md127 * Added support for dumping multi line strings as literal blocks.
/plugin/codeprettify/code-prettify/
H A DCHANGES.md78 * Fixed prettifying of `<code>` blocks with embedded newlines.

12345678