/plugin/codehighlight/cp/languages/ |
D | xsl.js | 8 input : /(<[^!]*?>)/g, property 11 input : /(<a.*?>|<\/a>)/g, property 14 input : /(<img .*?>)/g, property 17 input : /(<\/?(button|textarea|form|input|select|option|label).*?>)/g, property 20 input : /(<style.*?>)(.*?)(<\/style>)/g, property 23 input : /(<script.*?>)(.*?)(<\/script>)/g, property 26 input : /(<xsl.*?>|<\/xsl.*?>)/g, property 29 input : /=(".*?")/g, property 32 input : /=('.*?')/g, property 35 input : /(<!--.*?-->.)/g, property [all …]
|
D | asp.js | 8 { input : /(<[^!%|!%@]*?>)/g, output : '<b>$1</b>' }, property 10 …{ input : /(<style.*?>)(.*?)(<\/style>)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property 12 …{ input : /(<script.*?>)(.*?)(<\/script>)/g, output : '<ins>$1</ins><ins>$2</ins><ins>… property 14 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, property 16 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<dfn>\'$1$2</dfn>'}, property 18 { input : /(<%)/g, output : '<strong>$1' }, property 20 { input : /(%>)/g, output : '$1</strong>' }, property 22 { input : /(<%@)(.+?)(%>)/gi, output : '$1<span>$2</span>$3' }, property 24 { input : /\b([\d]+)\b/g, output : '<var>$1</var>' }, property 26 …{ input : /\b(And|As|ByRef|ByVal|Call|Case|Class|Const|Dim|Do|Each|Else|ElseIf|Empty|End|Eqv|Exit|… property [all …]
|
D | vbscript.js | 8 { input : /(<[^!%|!%@]*?>)/g, output : '<b>$1</b>' }, property 10 …{ input : /(<style.*?>)(.*?)(<\/style>)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property 12 …{ input : /(<script.*?>)(.*?)(<\/script>)/g, output : '<ins>$1</ins><ins>$2</ins><ins>… property 14 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, property 16 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<dfn>\'$1$2</dfn>'}, property 18 { input : /(<%)/g, output : '<strong>$1' }, property 20 { input : /(%>)/g, output : '$1</strong>' }, property 22 { input : /(<%@)(.+?)(%>)/gi, output : '$1<span>$2</span>$3' }, property 24 { input : /\b([\d]+)\b/g, output : '<var>$1</var>' }, property 26 …{ input : /\b(And|As|ByRef|ByVal|Call|Case|Class|Const|Dim|Do|Each|Else|ElseIf|Empty|End|Eqv|Exit|… property [all …]
|
D | php.js | 7 { input : /(<[^!\?]*?>)/g, output : '<b>$1</b>' }, // all tags property 8 …{ input : /(<style.*?>)(.*?)(<\/style>)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property 9 …{ input : /(<script.*?>)(.*?)(<\/script>)/g, output : '<ins>$1</ins><ins>$2</ins><ins>… property 10 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property 11 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>'}, // strings single quote property 12 { input : /(<\?)/g, output : '<strong>$1' }, // <?.* property 13 { input : /(\?>)/g, output : '$1</strong>' }, // .*?> property 14 { input : /(<\?php|<\?=|<\?|\?>)/g, output : '<cite>$1</cite>' }, // php tags property 15 { input : /(\$[\w\.]*)/g, output : '<a>$1</a>' }, // vars property 16 …{ input : /\b(false|true|and|or|xor|__FILE__|exception|__LINE__|array|as|break|case|class|const|co… property [all …]
|
D | html.js | 7 { input : /(<[^!]*?>)/g, output : '<b>$1</b>' }, // all tags property 8 { input : /(<a .*?>|<\/a>)/g, output : '<a>$1</a>' }, // links property 9 { input : /(<img .*?>)/g, output : '<big>$1</big>' }, // images property 10 …{ input : /(<\/?(button|textarea|form|input|select|option|label).*?>)/g, output : '<u>$1</u>… property 11 …{ input : /(<style.*?>)(.*?)(<\/style>)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property 12 …{ input : /(<script.*?>)(.*?)(<\/script>)/g, output : '<strong>$1</strong><tt>$2</tt><… property 13 { input : /=(".*?")/g, output : '=<s>$1</s>' }, // atributes double quote property 14 { input : /=('.*?')/g, output : '=<s>$1</s>' }, // atributes single quote property 15 { input : /(<!--.*?-->.)/g, output : '<ins>$1</ins>' }, // comments property 16 …{ input : /\b(alert|window|document|break|continue|do|for|new|this|void|case|default|else|function… property [all …]
|
D | autoit.js | 8 { input : /({|}|\(|\))/g, output : '<b>$1</b>' }, // Brackets property 9 { input : /(\*|\+|-)/g, output : '<b>$1</b>' }, // Operator property 10 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : "<s>\"$1$2</s>" }, // strings double property 11 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single property 12 { input : /\b([\d]+)\b/g, output : '<ins>$1</ins>' }, // Numbers property 13 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' }, // Directives and Includes property 14 { input : /(\$[\w\.]*)/g, output : '<var>$1</var>' }, // vars property 15 { input : /(_[\w\.]*)/g, output : '<a>$1</a>' }, // underscored word property 16 { input : /(\@[\w\.]*)/g, output : '<em>$1</em>' }, // Macros property 17 …{ input : /\b(Abs|ACos|AdlibDisable|AdlibEnable|Asc|AscW|ASin|Assign|ATan|AutoItSetOption|AutoItWi… property [all …]
|
D | javascript.js | 7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property 8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote property 9 …{ input : /\b(break|continue|do|for|new|this|void|case|default|else|function|return|typeof|while|i… property 10 …{ input : /\b(alert|isNaN|parent|Array|parseFloat|parseInt|blur|clearTimeout|prompt|prototype|clos… property 11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments // property 12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */ property 16 { input : 'dw', output : 'document.write(\'$0\');' }, property 17 { input : 'getid', output : 'document.getElementById(\'$0\')' }, property 18 { input : 'fun', output : 'function $0(){\n\t\n}' }, property 19 { input : 'func', output : 'function $0(){\n\t\n}' } property [all …]
|
D | perl.js | 8 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property 9 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote property 10 { input : /([\$\@\%][\w\.]*)/g, output : '<a>$1</a>' }, // vars property 11 { input : /(sub\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions property 12 …{ input : /\b(abs|accept|alarm|atan2|bind|binmode|bless|caller|chdir|chmod|chomp|chop|chown|chr|c… property 13 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars property 14 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments property 20 { input : '\'',output : '\'$0\'' }, property 21 { input : '"', output : '"$0"' }, property 22 { input : '(', output : '\($0\)' }, property [all …]
|
D | ruby.js | 7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property 8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote property 9 { input : /([\$\@\%]+)([\w\.]*)/g, output : '<a>$1$2</a>' }, // vars property 10 { input : /(def\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions property 11 …{ input : /\b(alias|and|BEGIN|begin|break|case|class|def|defined|do|else|elsif|END|end|ensure|fals… property 12 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars property 13 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments property 19 { input : '\'',output : '\'$0\'' }, property 20 { input : '"', output : '"$0"' }, property 21 { input : '(', output : '\($0\)' }, property [all …]
|
D | csharp.js | 7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property 8 { input : /\'(.?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote property 9 …{ input : /\b(abstract|as|base|break|case|catch|checked|continue|default|delegate|do|else|event|ex… property 10 …{ input : /\b(bool|byte|char|class|double|float|int|interface|long|string|struct|void)\b/g, output… property 11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments // property 12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */ property 18 {input : '\'',output : '\'$0\'' }, property 19 {input : '"', output : '"$0"' }, property 20 {input : '(', output : '\($0\)' }, property 21 {input : '[', output : '\[$0\]' }, property [all …]
|
D | generic.js | 7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property 8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote property 9 …{ input : /\b(abstract|continue|for|new|switch|default|goto|boolean|do|if|private|this|break|doubl… property 10 { input : /([\(\){}])/g, output : '<em>$1</em>' }, // special chars; property 11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments // property 12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */ property 18 { input : '\'', output : '\'$0\'' }, property 19 { input : '"', output : '"$0"' }, property 20 { input : '(', output : '\($0\)' }, property 21 { input : '[', output : '\[$0\]' }, property [all …]
|
D | sql.js | 8 { input : /\'(.*?)(\')/g, output : '<s>\'$1$2</s>' }, // strings single quote property 9 …{ input : /\b(add|after|aggregate|alias|all|and|as|authorization|between|by|cascade|cache|cache|ca… property 10 …{ input : /\b(bigint|bigserial|bit|boolean|box|bytea|char|character|cidr|circle|date|decimal|doubl… property 11 …{ input : /\b(abort|alter|analyze|begin|checkpoint|close|cluster|comment|commit|copy|create|deallo… property 12 { input : /([^:]|^)\-\-(.*?)(<br|<\/P)/g, output: '$1<i>--$2</i>$3' } // comments // property 16 { input : 'select', output : 'select $0 from where ' } property 20 { input : '\'', output : '\'$0\'' }, property 21 { input : '"', output : '"$0"' }, property 22 { input : '(', output : '\($0\)' }, property 23 { input : '[', output : '\[$0\]' }, property [all …]
|
D | java.js | 7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>'}, // strings double quote property 8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>'}, // strings single quote property 9 …{ input : /\b(abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do… property 10 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3'}, // comments // property 11 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' }// comments /* */ property 17 { input : '\'',output : '\'$0\'' }, property 18 { input : '"', output : '"$0"' }, property 19 { input : '(', output : '\($0\)' }, property 20 { input : '[', output : '\[$0\]' }, property 21 { input : '{', output : '{\n\t$0\n}' } property
|
D | css.js | 7 { input : /(.*?){(.*?)}/g,output : '<b>$1</b>{<u>$2</u>}' }, // tags, ids, classes, values property 8 { input : /([\w-]*?):([^\/])/g,output : '<a>$1</a>:$2' }, // keys property 9 { input : /\((.*?)\)/g,output : '(<s>$1</s>)' }, // parameters property 10 { input : /\/\*(.*?)\*\//g,output : '<i>/*$1*/</i>'} // comments property 16 { input : '\'',output : '\'$0\'' }, property 17 { input : '"', output : '"$0"' }, property 18 { input : '(', output : '\($0\)' }, property 19 { input : '[', output : '\[$0\]' }, property 20 { input : '{', output : '{\n\t$0\n}' } property
|
/plugin/mdpage/vendor/symfony/polyfill-ctype/ |
D | bootstrap.php | 15 function ctype_alnum($input) { return p\Ctype::ctype_alnum($input); } 18 function ctype_alpha($input) { return p\Ctype::ctype_alpha($input); } 21 function ctype_cntrl($input) { return p\Ctype::ctype_cntrl($input); } 24 function ctype_digit($input) { return p\Ctype::ctype_digit($input); } 27 function ctype_graph($input) { return p\Ctype::ctype_graph($input); } 30 function ctype_lower($input) { return p\Ctype::ctype_lower($input); } 33 function ctype_print($input) { return p\Ctype::ctype_print($input); } 36 function ctype_punct($input) { return p\Ctype::ctype_punct($input); } 39 function ctype_space($input) { return p\Ctype::ctype_space($input); } 42 function ctype_upper($input) { return p\Ctype::ctype_upper($input); } [all …]
|
/plugin/scrape/vendor/scotteh/php-dom-wrapper/src/Traits/ |
D | ManipulationTrait.php | 47 protected function inputPrepareAsTraversable($input): iterable { 72 protected function inputAsNodeList($input, $cloneForManipulate = true): NodeList { 97 protected function inputAsFirstNode($input): ?\DOMNode { 123 protected function manipulateNodesWithInput($input, callable $callback): self { 184 public function substituteWith($input): self { 199 public function text($input = null) { 221 public function setText($input): self { 242 public function precede($input): self { 257 public function follow($input): self { 276 public function prependWith($input): self { [all …]
|
D | TraversalTrait.php | 82 protected function getNodesMatchingInput($input, bool $matchType = true): NodeList { 122 public function is($input): bool { 131 public function not($input): NodeList { 140 public function filter($input): NodeList { 149 public function has($input): NodeList { 206 public function precedingUntil($input = null, $selector = null): NodeList { 234 public function followingUntil($input = null, $selector = null): NodeList { 309 public function parentsUntil($input = null, $selector = null): NodeList { 341 public function closest($input) { 371 public function add($input): NodeList { [all …]
|
/plugin/diagramsnet/lib/math/jax/input/AsciiMath/ |
D | jax.js | 19 …childNodes=[]},appendChild:function(ab){if(ab.parent){ab.parent.removeChild(ab)}if(this.lastChild)…
|
/plugin/asciimath/ |
D | asciimathml148r.js | 97 var AMsqrt = {input:"sqrt", tag:"msqrt", output:"sqrt", tex:null, ttype:UNARY}, property 98 AMroot = {input:"root", tag:"mroot", output:"root", tex:null, ttype:BINARY}, property 99 AMfrac = {input:"frac", tag:"mfrac", output:"/", tex:null, ttype:BINARY}, property 100 AMdiv = {input:"/", tag:"mfrac", output:"/", tex:null, ttype:INFIX}, property 101 AMover = {input:"stackrel", tag:"mover", output:"stackrel", tex:null, ttype:BINARY}, property 102 AMsub = {input:"_", tag:"msub", output:"_", tex:null, ttype:INFIX}, property 103 AMsup = {input:"^", tag:"msup", output:"^", tex:null, ttype:INFIX}, property 104 AMtext = {input:"text", tag:"mtext", output:"text", tex:null, ttype:TEXT}, property 105 AMmbox = {input:"mbox", tag:"mtext", output:"mbox", tex:null, ttype:TEXT}, property 106 AMquote = {input:"\"", tag:"mtext", output:"mbox", tex:null, ttype:TEXT}; property [all …]
|
/plugin/combo/resources/webcode/ |
D | webcode-console.js | 36 let printTable = function (input) { argument 103 let printLog = function (input) { argument 162 exp.addLogEntry = function (input) { argument 168 exp.addTableEntry = function (input) { argument 190 window.console.log = function (input) { argument 195 window.console.table = function (input) { argument
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/ |
D | LexerATNSimulator.php | 121 public function match(CharStream $input, int $mode) : int 158 protected function matchATN(CharStream $input) : int 187 protected function execATN(CharStream $input, DFAState $ds0) : int 295 protected function computeTargetState(CharStream $input, DFAState $s, int $t) : DFAState 319 …protected function failOrAccept(SimState $prevAccept, CharStream $input, ATNConfigSet $reach, int … 359 CharStream $input, 418 CharStream $input, 448 protected function computeStartState(CharStream $input, ATNState $p) : OrderedATNConfigSet 472 CharStream $input, 559 CharStream $input, [all …]
|
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/ |
D | MimeDir.php | 33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir 52 public function parse($input = null, $options = null) { 75 public function setInput($input) { 481 static public function unescapeValue($input, $delimiter = ';') { 560 private function unescapeParam($input) {
|
/plugin/davcard/vendor/sabre/vobject/lib/Parser/ |
D | MimeDir.php | 33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir 52 public function parse($input = null, $options = null) { 75 public function setInput($input) { 481 static public function unescapeValue($input, $delimiter = ';') { 560 private function unescapeParam($input) {
|
/plugin/davcal/vendor/sabre/vobject/lib/Parser/ |
D | MimeDir.php | 33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir 52 public function parse($input = null, $options = null) { 75 public function setInput($input) { 481 static public function unescapeValue($input, $delimiter = ';') { 560 private function unescapeParam($input) {
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/ |
D | index.js | 48 export function parse(input, options) { argument 56 export function parseExpressionAt(input, pos, options) { argument 65 export function tokenizer(input, options) { argument
|