Home
last modified time | relevance | path

Searched refs:delims (Results 1 – 6 of 6) sorted by path

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUriTemplate.php30 private static $delims = [':', '/', '?', '#', '[', ']', '@', '!', '$', variable in GuzzleHttp\\UriTemplate
235 return str_replace(self::$delimsPct, self::$delims, $string);
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Djstl-1.2.jar ... final javax.el.ValueExpression orig protected final String delims private Object base private int index private java.util ...
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js.map1 … // An exclamation ends the value if we're not inside delims.\n …
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php379 $delims = ', ' . $delimTag;
382 $delims = '';
385 $key = ucfirst(md5($delims . "\n" . $source));
388 …rintf($this->prepare(self::SECTION), $key, $callable, $source, $helper, $delims, $this->walk($node…
H A DEngine.php699 * @param string $delims (default: null)
703 public function loadLambda($source, $delims = null) argument
705 if ($delims !== null) {
706 $source = $delims . "\n" . $source;
H A DLambdaHelper.php23 private $delims; variable in Mustache_LambdaHelper
30 …* @param string $delims Optional custom delimiters, in the format `{{= <% %> =}}`. (de…
32 … public function __construct(Mustache_Engine $mustache, Mustache_Context $context, $delims = null) argument
36 $this->delims = $delims;
49 ->loadLambda((string) $string, $this->delims)
68 * @param string $delims Custom delimiters, in the format `{{= <% %> =}}`
72 public function withDelimiters($delims) argument
74 return new self($this->mustache, $this->context, $delims);