Home
last modified time | relevance | path

Searched refs:tagLength (Results 1 – 2 of 2) sorted by relevance

/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
DTokenizer.php344 * @param int $tagLength Length of the opening/closing tag string
348 protected function tagChange($tag, $text, $index, $tagLength) argument
350 return substr($text, $index, $tagLength) === $tag;
/template/strap/vendor/symfony/yaml/
DInline.php727 $tagLength = strcspn($value, " \t\n[]{},", $i + 1);
728 $tag = substr($value, $i + 1, $tagLength);
730 $nextOffset = $i + $tagLength + 1;