/plugin/codehighlight/cp/languages/ |
D | xsl.js | 9 output : '<b>$1</b>' // all tags property 12 output : '<a>$1</a>' // links property 15 output : '<big>$1</big>' // images property 18 output : '<u>$1</u>' // forms property 21 output : '<em>$1</em><em>$2</em><em>$3</em>' // style tags property 24 output : '<strong>$1</strong><tt>$2</tt><strong>$3</strong>' // script tags property 27 output : '<xsl>$1</xsl>' // xsl property 30 output : '=<s>$1</s>' // atributes double quote property 33 output : '=<s>$1</s>' // atributes single quote property 36 output : '<ins>$1</ins>' // comments 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 …Const|Dim|Do|Each|Else|ElseIf|Empty|End|Eqv|Exit|False|For|Function)\b/gi, output : '<a>$1</a>' }, 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 …Const|Dim|Do|Each|Else|ElseIf|Empty|End|Eqv|Exit|False|For|Function)\b/gi, output : '<a>$1</a>' }, 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 …tends|public|private|protected|abstract|clone|try|catch|throw|this)\b/g, output : '<u>$1</u>' }, /… 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 …|switch|var|with|catch|boolean|int|try|false|throws|null|true|goto)\b/g, output : '<i>$1</i>' } //… 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 …etTitle|AutoItWinSetTitle|Beep|Binary|BinaryLen|BinaryMid|BinaryToString|BitAND|BitNOT|BitOR|BitSH… [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 …|switch|var|with|catch|boolean|int|try|false|throws|null|true|goto)\b/g, output : '<b>$1</b>' }, /… property 10 …|onload|toString|onunload|unescape|open|valueOf|window|onmouseover)\b/g, output : '<u>$1</u>' }, /… 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 …hift|untie|use|utime|values|vec|waitpid|wantarray|warn|while|write)\b/g, output : '<b>$1</b>' }, /… 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 …ry|return|self|super|then|true|undef|unless|until|when|while|yield)\b/g, output : '<b>$1</b>' }, /… 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 …s|throw|true|try|typeof|unchecked|unsafe|using|value|virtual|while)\b/g, output : '<b>$1</b>' }, /… 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 …ce|static|void|class|finally|long|const|float|while|function|label)\b/g, output : '<b>$1</b>' }, /… 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 …ing|valid|value|values|view|volatile|when|where|with|without|zone)\b/gi, output : '<b>$1</b>' }, /… property 10 …sor|serial|serial4|serial8|smallint|text|timestamp|varbit|varchar)\b/gi, output : '<u>$1</u>' }, /… property 11 …rt|revoke|rollback|select|set|show|start|truncate|unlisten|update)\b/gi, output : '<a>$1</a>' }, /… 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 …lass|finally|long|strictfp|volatile|const|float|native|super|while)\b/g, output : '<b>$1</b>'}, //… 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/asciidocjs/node_modules/uglify-js/lib/ |
D | output.js | 666 function needs_parens_function(output) { argument 687 function needs_parens_obj(output) { argument 692 function needs_parens_unary(output) { argument 712 PARENS(AST_Sequence, function(output) { argument 759 PARENS(AST_Binary, function(output) { argument 793 PARENS(AST_PropAccess, function(output) { argument 809 PARENS(AST_Call, function(output) { argument 827 PARENS(AST_New, function(output) { argument 838 PARENS(AST_Number, function(output) { argument 845 function needs_parens_assign_cond(self, output) { argument [all …]
|
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
D | output.js | 484 AST_Node.DEFMETHOD("add_comments", function(output){ argument 566 PARENS(AST_Function, function(output){ argument 581 PARENS(AST_Object, function(output){ argument 585 PARENS(AST_Unary, function(output){ argument 591 PARENS(AST_Seq, function(output){ argument 605 PARENS(AST_Binary, function(output){ argument 628 PARENS(AST_PropAccess, function(output){ argument 648 PARENS(AST_Call, function(output){ argument 662 PARENS(AST_New, function(output){ argument 670 PARENS(AST_Number, function(output){ argument [all …]
|
/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/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/webdav/vendor/sabre/vobject/lib/ |
D | VCardConverter.php | 70 …onvertProperty(Component\VCard $input, Component\VCard $output, Property $property, $targetVersion) 255 …ction convertBinaryToUri(Component\VCard $output, Property\Binary $newProperty, array &$parameters) 307 protected function convertUriToBinary(Component\VCard $output, Property\Uri $newProperty)
|
/plugin/davcard/vendor/sabre/vobject/lib/ |
D | VCardConverter.php | 71 …vertProperty(Component\VCard $input, Component\VCard $output, Property $property, $targetVersion) { 271 …ion convertBinaryToUri(Component\VCard $output, Property\Binary $newProperty, array &$parameters) { 324 protected function convertUriToBinary(Component\VCard $output, Property\Uri $newProperty) {
|
/plugin/webdavclient/vendor/sabre/vobject/lib/ |
D | VCardConverter.php | 71 …vertProperty(Component\VCard $input, Component\VCard $output, Property $property, $targetVersion) { 271 …ion convertBinaryToUri(Component\VCard $output, Property\Binary $newProperty, array &$parameters) { 324 protected function convertUriToBinary(Component\VCard $output, Property\Uri $newProperty) {
|
/plugin/icalevents/vendor/sabre/vobject/lib/ |
D | VCardConverter.php | 75 …vertProperty(Component\VCard $input, Component\VCard $output, Property $property, $targetVersion) { 276 …ion convertBinaryToUri(Component\VCard $output, Property\Binary $newProperty, array &$parameters) { 330 protected function convertUriToBinary(Component\VCard $output, Property\Uri $newProperty) {
|
/plugin/davcal/vendor/sabre/vobject/lib/ |
D | VCardConverter.php | 71 …vertProperty(Component\VCard $input, Component\VCard $output, Property $property, $targetVersion) { 271 …ion convertBinaryToUri(Component\VCard $output, Property\Binary $newProperty, array &$parameters) { 324 protected function convertUriToBinary(Component\VCard $output, Property\Uri $newProperty) {
|
/plugin/davcal/vendor/sabre/http/tests/HTTP/ |
D | FunctionsTest.php | 10 function testGetHeaderValues($input, $output) { 49 function testPrefer($input, $output) {
|
/plugin/columns/ |
D | rewriter.php | 112 public function apply($input, &$output) { 146 public function appendCalls(&$output, $position) { 165 public function apply($input, &$output) { 183 public function apply($input, &$output) {
|