Home
last modified time | relevance | path

Searched refs:matches (Results 726 – 750 of 1144) sorted by relevance

1...<<21222324252627282930>>...46

/plugin/openid/Auth/OpenID/
H A DAssociation.php612 $matches = in_array($session_type,
615 return ($assoc_good && $matches);
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A Dcommands.php442 if(preg_match('/^(.*?)\/(.*?)$/',$filename,$matches)) {
445 $sMoveDir .= dwiki_encodeFN($matches[1]);
448 $filename = $matches[2];
H A Dconfig.php117 if(preg_match('#(\/\w+\/' . $animal . ')#',$path,$matches)) {
118 $Config['UserFilesPath'] = $matches[1] . '/data/pages/';
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dcommands.php438 if(preg_match('/^(.*?)\/(.*?)$/',$filename,$matches)) {
441 $sMoveDir .= dwiki_encodeFN($matches[1]);
444 $filename = $matches[2];
/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/findologicxmlexport/vendor/phpspec/prophecy/
H A DREADME.md240 - `ExactValueToken` or `Argument::exact($value)` - checks that the argument matches a specific value
241 - `TypeToken` or `Argument::type($typeOrClass)` - checks that the argument matches a specific type …
245 - `CallbackToken` or `Argument::that(callback)` - checks that the argument matches a custom callback
246 - `AnyValueToken` or `Argument::any()` - matches any argument
247 - `AnyValuesToken` or `Argument::cetera()` - matches any arguments to the rest of the signature
345 code. After that, Prophecy can use this collected information to check if it matches defined
354 It checks if your method of interest (that matches both the method name and the arguments wildcard)
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dgetid3.php277 if (preg_match('#([0-9]+) ?M#i', $memoryLimit, $matches)) {
279 $memoryLimit = $matches[1] * 1048576;
280 …} elseif (preg_match('#([0-9]+) ?G#i', $memoryLimit, $matches)) { // The 'G' modifier is available…
282 $memoryLimit = $matches[1] * 1073741824;
355 …#^([0-9/]{10}) +([0-9:]{4,5}( [AP]M)?) +(<DIR>|[0-9,]+) +([^ ]{0,11}) +(.+)$#', $line, $matches)) {
356 list($dummy, $date, $time, $ampm, $filesize, $shortname, $filename) = $matches;
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Process/
H A DRequireCssProcess.php59 if(preg_match('~^\*(\.[^\.]+)$~', $filename, $matches)){
/plugin/authgooglesheets/vendor/composer/
H A DInstalledVersions.php286 return $provided->matches($constraint);
/plugin/exttab2/
H A Dsyntax.php208 $nattr = preg_match_all("/(\w+)\s*=\s*($val)/", $attr, $matches, PREG_SET_ORDER);
213 $m = $matches[$i];
/plugin/vcard/
H A Dsyntax.php337 if (!preg_match_all('/[^+\d\s]+/', $value, $matches, PREG_OFFSET_CAPTURE)) {
343 foreach ($matches[0] as $match) {
/plugin/publistx/bib2tpl/lib/
H A DBibTex.php402 $matches = array();
403 preg_match('/^@\w+\{(.+?),/' ,$entry, $matches);
404 if ( count($matches) > 0 )
406 $ret['entrykey'] = $matches[1];
/plugin/publistf/bib2tpl/lib/
H A DBibTex.php402 $matches = array();
403 preg_match('/^@\w+\{(.+?),/' ,$entry, $matches);
404 if ( count($matches) > 0 )
406 $ret['entrykey'] = $matches[1];
/plugin/publist/bib2tpl/lib/
H A DBibTex.php402 $matches = array();
403 preg_match('/^@\w+\{(.+?),/' ,$entry, $matches);
404 if ( count($matches) > 0 )
406 $ret['entrykey'] = $matches[1];
/plugin/photogallery/phpThumb/
H A Dphpthumb.class.php1602 $versionstring[0] = trim($matches[1]);
1628 if (preg_match('#^[\\+\\-]([a-z\\-]+) #', trim($line), $matches)) {
1629 $IMoptions[$matches[1]] = true;
1859 if (preg_match('#^bord\|([\d]+)#', $value, $matches)) {
1860 $borderThickness = $matches[1];
2315 …rop "'.$matches[1].'x'.$matches[2].'+0+0" ', ' -crop '.phpthumb_functions::escapeshellarg_replacem…
2317 …$matches[1].'x'.$matches[2].'" ', ' -'.$IMresizeParameter.' '.phpthumb_functions::escapeshellarg_r…
3079 if (!preg_match('#^([0-9\\.\\-]*)x([0-9\\.\\-]*)$#i', $alignment, $matches)) {
3097 if (preg_match('#^([0-9\\.\\-]*)x([0-9\\.\\-]*)$#i', $alignment, $matches)) {
3112 $watermark_dest_x = round($matches[1] - (imagesx($img_watermark) / 2));
[all …]
/plugin/diagramsnet/lib/js/diagramly/graphml/
H A DmxGraphMlCodec.js1017 var matches = null;
1022 while ((matches = tempBindRegEx.exec(template)) != null)
1025 switch (matches[1])
1035 bindingPairs.push({match: matches[0], repl: replacement});
1044 while ((matches = userTagBindRegEx.exec(template)) != null)
1046 var parts = matches[1].split(',');
1071 bindingPairs.push({match: matches[0], repl: mxUtils.htmlEntities(val)});
1084 while ((matches = txtRegEx.exec(template)) != null)
1086 …var val = matches[0].substr(0, matches[0].length - 7) + matches[1] + "</text>"; //7 is the length …
1087 bindingPairs.push({match: matches[0], repl: val});
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dcommands.php436 if(preg_match('/^(.*?)\/(.*?)$/',$filename,$matches)) {
439 $sMoveDir .= dwiki_encodeFN($matches[1]);
442 $filename = $matches[2];
/plugin/batchedit/
H A Dinterface.php163 $matches = $this->getLangPlural('sts_matches', $matchCount);
168 $stats = $this->getLang('sts_preview', $matches, $pages);
173 $stats = $this->getLang('sts_apply', $matches, $pages, $edits);
228 // JSON-encoded list of all checked checkbox ids for single matches.
350 // applied matches if application is performed in multiple rounds. This can
352 // one to apply the remaining matches.
/plugin/searchpattern/
H A Dplugin.info.txt6 …on). Or the $ListOfNumberOfMatch option can be used to display the regex matches (listet by a comm…
/plugin/combo/vendor/composer/
H A DInstalledVersions.php235 return $provided->matches($constraint);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Drespond.min.js5matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){u(!0)}var c={};a.res…
/plugin/authdrupal7/
H A DREADME.md49 * superuser: add a superuser group (with @) or username that matches one of your drupal roles or us…
50 * manager: add a manager group (with @) or username that matches one of your drupal roles or users
/plugin/externalembed/
H A Dsyntax.php407 if(preg_match($regex, $parameters['url'], $matches)) {
408 $parameters['playlist_id'] = $matches[2]; //set the playlist id
/plugin/xcom/
H A Dremote.php167 preg_match_all('/{{(.*?)}}/ms',$str,$matches);
169 foreach($matches[1] as $file) {
/plugin/xtern/
H A Dadmin.php195 if(preg_match("#\[?(https?://\S+)\]?#",$buffer,$matches)) {
206 $this->do_check($matches[1],$lineno,$id);

1...<<21222324252627282930>>...46