Home
last modified time | relevance | path

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

/plugin/syntaxhighlighter3/sxh3/src/js/
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:…
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 …]
DshLegacy.js17 var regex = XRegExp('^' + name + '\\[(?<value>\\w+)\\]$', 'gi'),
22 if ((match = XRegExp.exec(list[i], regex)) != null)
DshBrushBash.js48 …{ regex: new XRegExp("(?<full_tag>(&lt;|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\…
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
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:…
DshCore.js32 var XRegExp; variable
35 XRegExp = XRegExp || (function (undef) {
1275 exports.XRegExp = self;
1288 if (typeof(require) != 'undefined' && typeof(XRegExp) == 'undefined')
1290 XRegExp = require('xregexp').XRegExp;
1385 multiLineCComments : XRegExp('/\\*.*?\\*/', 'gs'),
1390 multiLineDoubleQuotedString : XRegExp('"([^\\\\"]|\\\\.)*"', 'gs'),
1391 multiLineSingleQuotedString : XRegExp("'([^\\\\']|\\\\.)*'", 'gs'),
1392 xmlComments : XRegExp('(&lt;|<)!--.*?--(&gt;|>)', 'gs'),
2011 arrayRegex = XRegExp("^\\[(?<values>(.*?))\\]$"),
[all …]
DshCore.min.js17XRegExp;if(XRegExp=XRegExp||function(e){"use strict";function t(e,t,n){var r;for(r in c.prototype)… variable
DshLegacy.js33 var regex = XRegExp('^' + name + '\\[(?<value>\\w+)\\]$', 'gi'),
38 if ((match = XRegExp.exec(list[i], regex)) != null)
DshBrushBash.js64 …{ regex: new XRegExp("(?<full_tag>(&lt;|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\…
/plugin/syntaxhighlighter4/dist/
Dsyntaxhighlighter.js434 var XRegExp = __webpack_require__(3).XRegExp;
460 arrayRegex = XRegExp("^\\[(?<values>(.*?))\\]$"),
462 regex = XRegExp("(?<name>[\\w-]+)" + "\\s*:\\s*" + "(?<value>" + "[\\w%#-]+|" + // word
468 while ((match = XRegExp.exec(str, regex, pos)) != null) {
474 var m = XRegExp.exec(value, arrayRegex);
496 exports.commonRegExp = exports.XRegExp = undefined;
504 exports.XRegExp = _xregexp2.default;
644 regex.__proto__ = XRegExp.prototype;
646 for (p in XRegExp.prototype) {
650 regex[p] = XRegExp.prototype[p];
[all …]
Dsyntaxhighlighter.js.map1XRegExp","BOOLEANS","camelize","key","replace","word","charAt","toUpperCase","substr","process","v…
/plugin/jquery-syntax/jquery-syntax/
Djquery.syntax.core.js91 if(typeof(XRegExp)!=='undefined'){rule.pattern=new XRegExp(rule.pattern);}