Home
last modified time | relevance | path

Searched refs:matches (Results 126 – 150 of 1144) sorted by last modified time

12345678910>>...46

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DWildcardTransition.php9 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool function in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\WildcardTransition
/plugin/combo/vendor/symfony/process/
H A DProcess.php1636 return preg_replace_callback('/"\$\{:([_a-zA-Z]++[_a-zA-Z0-9]*+)\}"/', function ($matches) use ($commandline, $env) {
1637 if (!isset($env[$matches[1]]) || false === $env[$matches[1]]) {
1638 throw new InvalidArgumentException(sprintf('Command line is missing a value for parameter "%s": ', $matches[1]).$commandline);
1641 return $this->escapeArgument($env[$matches[1]]);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxProfile.php212 $matches = [];
213 preg_match('#<' . $prefix . 'id>([^<]+)</' . $prefix . 'id>#', $xml->asXML(), $matches);
214 if (isset($matches[1])) {
215 $ext_dir = $profile_dir . '/extensions/' . $matches[1];
/plugin/combo/ComboStrap/
H A DTemplate.php72 $matches = [];
73 preg_match('/' . self::LONG_VARIABLE_NAME_CAPTURE_EXPRESSION . '/im', $part, $matches);
74 $variable = $matches[1];
118 $result = preg_match_all($pattern, $this->_string, $matches);
121 $firstExpressionMatches = $matches[1];
122 $secondExpressionMatches = $matches[2];
/plugin/structodt/
H A Dhelper.php279 $content = preg_replace_callback($pattern, function($matches) use ($value) {
281 if (isset($matches[1])) {
282 $index = (int)$matches[1];
344 return preg_replace_callback('/\$(.*?)\$/', function ($matches) use ($row) {
346 $explode = explode('.', $matches[1], 2);
/plugin/data/syntax/
H A Dentry.php96 preg_match('/^(.*?(?<![&\\\\]))(?:#(.*))?$/', $line, $matches);
97 $line = $matches[1];
104 if (isset($matches[2])) {
105 $column['comment'] = $matches[2];
/plugin/adhoctags/
H A DREADME.md86 - `classname` – anything that does matches a valid CSS class name (and none of the other formats) will be treated as a class name.
/plugin/bpmnio/vendor/bpmn-js/dist/
H A Dbpmn-modeler.production.min.js2 …veChild(t);return e}function J(e,t){return e&&"function"==typeof e.matches&&e.matches(t)}function …
H A Dbpmn-navigated-viewer.production.min.js2 …eChild(t);return e}function Re(e,t){return e&&"function"==typeof e.matches&&e.matches(t)}function …
H A Dbpmn-viewer.production.min.js2 …eChild(t);return e}function Se(e,t){return e&&"function"==typeof e.matches&&e.matches(t)}Ae.protot…
/plugin/bpmnio/vendor/dmn-js/dist/
H A Ddmn-modeler.production.min.js2 …eChild(t);return e}function sn(e,t){return e&&"function"==typeof e.matches&&e.matches(t)}function …
7matches:function(e){var t=e.businessObject;return Ln(t,"dmn:Decision")&&Ln(t.decisionLogic,"dmn:De…
H A Ddmn-navigated-viewer.production.min.js2matches&&e.matches(t)}function qt(e,t,n){for(var r=n?e:e.parentNode;r&&r.nodeType!==document.DOCUM…
H A Ddmn-viewer.production.min.js2matches&&e.matches(t)}Ut.prototype.add=function(e){return this.list.add(e),this},Ut.prototype.remo…
/plugin/randomtables/table-roller/src/Table/
H A DManager.php22 private function embedResult($matches): string argument
26 $table = $this->getTable($matches[1]);
/plugin/oauth/vendor/composer/
H A DInstalledVersions.php123 return $provided->matches($constraint);
/plugin/upgrade/vendor/composer/
H A DInstalledVersions.php125 return $provided->matches($constraint);
/plugin/smtp/classes/
H A DMessage.php36 if(preg_match('#(.*?)<(.*?)>#', $this->from, $matches)) {
37 return $matches[2];
55 if(preg_match('#(.*?)<(.*?)>#', $addr, $matches)) {
56 $rcpt[] = trim($matches[2]);
/plugin/sortablejs/
H A Dsyntax.php129 if ( preg_match( '/r?\d*/', $c, $matches ) ) {
/plugin/statistics/inc/
H A DBrowscap.php318 if (preg_match($pattern . 'i', $user_agent, $matches)) {
319 if (1 == count($matches)) {
328 array_shift($matches);
330 $match_string = self::COMPRESSION_PATTERN_START . implode(self::COMPRESSION_PATTERN_DELIMITER, $matches);
345 $this->_pregUnQuote($pattern, $simple_match ? false : $matches)
536 $matches_count = preg_match_all('@\d@', $pattern, $matches);
547 $tmp_patterns[$compressed_pattern][$i] = $matches[0];
620 * All numbers are taken out into $matches, so we check if any of those numbers are identical
621 * in all the $matches and if they are we restore them to the $pattern, removing from the $matches
629 deduplicateCompressionPattern($matches, & $pattern) global() argument
692 _pregUnQuote($pattern, $matches) global() argument
[all...]
/plugin/const/
H A Dclass.evalmath.php181 if ( in_array( $matches[1], $this->constants, true ) ) {
185 $tmp = $this->pfx( $this->nfx( $matches[2] ) );
190 $this->variables[ $matches[1] ] = $tmp;
197 $function_name = $matches[1];
203 $matches[2] = str_replace( array( "\n", "\r", "\t", ' ' ), '', $matches[2] );
204 $args = explode( ',', $matches[2] );
207 $stack = $this->nfx( $matches[3] );
338 $function_name = $matches[1];
407 …( in_array( $matches[1], $this->builtin_functions, true ) || array_key_exists( $matches[1], $this-…
414 $value = $matches[1];
[all …]
/plugin/sql2wiki/syntax/
H A Dquery.php65 if (preg_match('/([[:alpha:]]+)\((.*)\)/', $value, $matches)) {
66 $class = $matches[1];
67 $config = json_decode($matches[2], true);
/plugin/btable2/
H A Dsyntax.php64 $matches = array();
66 if (preg_match('#<opt.*?>(.*?)</opt>#u', $options, $matches)) {
67 $opt = $matches[1];
/plugin/ireadit/action/
H A Dmigration.php73 $status = preg_match('/~~IREADIT.*~~/', $content, $matches);
237 $status = preg_match('/~~IREADIT.*~~/', $content, $matches);
241 $match = trim(substr($matches[0], strlen('~~IREADIT'), -2));
/plugin/autonumbering/
H A Dsyntax.php84 if (preg_match('/~~(.*?)~~/', $match, $matches)) {
85 $data = $matches[1];
89 if (preg_match('/@(' . $this->COUNTER_ID_PATTERN . ')/', $data, $matches)) {
90 $counterID = $matches[1];
113 … } else if (preg_match('/(' . $this->NUMBER_PATTERN . ')/', $dataTab[$i], $matches))
115 $COUNTER[$counterID][$i] = $matches[1]-1;
117 $COUNTER[$counterID][$i] = $matches[1];
169 $qtyOccurrences = preg_match_all('/~~(.*?)~~/', $pageContent, $matches);
172 … list($number, $null) = $this->handle($matches[0][$i], DOKU_LEXER_SPECIAL, NULL, $handler);
173 $pageContent = preg_replace('(' . $matches[0][$i] . ')', $number, $pageContent, 1);
/plugin/odt/ODT/
H A DODTList.php226 …if (preg_match('/<text:p text:style-name="[^"]*">/', $params->content, $matches, 0, $position) ===…
227 $last_p_style = substr($matches [0], strlen('<text:p text:style-name='));
274 $position, strlen($matches[0]));

12345678910>>...46