Searched refs:XRegExp (Results 1 – 12 of 12) sorted by relevance
/plugin/syntaxhighlighter3/sxh3/src/js/ |
D | shBrushXml.js | 12 tag = XRegExp.exec(code, XRegExp('(<|<)[\\s\\/\\?!]*(?<name>[:\\w-\\.]+)', 'xg')), 20 regex = XRegExp('(?<name> [\\w:.-]+)' + 25 while ((attributes = XRegExp.exec(code, regex, pos)) != null) 42 …{ regex: XRegExp('(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)', 'gm'), css: 'color2' … 44 …{ regex: XRegExp('(<|<)[\\s\\/\\?!]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(>|>)', 'sg'), func:…
|
D | shCore.js | 7 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('(<|<)!--.*?--(>|>)', '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 …]
|
D | shLegacy.js | 17 var regex = XRegExp('^' + name + '\\[(?<value>\\w+)\\]$', 'gi'), 22 if ((match = XRegExp.exec(list[i], regex)) != null)
|
D | shBrushBash.js | 48 …{ regex: new XRegExp("(?<full_tag>(<|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\…
|
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/ |
D | shBrushXml.js | 28 tag = XRegExp.exec(code, XRegExp('(<|<)[\\s\\/\\?!]*(?<name>[:\\w-\\.]+)', 'xg')), 36 regex = XRegExp('(?<name> [\\w:.-]+)' + 41 while ((attributes = XRegExp.exec(code, regex, pos)) != null) 58 …{ regex: XRegExp('(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)', 'gm'), css: 'color2' … 60 …{ regex: XRegExp('(<|<)[\\s\\/\\?!]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(>|>)', 'sg'), func:…
|
D | shCore.js | 32 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('(<|<)!--.*?--(>|>)', 'gs'), 2011 arrayRegex = XRegExp("^\\[(?<values>(.*?))\\]$"), [all …]
|
D | shCore.min.js | 17 …XRegExp;if(XRegExp=XRegExp||function(e){"use strict";function t(e,t,n){var r;for(r in c.prototype)… variable
|
D | shLegacy.js | 33 var regex = XRegExp('^' + name + '\\[(?<value>\\w+)\\]$', 'gi'), 38 if ((match = XRegExp.exec(list[i], regex)) != null)
|
D | shBrushBash.js | 64 …{ regex: new XRegExp("(?<full_tag>(<|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\…
|
/plugin/syntaxhighlighter4/dist/ |
D | syntaxhighlighter.js | 434 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 …]
|
D | syntaxhighlighter.js.map | 1 …XRegExp","BOOLEANS","camelize","key","replace","word","charAt","toUpperCase","substr","process","v…
|
/plugin/jquery-syntax/jquery-syntax/ |
D | jquery.syntax.core.js | 91 if(typeof(XRegExp)!=='undefined'){rule.pattern=new XRegExp(rule.pattern);}
|