Home
last modified time | relevance | path

Searched refs:preg_match (Results 176 – 200 of 1399) sorted by relevance

12345678910>>...56

/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DInline.php197 case Parser::preg_match('{^[0-9]+[_0-9]*$}', $value):
198 case Parser::preg_match(self::getHexRegex(), $value):
199 case Parser::preg_match(self::getTimestampRegex(), $value):
288 if (Parser::preg_match('/[ \t]+#/', $output, $match, PREG_OFFSET_CAPTURE)) {
319 if (!Parser::preg_match('/'.self::REGEX_QUOTED_STRING.'/Au', substr($scalar, $i), $match)) {
616 case Parser::preg_match('{^[+-]?[0-9][0-9_]*$}', $scalar):
631 case Parser::preg_match(self::getHexRegex(), $scalar):
640 case Parser::preg_match('/^(-|\+)?[0-9][0-9_]*(\.[0-9_]+)?$/', $scalar):
642 case Parser::preg_match(self::getTimestampRegex(), $scalar):
700 if (!Parser::preg_match('#^[A-Z0-9+/]+={0,2}$#i', $parsedBinaryData)) {
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.background.attachment.inc.php24 if (preg_match('/\bscroll\b/', $value_string)) {
26 } elseif (preg_match('/\bfixed\b/', $value_string)) {
H A Dxhtml.autoclose.inc.php7 while (preg_match("#^(.*?)({$tags})#is", substr($sample_html, $offset),$matches)) {
38 if (preg_match("#^(.*?)<\s*({$tag})#is", $suffix, $matches)) {
49 while (preg_match("#^(.*?)({$tags})#is", substr($sample_html, $offset),$matches)) {
/plugin/mdpage/vendor/cebe/markdown/inline/
H A DCodeTrait.php21 if (preg_match('/^(``+)\s(.+?)\s\1/s', $text, $matches)) { // code with enclosed backtick
29 } elseif (preg_match('/^`(.+?)`/s', $text, $matches)) {
/plugin/svgedit/
H A Dsyntax.php76 preg_match('/width="[0-9]+" height="[0-9]+"/', $data[1].rawWiki($svg_wiki_page), $_);
80 $ralign = (bool)preg_match('/^\{\{ /',$data[1]);
81 $lalign = (bool)preg_match('/ \}\}$/',$data[1]);
/plugin/exttab3/helper/
H A Dodt.php26 if (preg_match('/style=".*"/', $attr, $matches) === 1) {
33 if (preg_match('/rowspan[ ]*=[ ]*"([0-9]*)"/', $attr, $matches) === 1) {
39 if (preg_match('/colspan[ ]*=[ ]*"([0-9]*)"/', $attr, $matches) === 1) {
/plugin/nslist/
H A Dsyntax.php68 if(preg_match('/\bnodate\b/i',$params)) $conf['date'] = 0;
69 if(preg_match('/\bnodsort\b/i',$params)) $conf['dsort'] = 0;
70 if(preg_match('/\b(\d+)\b/i',$params,$m)) $conf['depth'] = $m[1];
/plugin/markdowku/
H A Dolists.php78 … if (preg_match('/^[ ]{'.$this->depth[$listlevel].'}/', substr($text, $real_position)) > 0) {
84 if (preg_match('/^\t/', substr($text, $real_position)) > 0) {
90 if (preg_match('/^[ ]{0,3}\d+\.[ \t]/', substr($text, $real_position)) > 0) {
H A Dulists.php79 … if (preg_match('/^[ ]{'.$this->depth[$listlevel].'}/', substr($text, $real_position)) > 0) {
85 if (preg_match('/^\t/', substr($text, $real_position)) > 0) {
91 if (preg_match('/^[ ]{0,3}[*+-][ \t]/', substr($text, $real_position)) > 0) {
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DStringUtil.php24 if (preg_match('%[\x00-\x08\x0B-\x0C\x0E\x0F]%', $str)) {
28 return (bool)preg_match('%%u', $str);
/plugin/webdav/vendor/sabre/vobject/lib/
H A DStringUtil.php24 if (preg_match('%[\x00-\x08\x0B-\x0C\x0E\x0F]%', $str)) {
28 return (bool) preg_match('%%u', $str);
/plugin/davcard/vendor/sabre/vobject/lib/
H A DStringUtil.php23 if (preg_match('%[\x00-\x08\x0B-\x0C\x0E\x0F]%', $str)) {
27 return (bool)preg_match('%%u', $str);
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DStringUtil.php23 if (preg_match('%[\x00-\x08\x0B-\x0C\x0E\x0F]%', $str)) {
27 return (bool)preg_match('%%u', $str);
/plugin/davcal/vendor/sabre/vobject/lib/
H A DStringUtil.php23 if (preg_match('%[\x00-\x08\x0B-\x0C\x0E\x0F]%', $str)) {
27 return (bool)preg_match('%%u', $str);
/plugin/fblogin/
H A Dadmin.php117 if(preg_match('!\$conf\[\'authtype\'\] *= *.*!', $line)) {
120 if(preg_match('!\$conf\[\'authtype\'\] *= *[\'"]facebook[\'"]!', $value)) return true;
181 if(!preg_match('!\$lang\[\'\w{1,}\'\] *= *.*!', $lines[$i])) unset($lines[$i--]);
215 if(preg_match('!fblogin!i', $lines[$i])) unset($lines[$i--]);
/plugin/shibbolethauth/
H A Dadmin.php119 if(preg_match('!\$conf\[\'authtype\'\] *= *.*!', $line)) {
122 if(preg_match('!\$conf\[\'authtype\'\] *= *[\'"]shibboleth[\'"]!', $value)) return true;
183 if(!preg_match('!\$lang\[\'\w{1,}\'\] *= *.*!', $lines[$i])) unset($lines[$i--]);
217 if(preg_match('!shibboleth!i', $lines[$i])) unset($lines[$i--]);
/plugin/fedauth/Auth/OpenID/
H A DParse.php170 $result = preg_match($this->openTag('html'), $s,
182 $result = preg_match($this->closeTag('html'), $s,
210 if (preg_match($double, $str, $matches)) {
212 } else if (preg_match($single, $str, $matches)) {
222 return preg_match($regexp, $text, $match);
/plugin/panoview/
H A Dsyntax.php84 if(preg_match('/\b(\d+)[xX](\d+)\b/', $params, $match)) {
90 if(preg_match('/\b[zZ](\d+)\b/', $params, $match)) {
145 if(preg_match('/\.jpe?g$/', $d['file'])) {
147 } elseif(preg_match('/\.png$/', $d['file'])) {
149 } elseif(preg_match('/\.gif$/', $d['file'])) {
/plugin/deflist/
H A Dsyntax.php357 if (preg_match('|\s*<p>\s*$|i', $aRenderer->doc, $hits)) {
371 if (preg_match('|\s*<dd>\s*<p>\s*$|i',
376 $aRenderer->doc .= (preg_match(
391 if (preg_match('|\s*<p>\s*$|i', $aRenderer->doc, $hits)) {
439 if (preg_match('|\s*<p>\s*$|i',
/plugin/openid/Auth/OpenID/
H A DParse.php174 $result = preg_match($this->openTag('html'), $s,
186 $result = preg_match($this->closeTag('html'), $s,
214 if (preg_match($double, $str, $matches)) {
216 } else if (preg_match($single, $str, $matches)) {
225 if (preg_match($regexp, $text, $match)) {
/plugin/fckg/action/
H A Dmeta.php55 if(preg_match("/$ns/",$ID)) {
182 if(!preg_match('#^\.\/data$#',$save_dir)) {
216 if( preg_match('/Windows/i', $sys) ) {
217 preg_match('/build\s+(\d+)/',$sys, $matches);
226 if(preg_match('/<SYMLINKD>\s+(.*?)\s+\[/i',$line,$matches)) {
233 …else if( preg_match('/WINNT/i', PHP_OS) ) { // if we can't get php_uname and a build and this …
358 if(preg_match('/fckg:fckeditor:userfiles:image/',$ID)) {
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.tag.apetag.php169 …if (preg_match('#^([\\-\\+][0-9\\.,]{8})( dB)?$#', $thisfile_ape_items_current['data'][0], $matche…
178 if (preg_match('#^([0-9\\.,]{8})$#', $thisfile_ape_items_current['data'][0], $matches)) {
190 …if (preg_match('#^([\\-\\+][0-9\\.,]{8})( dB)?$#', $thisfile_ape_items_current['data'][0], $matche…
199 if (preg_match('#^([0-9\\.,]{8})$#', $thisfile_ape_items_current['data'][0], $matches)) {
211 …if (preg_match('#^[\\-\\+][0-9]{3},[\\-\\+][0-9]{3},[NW]$#', $thisfile_ape_items_current['data'][0…
222 if (preg_match('#^[0-9]{3},[0-9]{3}$#', $thisfile_ape_items_current['data'][0])) {
232 if (preg_match('#^[0-9]{3},[0-9]{3}$#', $thisfile_ape_items_current['data'][0])) {
/plugin/metadisplay/helper/
H A Dhtml.php86 if (preg_match("/\.meta$/", $file)) {
87 if($this->page && !preg_match("/" . $this->page ."/",$file)) continue;
89 if(!preg_match("/^" . $this->page ."\.meta$/",$file)) continue;
144 if(!preg_match($regex,$description)){
172 if(!preg_match($regex,$creator) && !preg_match($regex,$creator_id)) return;
374 if(preg_match("/[aeiou]/",$a[$i])) {
391 if(preg_match($regex,$str)) {
H A Dplaintext.php86 if (preg_match("/\.meta$/", $file)) {
87 if($this->page && !preg_match("/" . $this->page ."/",$file)) continue;
89 if(!preg_match("/^" . $this->page ."\.meta$/",$file)) continue;
144 if(!preg_match($regex,$description)){
172 if(!preg_match($regex,$creator) && !preg_match($regex,$creator_id)) return;
372 if(preg_match("/[aeiou]/",$a[$i])) {
389 if(preg_match($regex,$str)) {
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A DIdn.php167 if (1 === preg_match('/[^\x00-\x7F]/', $label)) {
254 …if (0x200C === $codePoint && 1 === preg_match(Regex::ZWNJ, $label, $matches, \PREG_OFFSET_CAPTURE,…
384 if (1 === preg_match(Regex::RTL_LABEL, $label)) {
389 if (1 !== preg_match(Regex::BIDI_STEP_1_RTL, $label)) {
397 if (1 === preg_match(Regex::BIDI_STEP_2, $label)) {
405 if (1 !== preg_match(Regex::BIDI_STEP_3, $label)) {
412 …if (1 === preg_match(Regex::BIDI_STEP_4_AN, $label) && 1 === preg_match(Regex::BIDI_STEP_4_EN, $la…
424 if (1 !== preg_match(Regex::BIDI_STEP_1_LTR, $label)) {
432 if (1 === preg_match(Regex::BIDI_STEP_5, $label)) {
440 if (1 !== preg_match(Regex::BIDI_STEP_6, $label)) {
[all …]

12345678910>>...56