Searched refs:regexp (Results 1 – 7 of 7) sorted by relevance
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/ |
| D | MatchesBinary.php | 34 $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 D | WebDriverExpectedCondition.php | 294 * @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/ |
| D | core.php | 251 function twig_matches(string $regexp, ?string $str) argument 255 return CoreExtension::matches($regexp, $str);
|
| /template/dokui/css/ |
| D | highlight.css | 81 pre .regexp {
|
| /template/twigstarter/vendor/twig/twig/src/Extension/ |
| D | CoreExtension.php | 1180 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 D | rrdiagram.js.map | 1 …regexp.js","webpack:///../~/core-js/modules/_iter-detect.js","webpack:///../~/core-js/modules/_obj…
|
| /template/twigstarter/vendor/twig/twig/ |
| D | CHANGELOG | 390 * Throw a better runtime error when the "matches" regexp is not valid
|