Home
last modified time | relevance | path

Searched refs:regexp (Results 1 – 7 of 7) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/
DMatchesBinary.php34 $regexp = $right->getAttribute('value');
35 …ntaxError(\sprintf('Regexp "%s" passed to "matches" is not valid: %s.', $regexp, substr($m, 14)), …
37 preg_match($regexp, '');
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverExpectedCondition.php294 * @param string $regexp The regular expression to test against.
297 public static function elementTextMatches(WebDriverBy $by, $regexp) argument
300 function (WebDriver $driver) use ($by, $regexp) {
302 return (bool) preg_match($regexp, $driver->findElement($by)->getText());
/template/twigstarter/vendor/twig/twig/src/Resources/
Dcore.php251 function twig_matches(string $regexp, ?string $str) argument
255 return CoreExtension::matches($regexp, $str);
/template/dokui/css/
Dhighlight.css81 pre .regexp {
/template/twigstarter/vendor/twig/twig/src/Extension/
DCoreExtension.php1180 public static function matches(string $regexp, ?string $str): int argument
1182 set_error_handler(static function ($t, $m) use ($regexp) {
1183 …throw new RuntimeError(\sprintf('Regexp "%s" passed to "matches" is not valid', $regexp).substr($m…
1186 return preg_match($regexp, $str ?? '');
/template/strap/resources/library/rrdiagram/0.9.4.1/
H A Drrdiagram.js.map1regexp.js","webpack:///../~/core-js/modules/_iter-detect.js","webpack:///../~/core-js/modules/_obj…
/template/twigstarter/vendor/twig/twig/
DCHANGELOG390 * Throw a better runtime error when the "matches" regexp is not valid