Home
last modified time | relevance | path

Searched refs:preg_match (Results 301 – 325 of 1399) sorted by path

1...<<11121314151617181920>>...56

/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DPseudoClass.php212 } elseif (preg_match('(^[+-]?\d+$)D', $string)) {
215 preg_match('(^(?P<repeat>\d+)n$)D', $string, $matches) ||
216 preg_match('(^(?P<repeat>[+-]?\d*)n(?P<add>[+-]\d+)$)D', $string, $matches)
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/
H A DStatus.php51 $found = preg_match(
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DDayOfMonthField.php117 if ((bool) preg_match('/^\d{1,2}$/', $value) && ($value >= 1 && $value <= 31)) {
122 if ((bool) preg_match('/-/', $value)) {
124 if ((bool) preg_match('/,/', $value)) {
139 if ((bool) preg_match('/,/', $value)) {
141 if ((bool) preg_match('/-/', $value)) {
156 if ((bool) preg_match('/\//', $value)) {
167 if ((bool) preg_match('/^\d{1,2}W$/', $value)) {
H A DDayOfWeekField.php125 if (!preg_match('/^(\*|[0-7](L?|#[1-5]))([\/\,\-][0-7]+)*$/', $expr)) {
H A DHoursField.php69 return (bool) preg_match('/^[\*,\/\-0-9]+$/', $value);
H A DMinutesField.php60 return (bool) preg_match('/^[\*,\/\-0-9]+$/', $value);
H A DMonthField.php42 return (bool) preg_match('/^[\*,\/\-0-9A-Z]+$/', $value);
H A DYearField.php35 return (bool) preg_match('/^[\*,\/\-0-9]+$/', $value);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxProfile.php213 preg_match('#<' . $prefix . 'id>([^<]+)</' . $prefix . 'id>#', $xml->asXML(), $matches);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DHttpCommandExecutor.php201 if (preg_match("/^(https?:\/\/)(.*):(.*)@(.*?)/U", $url, $matches)) {
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverExpectedCondition.php77 return (bool) preg_match($titleRegexp, $driver->getTitle());
122 return (bool) preg_match($urlRegexp, $driver->getCurrentURL());
302 return (bool) preg_match($regexp, $driver->findElement($by)->getText());
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php551 preg_match("/(.*?)\s+(?:(?:\"|\')(.*?)(?:\"|\'))/", $args, $m);
583 preg_match("/(.*?)\s+(?:(?:\"|\')(.*?)(?:\"|\'))\s+(?:(?:\"|\')(.*?)(?:\"|\'))/", $args, $m);
607 preg_match("/(.*?)\s+(?:(?:\"|\')(.*?)(?:\"|\'))/", trim($args), $m);
629 preg_match("/(.*?)\s+(.*?)\s+(?:(?:\"|\')(.*?)(?:\"|\'))/", trim($args), $m);
767 preg_match("/^([\w\._\-]+)(?:\[([\-0-9]*?:[\-0-9]*?)\])?/i", $string, $m);
H A DTokenizer.php273 if (preg_match('/\S/', $token[self::VALUE])) {
/plugin/combo/vendor/symfony/polyfill-ctype/
H A DCtype.php36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text);
52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text);
68 return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text);
84 return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text);
100 return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text);
116 return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text);
132 return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text);
148 return \is_string($text) && '' !== $text && !preg_match('/[^!-\/\:-@\[-`\{-~]/', $text);
164 return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text);
180 return \is_string($text) && '' !== $text && !preg_match('/[
[all...]
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php168 if (!preg_match('//u', $s)) {
234 if (!preg_match('//u', $s)) {
282 if (!preg_match('//u', $s)) {
433 if (!preg_match('/[\x80-\xFF]/', $str)) {
440 if (preg_match('//u', $str)) {
/plugin/combo/vendor/symfony/process/
H A DProcess.php1626 if (!preg_match('/[\/()%!^"<>&|\s]/', $argument)) {
/plugin/combo/vendor/symfony/yaml/
H A DEscaper.php55 return 0 < preg_match('/'.self::REGEX_CHARACTER_TO_ESCAPE.'/u', $value);
83 return 0 < preg_match('/[ \s \' " \: \{ \} \[ \] , & \* \# \?] | \A[ \- ? | < > = ! % @ ` \p{Zs}]/xu', $value);
H A DInline.php194 case Parser::preg_match('{^[0-9]+[_0-9]*$}', $value):
195 case Parser::preg_match(self::getHexRegex(), $value):
196 case Parser::preg_match(self::getTimestampRegex(), $value):
293 if (Parser::preg_match('/[ \t]+#/', $output, $match, \PREG_OFFSET_CAPTURE)) {
296 } elseif (Parser::preg_match('/^(.*?)('.implode('|', $delimiters).')/', substr($scalar, $i), $match)) {
324 if (!Parser::preg_match('/'.self::REGEX_QUOTED_STRING.'/Au', substr($scalar, $i), $match)) {
388 if (!$isQuoted && \is_string($value) && '' !== $value && '&' === $value[0] && Parser::preg_match(Parser::REFERENCE_PATTERN, $value, $matches)) {
530 if (!$isValueQuoted && \is_string($value) && '' !== $value && '&' === $value[0] && Parser::preg_match(Parser::REFERENCE_PATTERN, $value, $matches)) {
652 case preg_match('/^(?:\+|-)?0o(?P<value>[0-7_]++)$/', $scalar, $matches):
661 if (Parser::preg_match('{
[all...]
H A DParser.php83 if (false === preg_match('//u', $value)) {
161 if ('-' === $this->currentLine[0] && self::preg_match('#^\-((?P<leadspaces>\s+)(?P<value>.+))?$#u', rtrim($this->currentLine), $values)) {
167 if (isset($values['value']) && '&' === $values['value'][0] && self::preg_match(self::REFERENCE_PATTERN, $values['value'], $matches)) {
199 || self::preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\{\[].*?) *\:(\s+(?P<value>.+?))?\s*$#u', $this->trimTag($values['value']), $matches)
218 self::preg_match('#^(?P<key>(?:![^\s]++\s++)?(?:'.Inline::REGEX_QUOTED_STRING.'|(?:!?!php/const:)?[^ \'"\[\{!].*?)) *\:(( |\t)++(?P<value>.+))?$#u', rtrim($this->currentLine), $values)
244 if ('<<' === $key && (!isset($values['value']) || '&' !== $values['value'][0] || !self::preg_match('#^&(?P<ref>[^ ]+)#u', $values['value'], $refMatches))) {
305 } elseif ('<<' !== $key && isset($values['value']) && '&' === $values['value'][0] && self::preg_match(self::REFERENCE_PATTERN, $values['value'], $matches)) {
741 if (\in_array($value[0], ['!', '|', '>'], true) && self::preg_match('/^(?:'.self::TAG_PATTERN.' +)?'.self::BLOCK_SCALAR_HEADER_PATTERN.'$/', $value, $matches)) {
865 self::preg_match($pattern, $this->currentLine, $matches)
1070 * A local wrapper for "preg_match" whic
1082 public static function preg_match(string $pattern, string $subject, array &$matches = null, int $flags = 0, int $offset = 0): int global() function in Symfony\\Component\\Yaml\\Parser
[all...]
/plugin/command/inc/
H A Dembedding.php199 if(!preg_match(COMMANDPLUGIN_CALL_PREG, $callString, $matches))
/plugin/commonmark/
H A Daction.php36 elseif (preg_match('/\A<!DOCTYPE markdown>/',$event->data)) {
/plugin/commonmark/vendor/league/commonmark/bin/
H A Dcommonmark
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DIndentedCode.php
/plugin/commonmark/vendor/league/commonmark/src/Block/Parser/
H A DListParser.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DCursor.php

1...<<11121314151617181920>>...56