Lines Matching refs:matches

57              preg_match('/_\w+_/',  $_COOKIE['FCKG_USE'], $matches);
58 if($matches[0] == '_false_') {
238 function ($matches) {
239 $matches[0] = str_replace('%%', 'DBLPERCENT',$matches[0]);
240 $matches[0] = str_replace('\\ ', 'DBLBACKSPLASH',$matches[0]);
241 $matches[0] = str_replace('|', 'NWPIPECHARACTER',$matches[0]);
242 return $matches[0];
249 function($matches) {
250 return '<nowiki>' . $matches[1] . '</nowiki>';
265 function($matches) {
268 $matches[1] = str_replace($needles, $replacements, $matches[1]);
269 return '&grave;&grave;' .$matches[1] .'&grave;&grave;' ;
383 function ($matches) {
384 return "divalNLine" . str_replace('#','CGEHASH',$matches[1]);
406 function($matches) {
407 $matches[2] = str_ireplace('<br/>',"",$matches[2]);
408 return $matches[1] . $matches[2] . "<br />";
480 preg_match_all("/<\/(.*?)\>/", $cdata['text'],$matches);
482 …if (!in_array('code', $matches[1]) && !in_array('file', $matches[1]) && !in_array('nowiki', $match…
1042 function ($matches) {
1043 if(strpos($matches[0],"\n") !== false) return $matches[0];
1044 if(preg_match("#<(\w+)>.*?<\/\\1>#",$matches[0])) return $matches[0];
1045 list($name,$link_text) = explode('|',$matches[2]);
1046 $retv = '[[' . $matches[1] . "oIWIKIo" . $name ."cIWIKIc";
1080 function ($matches) {
1081 $matches[0] = preg_replace("#\\\\\\\\\s*[\r\n]#ms", " \\\\\\\\ ",$matches[0]);
1082 return ($matches[0]);
1154 function($matches) {
1156 …if($matches[3] && $matches[3] != 'inherit') { $str .= '<span style = "color:' . $matches[3] .'">';…
1157 …if($matches[1] && $matches[1] != 'inherit') { $str .= '<span style = "font-size:' . $matches[1] .'…
1158 …if($matches[2] && $matches[2] != 'inherit') { $str .= '<span style = "font-family:' . $matches[1] …
1159 …if($matches[4] && $matches[4] != 'inherit') { $str .= '<span style = "background-color:' . $matche…
1160 $str .= $matches[5];