Home
last modified time | relevance | path

Searched defs:regex (Results 51 – 75 of 164) sorted by relevance

1234567

/plugin/syntaxhighlighter/Uncompressed/
DshBrushCpp.js59 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments property
60 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments property
61 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings property
62 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings property
63 { regex: new RegExp('^ *#.*', 'gm'), css: 'preprocessor' }, property
64 { regex: new RegExp(this.GetKeywords(datatypes), 'gm'), css: 'datatypes' }, property
65 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } property
DshBrushRuby.js13 { regex: dp.sh.RegexLib.SingleLinePerlComments, css: 'comment' }, // one line comments property
14 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings property
15 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings property
16 { regex: new RegExp(':[a-z][A-Za-z0-9_]*', 'g'), css: 'symbol' }, // symbols property
17 …{ regex: new RegExp('(\\$|@@|@)\\w+', 'g'), css: 'variable' }, // $global, @instance, and @@cla… property
18 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' }, // keywords property
19 { regex: new RegExp(this.GetKeywords(builtins), 'gm'), css: 'builtin' } // builtins property
DshBrushPhp.js47 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments property
48 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments property
49 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings property
50 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings property
51 { regex: new RegExp('\\$\\w+', 'g'), css: 'vars' }, // variables property
52 { regex: new RegExp(this.GetKeywords(funcs), 'gmi'), css: 'func' }, // functions property
53 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keyword property
DshBrushJScript.js10 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments property
11 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments property
12 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings property
13 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings property
14 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg… property
15 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keywords property
DshBrushSql.js28 { regex: new RegExp('--(.*)$', 'gm'), css: 'comment' }, // one line and multiline comments property
29 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings property
30 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings property
31 { regex: new RegExp(this.GetKeywords(funcs), 'gmi'), css: 'func' }, // functions property
32 { regex: new RegExp(this.GetKeywords(operators), 'gmi'), css: 'op' }, // operators and such property
33 { regex: new RegExp(this.GetKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushCSharp.js19 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments property
20 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments property
21 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings property
22 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings property
23 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg… property
24 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // c# keyword property
/plugin/syntaxhighlighter/Scripts/
DshBrushRuby.js10 this.regexList=[{regex:dp.sh.RegexLib.SingleLinePerlComments,css:'comment'},{regex:dp.sh.RegexLib.D… property
DshBrushCSharp.js9 … ulong unchecked unsafe ushort using virtual void while';this.regexList=[{regex:dp.sh.RegexLib.Sin… property
DshBrushJScript.js9 … transient true try typeof var void volatile while with';this.regexList=[{regex:dp.sh.RegexLib.Sin… property
DshBrushSql.js9 …d any between cross in join like not null or outer some';this.regexList=[{regex:new RegExp('--(.*)… property
/plugin/syntaxhighlighter3/sxh3/src/js/
DshBrushCss.js51 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments property
52 … { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings property
53 … { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings property
54 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors property
55 { regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g, css: 'value' }, // sizes property
56 { regex: /!important/g, css: 'color3' }, // !important property
57 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords property
58 { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values property
59 { regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts property
DshBrushBash.js41 { regex: /^#!.*$/gm, css: 'preprocessor bold' }, property
42 { regex: /\/[\w-\/]+/gm, css: 'plain' }, property
43 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comme… property
44 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strin… property
45 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strin… property
46 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords property
47 { regex: new RegExp(this.getKeywords(commands), 'gm'), css: 'functions' }, // commands property
48 …{ regex: new XRegExp("(?<full_tag>(&lt;|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\… property
DshBrushColdFusion.js67 { regex: new RegExp('--(.*)$', 'gm'), css: 'comments' }, // one line and multiline comments property
68 { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // single quoted strings property
69 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted stri… property
70 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted stri… property
71 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // functions property
72 … { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such property
73 { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushJavaFX.js24 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, property
25 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, property
26 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
27 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
28 …{ regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // num… property
29 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes property
30 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property
DshBrushSql.js33 …{ regex: /--(.*)$/gm, css: 'comments' }, // one li… property
34 …{ regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multi … property
35 …{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double… property
36 …{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single… property
37 …{ regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functi… property
38 …{ regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operat… property
39 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushErlang.js19 { regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), css: 'constants' }, property
20 { regex: new RegExp("\\%.+", 'gm'), css: 'comments' }, property
21 { regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), css: 'preprocessor' }, property
22 { regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), css: 'functions' }, property
23 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
24 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
25 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property
DshBrushJScript.js18 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings property
19 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings property
20 { regex: r.singleLineCComments, css: 'comments' }, // one line comments property
21 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property
22 …{ regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endreg… property
23 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords property
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
DshBrushCss.js67 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments property
68 … { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings property
69 … { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings property
70 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors property
71 { regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g, css: 'value' }, // sizes property
72 { regex: /!important/g, css: 'color3' }, // !important property
73 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords property
74 { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values property
75 { regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts property
DshBrushBash.js57 { regex: /^#!.*$/gm, css: 'preprocessor bold' }, property
58 { regex: /\/[\w-\/]+/gm, css: 'plain' }, property
59 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comme… property
60 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strin… property
61 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strin… property
62 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords property
63 { regex: new RegExp(this.getKeywords(commands), 'gm'), css: 'functions' }, // commands property
64 …{ regex: new XRegExp("(?<full_tag>(&lt;|<){2}(?<tag>\\w+)) .*$(?<here_doc>[\\s\\S]*)(?<end_tag>^\\… property
DshBrushSql.js49 …{ regex: /--(.*)$/gm, css: 'comments' }, // one li… property
50 …{ regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multi … property
51 …{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double… property
52 …{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single… property
53 …{ regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functi… property
54 …{ regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operat… property
55 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushErlang.js35 { regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), css: 'constants' }, property
36 { regex: new RegExp("\\%.+", 'gm'), css: 'comments' }, property
37 { regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), css: 'preprocessor' }, property
38 { regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), css: 'functions' }, property
39 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
40 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
41 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property
DshBrushColdFusion.js83 { regex: new RegExp('--(.*)$', 'gm'), css: 'comments' }, // one line and multiline comments property
84 { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // single quoted strings property
85 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted stri… property
86 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted stri… property
87 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // functions property
88 … { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such property
89 { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushJavaFX.js40 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, property
41 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, property
42 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
43 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
44 …{ regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // num… property
45 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes property
46 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property
/plugin/dirtylittlehelper/mermaid/editor/docs/
D42.42.js1 …,"conf",(function(){return i})),n.d(t,"language",(function(){return o}));var i={comments:{lineComm…
/plugin/animation/scripts/
DshBrushR.js11 { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, property
12 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
13 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
14 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, property
15 { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, property
16 { regex: /[\w._]+[ \t]*(?=\()/gm, css: 'functions' }, property

1234567