Home
last modified time | relevance | path

Searched refs:regex (Results 76 – 100 of 380) sorted by relevance

12345678910>>...16

/plugin/syntaxhighlighter/Uncompressed/
H A DshBrushSql.js28 { regex: new RegExp('--(.*)$', 'gm'), css: 'comment' }, // one line and multiline comments
29 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings
30 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings
31 { regex: new RegExp(this.GetKeywords(funcs), 'gmi'), css: 'func' }, // functions
32 { regex: new RegExp(this.GetKeywords(operators), 'gmi'), css: 'op' }, // operators and such
33 { regex: new RegExp(this.GetKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
H A DshBrushCSharp.js19 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments
20 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments
21 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings
22 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings
23 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg…
24 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // c# keyword
H A DshBrushJScript.js10 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments
11 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments
12 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings
13 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings
14 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg…
15 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keywords
H A DshBrushXml.js30 var regex = null;
42regex = new RegExp('([:\\w-\.]+)\\s*=\\s*(".*?"|\'.*?\'|\\w+)*|(\\w+)', 'gm'); // Thanks to Tomi B…
43 while((match = regex.exec(this.code)) != null)
65 regex = new RegExp('(?:\&lt;|<)/*\\?*\\s*([:\\w-\.]+)', 'gm');
66 while((match = regex.exec(this.code)) != null)
H A DshBrushVb.js19 { regex: new RegExp('\'.*$', 'gm'), css: 'comment' }, // one line comments
20 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings
21 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg…
22 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // c# keyword
/plugin/codemirror/dist/modes/
H A Dhandlebars.min.js.map1regex","push","token","handlebars_raw","pop","handlebars","dash_comment","comment","meta","blockCo…
H A Ddockerfile.min.js.map1regex","sol","token","next","single","pop","double","array","arguments","push","meta","lineComment…
H A Dnsis.min.js.map1regex","token","indent","dedent","next","comment","meta","electricInput","blockCommentStart","bloc…
/plugin/syntaxhighlighter/Scripts/
H A DshBrushCSharp.js9regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,c…
H A DshBrushJScript.js9regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,c…
H A DshBrushXml.js13regex=null;this.GetMatches(new RegExp('(\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\&gt;|>)','gm')…
18 …(?!\\!)|/*\\?*(\&gt;|>)','gm'),'tag');regex=new RegExp('(?:\&lt;|<)/*\\?*\\s*([:\\w-\.]+)','gm');w…
H A DshBrushVb.js9regex:new RegExp('\'.*$','gm'),css:'comment'},{regex:dp.sh.RegexLib.DoubleQuotedString,css:'string…
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushJScript.js34 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
35 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
36 { regex: r.singleLineCComments, css: 'comments' }, // one line comments
37 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
38 …{ regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endreg…
39 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
H A DshBrushTypeScript.js38 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
39 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
40 { regex: r.singleLineCComments, css: 'comments' }, // one line comments
41 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
42 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushJScript.js18 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
19 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
20 { regex: r.singleLineCComments, css: 'comments' }, // one line comments
21 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
22 …{ regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endreg…
23 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
H A DshBrushTypeScript.js22 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
23 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
24 { regex: r.singleLineCComments, css: 'comments' }, // one line comments
25 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
26 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/
H A DRegexMatcher.php27 public $regex; variable in Google\\Service\\TrafficDirectorService\\RegexMatcher
46 public function setRegex($regex) argument
48 $this->regex = $regex;
55 return $this->regex;
H A DStringMatcher.php37 public $regex; variable in Google\\Service\\TrafficDirectorService\\StringMatcher
90 public function setRegex($regex) argument
92 $this->regex = $regex;
99 return $this->regex;
/plugin/tplmod/
H A Dscript.js95 if(acl && JSINFO['tmplft_template'] == 'bootstrap3') { var regex;
97 regex = new RegExp(JSINFO['tmplft_mobile']);
98 else regex = '/NONE/';
101 if( _html.match(regex)) {
124 if(url.match(regex) && !url.match(xcludes)) {
131 var opts, regex, xcludes, optparent;
141 var regex = new RegExp(JSINFO['tmplft_mobile']);
142 if(acl && regex) {
143 if(opt.value.match(regex)) jQuery(this).hide();
148 var regex = new RegExp(JSINFO['tmplft_sitetools'].replace(/,/g,"|"));
[all …]
/plugin/ifauthex/lib/
H A Dtokenizer.php10 function mb_preg_adapt_regex($regex) { argument
11 if (strlen($regex) < 2) {
12 return array($regex, '');
15 $lastDelim = strrpos($regex, $regex[0]);
17 return array($regex, '');
19 $options = substr($regex, $lastDelim + 1);
20 $regex = substr($regex, 1, $lastDelim - 1);
21 return array($regex, $options);
/plugin/aceeditor/
H A Dbuild.js1regex==null)continue;f.regex instanceof RegExp&&(f.regex=f.regex.toString().slice(1,-1));var l=f.r… property in AnonymousFunction3f7200172cb00.o.$rules
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DLexer.php124 foreach ($tokens as $fullLexeme => $regex) {
126 $_tokens[$fullLexeme] = [$regex, null];
136 $_tokens[$lexeme] = [$regex, $namespace];
195 list($regex, $nextState) = $bucket;
201 $out = $this->matchLexeme($lexeme, $regex, $offset);
268 * @param string $regex Regular expression describing the lexeme.
273 protected function matchLexeme($lexeme, $regex, $offset) argument
275 $_regex = str_replace('#', '\#', $regex);
293 [$lexeme, $regex]
/plugin/xcom/
H A Dremote.php88 $regex='';
96 $regex = implode('|',$mask);
99 $regex = $mask[0];
101 else $regex = $mask;
102 $regex = "($regex)\b";
105 $result =$this->find_all_files($namespace,$regex);
107 $regex = '#' . preg_quote($rootns) .'#';
110 $result[$i] = preg_replace($regex,"",$result[$i]);
124 function find_all_files($dir,$regex="") argument
131 if($regex) if(preg_match('#'. $regex .'#',"$dir/$value")) {continue;}
[all …]
/plugin/metadisplay/helper/
H A Dhtml.php132 $regex = "";
135 $regex = '/(' . $search . ')/im';
139 $regex = '/(' . $search . ')/m';
141 if($regex) {
144 if(!preg_match($regex,$description)){
150 $media = $this->check_listtypes('media',$regex);
154 $references = $this->check_listtypes('references',$regex);
172 if(!preg_match($regex,$creator) && !preg_match($regex,$creator_id)) return;
173 $creator=preg_replace($regex,"<span style='color:blue'>$1</span>",$creator);
381 function check_listtypes($which,$regex) { argument
[all …]
H A Dplaintext.php132 $regex = "";
135 $regex = '/(' . $search . ')/im';
139 $regex = '/(' . $search . ')/m';
141 if($regex) {
144 if(!preg_match($regex,$description)){
150 $media = $this->check_listtypes('media',$regex);
154 $references = $this->check_listtypes('references',$regex);
172 if(!preg_match($regex,$creator) && !preg_match($regex,$creator_id)) return;
379 function check_listtypes($which,$regex) { argument
389 if(preg_match($regex,$str)) {
[all …]

12345678910>>...16