Home
last modified time | relevance | path

Searched refs:otag (Results 1 – 3 of 3) sorted by path

/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTokenizer.php66 const OTAG = 'otag';
82 protected $otag; variable in Handlebars\\Tokenizer
102 list($otag, $ctag) = explode(' ', $delimiters);
103 $this->otag = $otag;
107 $openingTagLength = strlen($this->otag);
109 $firstOpeningTagCharacter = $this->otag[0];
121 if ($character === $firstOpeningTagCharacter && $this->tagChange($this->otag, $text, $i, $openingTagLength)
148 $openingTagLength = strlen($this->otag);
150 $firstOpeningTagCharacter = $this->otag[
[all...]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php253 * @param string $otag Current Mustache opening tag
259 private function blockVar($nodes, $id, $start, $end, $otag, $ctag, $level) argument
280 * @param string $otag Current Mustache opening tag
286 private function blockArg($nodes, $id, $start, $end, $otag, $ctag, $level) argument
365 * @param string $otag Current Mustache opening tag
371 private function section($nodes, $id, $filters, $start, $end, $otag, $ctag, $level) argument
376 if ($otag !== '{{' || $ctag !== '}}') {
377 $delimTag = var_export(sprintf('{{= %s %s =}}', $otag, $ctag), true);
H A DTokenizer.php76 private $otag; variable in Mustache_Tokenizer
120 … if ($char === $this->otagChar && substr($text, $i, $this->otagLen) === $this->otag) {
166 self::OTAG => $this->otag,
237 $this->otag = '{{';
306 list($_, $otag, $ctag) = $matches;
308 $this->otag = $otag;
309 $this->otagChar = $otag[0];
310 $this->otagLen = strlen($otag);