Home
last modified time | relevance | path

Searched refs:matches (Results 201 – 225 of 1144) sorted by last modified time

12345678910>>...46

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DDataFrameTransformDeprecatedNamespace.asciidoc57 $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)
75 $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)
133 $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)
/plugin/latexcaption/syntax/
H A Dcaption.php88 $matches = $match_arr[0];
92 $match_arr = explode(' ', trim($matches), 2);
/plugin/structnotification/action/
H A Dnotification.php151 function ($matches) use ($values) {
152 list($schema, $field) = explode('.', trim($matches[1]));
/plugin/achart/assets/
H A Dapexcharts.min.js6matches(t):i instanceof t)return i;if(!i.node.parentNode||"#document"==i.node.parentNode.nodeName)…
/plugin/achart/
H A Dsyntax.php53 …preg_match_all('/(\S+)=["\']?((?:.(?!["\']?\s+(?:\S+)=|[>"\']))+.)["\']?/', $opts, $matches, PREG_…
60 foreach($matches as $m) {
66 function($matches){
67 $m = $matches[0];
/plugin/snippets/
H A Daction.php69 $n = preg_match('/strong>(.*?)<\/strong/',$msg, $matches);
70 $msg = str_replace('!', '.',$matches[1]) . ' ';
192 preg_match_all("/~~SNIPPET_C~~(.*?)~~/",$event->data[0][1],$matches);
193 $intersect = array_intersect($snippets,$matches[1]);
H A Dadmin.php108 preg_match_all("/~~SNIPPET_C~~(.*?)~~/",$text,$matches);
109 $ar = $matches[1];
129 $refs_diff_1 = array_diff($refs_keys,$matches[1]);
130 $refs_diff_2 = array_diff($matches[1],$refs_keys);
141 $diff = array_diff($snips,$matches[1]) ;
H A Dhelper.php77 if($sum && preg_match('#restored\s+(\(.*?\))#',$sum,$matches)){
78 return strtotime(trim($matches[1],'()'));
150 function($matches){
152 …return time() . $matches[1]. "\n" .$replacement . "\n"; // time() makes each update unique for…
/plugin/snippets/exe/
H A Dupdate.php57 preg_match_all("/~~SNIPPET_C~~(.*?)~~/",$text,$matches);
58 $intersect = array_intersect($matches[1],$snippets);
/plugin/ckgedit/action/
H A Dedit.php307 return $matches[1] . $matches[2] . $matches[3];
342 … return "<" . $matches[1] . $matches[2] . $matches[3] . $matches[4] . $matches[5];
362 return $matches[1] . $matches[2] . trim($matches[3]) . $matches[4];
411 … $retstr = $matches[1] . ">\n/*" . $matches[2] . "*/\n" . $matches[3];
435 return $matches[1] . $matches[2] . "<br />";
448 return $matches[1] . $matches[2] . $matches[3];
475 return $matches[1] . $matches[2] . $matches[3] . $matches[4] . $matches[5];
1126 return $matches[1] . $quot . $matches[3];
1134 return $matches[1] . $quot . $matches[3];
1152 return $matches[1] .$matches[2] . $matches[3];
[all …]
H A Dsave.php101 if($matches[1]) $left .= $matches[1];
102 if($matches[4]) $right = $matches[4] . $right;
118 return $matches[1].$matches[2].$matches[3];
188 return '<code ' . $matches[1] .' ' . $matches[2] .'>';
262 return '{{' .$matches[1] . $rel . $matches[3] .'}}';
287 $matches[2]=preg_replace("/^\s+/ms","",$matches[2]);
289 return $matches[1]. $matches[2];
325 $matches[0] = str_replace("@!@",'\\',$matches[0]);
335 $matches[3] = preg_replace('/\n+/',"",$matches[3] );
337 return '|' . $matches[1] . $matches[2] . str_replace("\\ ","",$matches[3]);
[all …]
H A Dmeta.php301 function($matches) {
302 return str_replace("\n", "__code_NL__",$matches[0]);
321 function($matches) {
329 function($matches) {
330 return preg_replace("/^\s+/ms","",$matches[0]);
352 function($matches) {
353 global $ents; return $ents[$matches[2]];
520 $save_dir=$matches[1] . '/data/pages';
578 preg_match('/build\s+(\d+)/',$sys, $matches);
587 if(preg_match('/<SYMLINKD>\s+(.*?)\s+\[/i',$line,$matches)) {
[all …]
/plugin/ckgedit/ckeditor/
H A DCHANGES.md174 …complete) &ndash; Provides contextual completion feature for custom text matches based on user inp…
175 …m/cke4/addon/textWatcher) &ndash; Checks whether an editor's text change matches the chosen criter…
177 …ddon/mentions) plugin providing smart completion feature for custom text matches based on user inp…
1219 …ditor4/latest/guide/dev_advanced_content_filter.html) of an element that matches custom criteria (…
H A Dget_headers.php40 if (preg_match('/^=+([^=]+)=+\s*$/',$line,$matches)) {
43 if(isset($headers[$matches[1]])) {
44 $headers[$matches[1]]++;
45 $suffix_anchor = $headers[$matches[1]];
49 $headers[$matches[1]]=0;
52 $resp .= trim($matches[1]) . $suffix_header . ";;" ;
53 $resp .= cleanID($matches[1]). $suffix_anchor . "@@" ;
/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js.unc19 var matches = data.match(/\/(.*?)\/(doku.php)?\/?(.*)/);
23 href = matches[0];
25 else if(!matches[2])
27 id = matches[3];
28 href = matches[1] + '/doku.php';
31 id = matches[3];
32 href = matches[2] + '/doku.php';
/plugin/ckgedit/ckeditor/plugins/image/dialogs/
H A Dimage.js.unc989 // we should remove it only if it matches "left" or "right",
1047 var matches = href.match(/media\s*=(.*)/);
1048 if(matches) {
1049 href = ckgeditDwikiSaveDir + '/'+ matches[1].replace(':','/');
/plugin/ckgedit/ckeditor/plugins/msword/dialogs/bak/
H A Dmsword.js.unc119 matches = i.match(/level(\d)/);
120 if(matches) {
121 return 'L_'+matches[1]; }
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dconfig.php119 if(preg_match('#(\/\w+\/' . $animal . ')#',$path,$matches)) {
120 $Config['UserFilesPath'] = $matches[1] . '/data/pages/';
H A Dutf8.php416 preg_match('/^(.{1})(.*)$/us', $str, $matches);
417 return utf8_strtoupper($matches[1]).$matches[2];
450 * @param array $matches matches corresponding to a single word
453 function utf8_ucwords_callback($matches) { argument
454 $leadingws = $matches[2];
455 $ucfirst = utf8_strtoupper($matches[3]);
456 $ucword = utf8_substr_replace(ltrim($matches[0]),$ucfirst,0,1);
1021 while (preg_match('/'.$UTF8_BAD.'/S', $str, $matches)) {
1022 if ( !isset($matches[2])) {
1023 echo $matches[0];
[all …]
H A Dutil.php50 while (preg_match('/'.$regex.'/S', $string, $matches)) {
51 if ( isset($matches[2])) {
54 $string = substr($string, strlen($matches[0]));
236 if(!preg_match("#$filetypes#", $path, $matches)) {
239 $file_type = $matches[1];
/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 …]
H A Dcss6.php520 function css_ckg_comment_cb($matches){ argument
521 if(strlen($matches[2]) > 4) return '';
522 return $matches[0];
/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/ckgedit/ckeditor/plugins/fontAssist/
H A Dplugin.js.unc184 var matches = target.getAttribute( 'style' ).match(/(#[A-Z0-9]+);/);
185 if(!matches) {
188 else matches[1] = hex2rgb(matches[1]);
189 which.value = matches[1];
190 return matches[1];
622 if(matches && matches[2]) {
623 var elems = matches[1].split(/;;/);
641 matches[2] = matches[2].replace(/<\/font>/,"");
642 matches[2] = matches[2].replace(/<br\/?>/, ' ' );
643 selectedText = matches[2];
[all …]
/plugin/ckgedit/ckeditor/plugins/link/dialogs/
H A Dlink.js.unc361 // urlRegex matches empty strings, so need to check for href as well.

12345678910>>...46