Home
last modified time | relevance | path

Searched refs:matches (Results 201 – 225 of 1144) sorted by relevance

12345678910>>...46

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DTestHandler.php218 …h('/(.*)(Debug|Info|Notice|Warning|Error|Critical|Alert|Emergency)(.*)/', $method, $matches) > 0) {
219 … $genericMethod = $matches[1] . ('Records' !== $matches[3] ? 'Record' : '') . $matches[3];
220 $level = constant('Monolog\Logger::' . strtoupper($matches[2]));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DRegex.php19 * @param null $matches
25 … public static function pregMatchSafe($pattern, $subject, $matches = null, $flags = 0, $offset = 0) argument
28 $match = preg_match($pattern, $subject, $matches, $flags, $offset);
/plugin/struct/helper/
H A Dfield.php128 * @param $matches
131 public function replacementMultiValueCallback($matches) argument
137 if (isset($matches['default']) && $matches['default'] != '') {
138 return $matches['default'];
140 return $matches[0];
148 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';
/plugin/textinsert/
H A Dsyntax.php99 function($matches) {
100 …$matches[1] = str_replace(array('**','//','__','\'\'',),array('<b>','<em>','<u>','<code>'),$matche…
101 …$matches[3] = str_replace(array('**','//','__','\'\''),array('</b>','</em>','</u>','</code>'),$mat…
102 return $matches[1] . $matches[2] . $matches[3];
/plugin/commonmark/vendor/league/commonmark/src/
H A DCursor.php
/plugin/ckgedit/ckeditor/plugins/tags/dialogs/
H A Dtags.js.unc13 var matches = tagregexp.exec(content);
17 if (matches != null) {
19 for (var i = 0; i<matches.length; i++) {
20 if (wordmatch.test(matches[i].toUpperCase())) {
146 var matches = tagregexp.exec(content);
147 if(!matches) return;
148 matches[1] = matches[1].replace(/&nbsp;/g, " ");
149 matches[1] = matches[1].replace(/\s+/g," " );
151 on_page = matches[1].split(/\s/);
/plugin/cronojob/
H A Dpseudocron.php227 … (preg_match("~^(\\*|([0-9]{1,2})(-([0-9]{1,2}))?)(/([0-9]{1,2}))?$~",$subelements[$i],$matches)) {
228 if ($matches[1]=="*") {
229 $matches[2] = 0; // from
230 $matches[4] = $numberOfElements; //to
231 } elseif ($matches[4]=="") {
232 $matches[4] = $matches[2];
234 if ($matches[5][0]!="/") {
235 $matches[6] = 1; // step
237 …for ($j=$this->lTrimZeros($matches[2]);$j<=$this->lTrimZeros($matches[4]);$j+=$this->lTrimZeros($m…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DFunctionCommentSniff.php202 $matches = array();
204 $exception = $matches[1];
205 if (isset($matches[2]) === true && trim($matches[2]) !== '') {
206 $comment = $matches[2];
284 $matches = array();
287 if (empty($matches) === false) {
288 $typeLen = strlen($matches[1]);
289 $type = trim($matches[1]);
297 if (isset($matches[2]) === true) {
298 $var = $matches[2];
[all …]
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.brush.bash-script.js5matches:Syntax.extractMatches({brush:'bash-statement'})});});Syntax.register('bash-statement',func…
/plugin/freechat/phpfreechat/misc/
H A Dgenerate-doc.inc.php17 if (preg_match('/class pfcGlobalConfig/',$data,$matches, PREG_OFFSET_CAPTURE, $offset))
19 $offset_start = $matches[0][1];
21 if (preg_match('/function pfcGlobalConfig/', $data, $matches, PREG_OFFSET_CAPTURE, $offset))
23 $offset_end = $matches[0][1];
/plugin/davcard/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
169 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
177 return new \DateTimeZone('Etc/GMT' . $matches[1] . ltrim(substr($matches[2],0,2),'0'));
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
169 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
177 return new \DateTimeZone('Etc/GMT' . $matches[1] . ltrim(substr($matches[2],0,2),'0'));
/plugin/davcal/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
169 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
177 return new \DateTimeZone('Etc/GMT' . $matches[1] . ltrim(substr($matches[2],0,2),'0'));
/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/ckgdoku/scripts/
H A Dparse_wiki.js.unc401 var matches;
481 matches[1]=matches[1].replace(/;/,"");
491 matches[1]=matches[1].replace(/;/,"");
501 if(matches && matches[0].match(/background/)) {
630 matches[1] = matches[1].replace(/^\//,"");
637 if(matches && matches[1]) this.attr = matches[1];
669 matches[1] = matches[1].replace(/&amp;/,'?')
672 if(matches && matches[1]) {
732 matches[1] = matches[1].replace(/\//g,':');
734 matches[1] = ':' + matches[1];
[all …]
/plugin/ckgedit/scripts/
H A Dparse_wiki.js.unc490 var matches;
570 matches[1] = matches[1].replace(/;/, "");
580 matches[1] = matches[1].replace(/;/, "");
589 if (matches && matches[0].match(/background/)) {
698 matches[1] = matches[1].replace(/^\//, "");
705 if (matches && matches[1]) this.attr = matches[1];
735 matches[1] = matches[1].replace(/&amp;/, '?')
738 if (matches && matches[1]) {
793 matches[1] = matches[1].replace(/\//g, ':');
795 matches[1] = ':' + matches[1];
[all …]
/plugin/aceeditor/
H A Dpreview.php32 if (preg_match('/<img src="(.*?\?media=(.*?))"/', $xhtml, $matches)) {
33 $url = $matches[1];
34 $path = mediaFN($matches[2]);
/plugin/codeprettify/syntax/
H A Dcode.php86 if (preg_match_all('/(\w+)=?(\w+)?/', $params, $matches)) {
89 $keys = array_map('strtolower', $matches[1]);
102 $matches[2]
185 if ( preg_match('/\[.*\]/', $params, $matches) ) {
188 $matches[0],
189 $this->strGeshiOptions( $this->getGeshiOption($matches[0]) ),
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/
H A DCallCenter.php84 $matches = array();
87 $matches[] = array($score, $methodProphecy);
92 if (!count($matches)) {
97 @usort($matches, function ($match1, $match2) { return $match2[0] - $match1[0]; });
99 $score = $matches[0][0];
101 $methodProphecy = $matches[0][1];
/plugin/dwcommits/
H A Dsyntax.php122 $matches = explode("\n", trim($match));
123 foreach($matches as $entry) {
194 if(preg_match('/dwcommits_(\d+)/',$entry, $matches)) {
196 if(($url = $this->dwc_element('url', $matches[1], $inf))!== false) {
200 $git = $this->dwc_element('git', $matches[1], $inf);
/plugin/survey/helper/
H A Dsurvey.php96 if (preg_match("/\[\[(.*)\]\]/", $lineText, $matches)) {
97 if (preg_match("/^([^|]*)\|(.*)$/", $matches[1], $titleMatches)) {
101 $link = $name = $matches[1];
108 $matches[0],
116 $matches[0],
/plugin/alphalist/
H A Dsyntax.php53 preg_match_all('/([a-zA-Z0-9:_\-]*)(?:\{([^\}]+)\})?/', $match, $matches);
58 for($i=0;$i<count($matches[0]);$i++)
60 if(!empty($matches[0][$i]))
62 for($j=1;$j<count($matches);$j++)
64 $pages[$j-1][$k] = $matches[$j][$i];
/plugin/odt/ODT/styles/
H A DODTStyle.php114 $matches = array();
116 if (preg_match ($pattern, $xmlCode, $matches) !== 1) {
119 $element = trim ($matches [0], '"<>');
195 if (preg_match ('/'.$field[0].'="[^"]*"/', $xmlCode, $matches) === 1) {
196 $value = substr ($matches [0], strlen($field[0].'="'));
/plugin/sphinxsearch-was/
H A Dfunctions.php109 $matches = array();
110 if (!preg_match("/$regex/i", $doc, $matches)) {
113 if (empty($matches[1])) {
116 $end = strpos($doc, $matches[1]);
130 if (preg_match("/$regex/i", $doc, $matches)) {
131 $startHeader = $matches[0];
136 if (preg_match("/$regex/i", $endDoc, $matches)) {
137 $endHeader = $matches[0];
155 if (preg_match("/$regex/i", $endDoc, $matches)) {
156 $endHeader = $matches[0];
/plugin/sphinxsearch/
H A Dfunctions.php117 $matches = array();
118 if (!preg_match("/$regex/i",$doc,$matches)) {
121 if (empty($matches[1])){
124 $end = strpos($doc, $matches[1]);
138 if (preg_match("/$regex/i",$doc,$matches)) {
139 $startHeader = $matches[0];
144 if (preg_match("/$regex/i",$endDoc,$matches)) {
145 $endHeader = $matches[0];
163 if (preg_match("/$regex/i",$endDoc,$matches)) {
164 $endHeader = $matches[0];

12345678910>>...46