Lines Matching refs:topBlock

14349         var topBlock = [], topOuts = [], blocks = [], info = {args: this.markupArgs, argIndex: 0};
14351 this.generateMarkup(topBlock, topOuts, blocks, info);
14352 this.addCode(topBlock, topOuts, blocks);
14468 generateMarkup: function(topBlock, topOuts, blocks, info) argument
14470 topBlock.push(',"<', this.tagName, '"');
14477 topBlock.push(', " ', name, '=\\""');
14478 addParts(val, ',', topBlock, info, true);
14479 topBlock.push(', "\\""');
14497 topBlock.push(', " class=\\""');
14499 addParts(this.attrs["class"], ',', topBlock, info, true);
14500 topBlock.push(', " "');
14503 topBlock.push(', (');
14504 addParts(this.classes[name], '', topBlock, info);
14505 topBlock.push(' ? "', name, '" + " " : "")');
14507 topBlock.push(', "\\""');
14509 topBlock.push(',">"');
14511 this.generateChildMarkup(topBlock, topOuts, blocks, info);
14512 topBlock.push(',"</', this.tagName, '>"');
14515 generateChildMarkup: function(topBlock, topOuts, blocks, info) argument
14521 child.tag.generateMarkup(topBlock, topOuts, blocks, info);
14523 addParts(child, ',', topBlock, info, true);
14527 addCode: function(topBlock, topOuts, blocks) argument
14529 if (topBlock.length)
14530 blocks.push('__code__.push(""', topBlock.join(""), ');');
14533 topBlock.splice(0, topBlock.length);
14740 generateMarkup: function(topBlock, topOuts, blocks, info) argument
14742 this.addCode(topBlock, topOuts, blocks);
14805 generateMarkup: function(topBlock, topOuts, blocks, info) argument
14807 this.addCode(topBlock, topOuts, blocks);
14825 this.generateChildMarkup(topBlock, topOuts, blocks, info);
14826 this.addCode(topBlock, topOuts, blocks);