Home
last modified time | relevance | path

Searched refs:GetKeywords (Results 1 – 22 of 22) sorted by relevance

/plugin/syntaxhighlighter/Scripts/
H A DshBrushSql.js9 …Exp(this.GetKeywords(funcs),'gmi'),css:'func'},{regex:new RegExp(this.GetKeywords(operators),'gmi'…
H A DshBrushPython.js10 …,css:'number'},{regex:new RegExp(this.GetKeywords(keywords),'gm'),css:'keyword'},{regex:new RegExp…
H A DshBrushRuby.js10 …ss:'variable'},{regex:new RegExp(this.GetKeywords(keywords),'gm'),css:'keyword'},{regex:new RegExp…
H A DshBrushPhp.js9 …'g'),css:'vars'},{regex:new RegExp(this.GetKeywords(funcs),'gmi'),css:'func'},{regex:new RegExp(th…
H A DshBrushCpp.js9 …eprocessor'},{regex:new RegExp(this.GetKeywords(datatypes),'gm'),css:'datatypes'},{regex:new RegEx…
H A DshBrushVb.js9 …new RegExp('^\\s*#.*','gm'),css:'preprocessor'},{regex:new RegExp(this.GetKeywords(keywords),'gm')…
H A DshBrushDelphi.js9 … RegExp('\\$[a-zA-Z0-9]+\\b','g'),css:'number'},{regex:new RegExp(this.GetKeywords(keywords),'gm')…
H A DshBrushCSharp.js9 …new RegExp('^\\s*#.*','gm'),css:'preprocessor'},{regex:new RegExp(this.GetKeywords(keywords),'gm')…
H A DshBrushJScript.js9 …new RegExp('^\\s*#.*','gm'),css:'preprocessor'},{regex:new RegExp(this.GetKeywords(keywords),'gm')…
H A DshBrushJava.js9 …ew RegExp('\\@interface\\b','g'),css:'keyword'},{regex:new RegExp(this.GetKeywords(keywords),'gm')…
H A DshCore.js123 dp.sh.Highlighter.prototype.GetKeywords=function(str) method in dp.sh.Highlighter
/plugin/syntaxhighlighter/Uncompressed/
H A DshBrushSql.js31 { 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 DshBrushPython.js17 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' },
18 { regex: new RegExp(this.GetKeywords(special), 'gm'), css: 'special' }
H A DshBrushRuby.js18 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
19 { regex: new RegExp(this.GetKeywords(builtins), 'gm'), css: 'builtin' } // builtins
H A DshBrushPhp.js52 { regex: new RegExp(this.GetKeywords(funcs), 'gmi'), css: 'func' }, // functions
53 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keyword
H A DshBrushCpp.js64 { regex: new RegExp(this.GetKeywords(datatypes), 'gm'), css: 'datatypes' },
65 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' }
H A DshBrushVb.js22 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // c# keyword
H A DshBrushDelphi.js24 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keyword
H A DshBrushCSharp.js24 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // c# keyword
H A DshBrushJScript.js15 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keywords
H A DshBrushJava.js19 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // java keyword
H A DshCore.js560 dp.sh.Highlighter.prototype.GetKeywords = function(str) method in dp.sh.Highlighter