Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 114) sorted by relevance

12345

/template/twigstarter/vendor/symfony/polyfill-mbstring/
H A Dbootstrap80.php15string|null $string, ?string $to_encoding, array|string|null $from_encoding = null): array|string|… argument
18 …function mb_decode_mimeheader(?string $string): string { return p\Mbstring::mb_decode_mimeheader((… argument
21string $string, ?string $charset = null, ?string $transfer_encoding = null, ?string $newline = "\r… argument
24 …numericentity(?string $string, array $map, ?string $encoding = null): string { return p\Mbstring::… argument
30 …n mb_convert_case(?string $string, ?int $mode, ?string $encoding = null): string { return p\Mbstri… argument
57 …function mb_strlen(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strlen(… argument
63 …function mb_strtolower(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_… argument
66 …function mb_strtoupper(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_… argument
102 …function mb_strwidth(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strwi… argument
119 …function mb_ord(?string $string, ?string $encoding = null): int|false { return p\Mbstring::mb_ord(… argument
[all …]
H A Dbootstrap.php22 function mb_decode_mimeheader($string) { return p\Mbstring::mb_decode_mimeheader($string); } argument
28 …function mb_decode_numericentity($string, $map, $encoding = null) { return p\Mbstring::mb_decode_n… argument
34 …function mb_convert_case($string, $mode, $encoding = null) { return p\Mbstring::mb_convert_case($s… argument
58 …function mb_parse_str($string, &$result = []) { parse_str($string, $result); return (bool) $result… argument
61 …function mb_strlen($string, $encoding = null) { return p\Mbstring::mb_strlen($string, $encoding); } argument
67 …function mb_strtolower($string, $encoding = null) { return p\Mbstring::mb_strtolower($string, $enc… argument
70 …function mb_strtoupper($string, $encoding = null) { return p\Mbstring::mb_strtoupper($string, $enc… argument
106 …function mb_strwidth($string, $encoding = null) { return p\Mbstring::mb_strwidth($string, $encodin… argument
112 …function mb_output_handler($string, $status) { return p\Mbstring::mb_output_handler($string, $stat… argument
123 function mb_ord($string, $encoding = null) { return p\Mbstring::mb_ord($string, $encoding); } argument
[all …]
/template/twigstarter/vendor/twig/twig/src/Extension/
H A DEscaperExtension.php158 return $string;
174 return $string;
178 if (\is_object($string) && method_exists($string, '__toString')) {
198 $string = (string) $string;
247 $string = twig_convert_encoding($string, 'UTF-8', $charset);
256 $string = twig_convert_encoding($string, 'UTF-8', $charset);
300 $string = iconv('UTF-8', $charset, $string);
307 $string = twig_convert_encoding($string, 'UTF-8', $charset);
321 $string = iconv('UTF-8', $charset, $string);
328 $string = twig_convert_encoding($string, 'UTF-8', $charset);
[all …]
H A DCoreExtension.php903 $string = (string) $item;
908 $string = twig_convert_encoding($string, 'UTF-8', $charset);
916 $string = twig_convert_encoding($string, $charset, 'UTF-8');
919 return $string;
988 * @param string|null $string
1017 * @param string|null $string
1021 function twig_nl2br($string) argument
1023 return nl2br($string ?? '');
1029 * @param string|null $string
1039 * @param string|null $string
[all …]
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DNameExpression.php25 public function __construct(string $name, int $lineno)
42 ->string($name)
48 ->string($name)
50 ->string($name)
59 ->string($name)
66 ->string($name)
72 ->string($name)
74 ->string($name)
76 ->string($name)
78 ->string($name)
H A DParentExpression.php24 public function __construct(string $name, int $lineno, string $tag = null)
35 ->string($this->getAttribute('name'))
41 ->string($this->getAttribute('name'))
/template/twigstarter/vendor/symfony/polyfill-php72/
H A Dbootstrap.php41 function utf8_encode($string) { return p\Php72::utf8_encode($string); } argument
44 function utf8_decode($string) { return p\Php72::utf8_decode($string); } argument
50 function mb_ord($string, $encoding = null) { return p\Php72::mb_ord($string, $encoding); } argument
56 … mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $… argument
/template/twigstarter/vendor/twig/twig/src/
H A DSource.php30 public function __construct(string $code, string $name, string $path = '')
37 public function getCode(): string
47 public function getPath(): string
H A DTemplateWrapper.php41 public function render(array $context = []): string
66 public function hasBlock(string $name, array $context = []): bool
91 public function renderBlock(string $name, array $context = []): string
119 public function displayBlock(string $name, array $context = [])
129 public function getTemplateName(): string
H A DCompiler.php95 * @param string $string The string
99 public function raw($string) argument
101 $this->source .= $string;
113 foreach ($strings as $string) {
114 $this->source .= str_repeat(' ', $this->indentation * 4).$string;
127 public function string($value) function in Twig\\Compiler
171 $this->string($value);
H A DExtensionSet.php70 public function hasExtension(string $class): bool
81 public function getExtension(string $class): ExtensionInterface
114 public function getSignature(): string
181 public function getFunction(string $name)
240 public function getFilter(string $name)
368 public function getTest(string $name)
/template/twigstarter/vendor/twig/twig/src/Profiler/Node/
H A DEnterProfileNode.php24 public function __construct(string $extensionName, string $type, string $name, string $varName)
/template/twigstarter/vendor/twig/twig/src/Sandbox/
H A DSecurityNotAllowedMethodError.php26 …public function __construct(string $message, string $className, string $methodName, int $lineno = …
H A DSecurityNotAllowedPropertyError.php26 …public function __construct(string $message, string $className, string $propertyName, int $lineno …
H A DSecurityNotAllowedFilterError.php25 …public function __construct(string $message, string $functionName, int $lineno = -1, string $filen…
H A DSecurityNotAllowedFunctionError.php25 …public function __construct(string $message, string $functionName, int $lineno = -1, string $filen…
H A DSecurityNotAllowedTagError.php25 …public function __construct(string $message, string $tagName, int $lineno = -1, string $filename =…
/template/twigstarter/vendor/twig/twig/src/Node/
H A DEmbedNode.php26 …function __construct(string $name, int $index, ?AbstractExpression $variables, bool $only, bool $i…
38 ->string($this->getAttribute('name'))
44 ->string($this->getAttribute('index'))
H A DMacroNode.php26 …public function __construct(string $name, Node $body, Node $arguments, int $lineno, string $tag = …
74 ->string($name)
82 ->string(self::VARARGS_NAME)
H A DModuleNode.php219 ->string($key)
223 ->string($key)
235 ->string($key)
237 ->string($key)
443 … ->string($compiler->getEnvironment()->isDebug() ? $this->getSourceContext()->getCode() : '')
445 ->string($this->getSourceContext()->getName())
447 ->string($this->getSourceContext()->getPath())
H A DTextNode.php24 public function __construct(string $data, int $lineno)
34 ->string($this->getAttribute('data'))
H A DBlockReferenceNode.php24 public function __construct(string $name, int $lineno, string $tag = null)
H A DBlockNode.php24 public function __construct(string $name, Node $body, int $lineno, string $tag = null)
H A DDeprecatedNode.php25 public function __construct(AbstractExpression $expr, int $lineno, string $tag = null)
49 … ->string(sprintf(' ("%s" at line %d).', $this->getTemplateName(), $this->getTemplateLine()))
/template/twigstarter/vendor/twig/twig/src/Profiler/
H A DProfile.php33 …public function __construct(string $template = 'main', string $type = self::ROOT, string $name = '…
166 public function serialize(): string

12345