Home
last modified time | relevance | path

Searched refs:XRegExp (Results 1 – 12 of 12) sorted by relevance

/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushXml.js28 tag = XRegExp.exec(code, XRegExp('(&lt;|<)[\\s\\/\\?!]*(?<name>[:\\w-\\.]+)', 'xg')),
36 regex = XRegExp('(?<name> [\\w:.-]+)' +
41 while ((attributes = XRegExp.exec(code, regex, pos)) != null)
58 …{ regex: XRegExp('(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)', 'gm'), css: 'color2' …
60 …{ regex: XRegExp('(&lt;|<)[\\s\\/\\?!]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)', 'sg'), func:…
H A DshCore.js32 var XRegExp; variable
35 XRegExp = XRegExp || (function (undef) {
1275 exports.XRegExp = self;
1290 XRegExp = require('xregexp').XRegExp;
1385 multiLineCComments : XRegExp('/\\*.*?\\*/', 'gs'),
1392 xmlComments : XRegExp('(&lt;|<)!--.*?--(&gt;|>)', 'gs'),
2011 arrayRegex = XRegExp("^\\[(?<values>(.*?))\\]$"),
2013 regex = XRegExp(
2026 while ((match = XRegExp.exec(str, regex, pos)) != null)
2035 var m = XRegExp.exec(value, arrayRegex);
[all …]
H A DshCore.min.js17XRegExp;if(XRegExp=XRegExp||function(e){"use strict";function t(e,t,n){var r;for(r in c.prototype)… variable
H A DshLegacy.js33 var regex = XRegExp('^' + name + '\\[(?<value>\\w+)\\]$', 'gi'),
38 if ((match = XRegExp.exec(list[i], regex)) != null)
H A DshBrushBash.js64 …{ regex: new XRegExp("(?<full_tag>(&lt;|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\…
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushXml.js12 tag = XRegExp.exec(code, XRegExp('(&lt;|<)[\\s\\/\\?!]*(?<name>[:\\w-\\.]+)', 'xg')),
20 regex = XRegExp('(?<name> [\\w:.-]+)' +
25 while ((attributes = XRegExp.exec(code, regex, pos)) != null)
42 …{ regex: XRegExp('(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)', 'gm'), css: 'color2' …
44 …{ regex: XRegExp('(&lt;|<)[\\s\\/\\?!]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)', 'sg'), func:…
H A DshCore.js7 if (typeof(require) != 'undefined' && typeof(XRegExp) == 'undefined')
9 XRegExp = require('xregexp').XRegExp;
104 multiLineCComments : XRegExp('/\\*.*?\\*/', 'gs'),
109 multiLineDoubleQuotedString : XRegExp('"([^\\\\"]|\\\\.)*"', 'gs'),
110 multiLineSingleQuotedString : XRegExp("'([^\\\\']|\\\\.)*'", 'gs'),
111 xmlComments : XRegExp('(&lt;|<)!--.*?--(&gt;|>)', 'gs'),
730 arrayRegex = XRegExp("^\\[(?<values>(.*?))\\]$"),
732 regex = XRegExp(
745 while ((match = XRegExp.exec(str, regex, pos)) != null)
754 var m = XRegExp.exec(value, arrayRegex);
[all …]
H A DshLegacy.js17 var regex = XRegExp('^' + name + '\\[(?<value>\\w+)\\]$', 'gi'),
22 if ((match = XRegExp.exec(list[i], regex)) != null)
H A DshBrushBash.js48 …{ regex: new XRegExp("(?<full_tag>(&lt;|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\…
/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js434 var XRegExp = __webpack_require__(3).XRegExp;
690 if (!XRegExp.isRegExp(regex)) {
1057 function XRegExp(pattern, flags) {
1141 XRegExp.prototype = new RegExp();
1155 XRegExp.version = '3.1.0-dev';
1289 XRegExp.escape = function (str) {
2331 module.exports = XRegExp;
3892 var XRegExp = __webpack_require__(3).XRegExp;
5305 var XRegExp = __webpack_require__(3).XRegExp;
5311 tag = XRegExp.exec(code, XRegExp('(&lt;|<)[\\s\\/\\?!]*(?<name>[:\\w-\\.]+)', 'xg')),
[all …]
H A Dsyntaxhighlighter.js.map1XRegExp","BOOLEANS","camelize","key","replace","word","charAt","toUpperCase","substr","process","v…
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.core.js91 if(typeof(XRegExp)!=='undefined'){rule.pattern=new XRegExp(rule.pattern);}