Home
last modified time | relevance | path

Searched defs:output (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/plugin/codehighlight/cp/languages/
Dxsl.js9 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 …]
Dasp.js8 { input : /(&lt;[^!%|!%@]*?&gt;)/g, output : '<b>$1</b>' }, property
10 …{ input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property
12 …{ input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/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 : /(&lt;%)/g, output : '<strong>$1' }, property
20 { input : /(%&gt;)/g, output : '$1</strong>' }, property
22 { input : /(&lt;%@)(.+?)(%&gt;)/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 …]
Dvbscript.js8 { input : /(&lt;[^!%|!%@]*?&gt;)/g, output : '<b>$1</b>' }, property
10 …{ input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property
12 …{ input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/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 : /(&lt;%)/g, output : '<strong>$1' }, property
20 { input : /(%&gt;)/g, output : '$1</strong>' }, property
22 { input : /(&lt;%@)(.+?)(%&gt;)/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 …]
Dphp.js7 { input : /(&lt;[^!\?]*?&gt;)/g, output : '<b>$1</b>' }, // all tags property
8 …{ input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property
9 …{ input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/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 : /(&lt;\?)/g, output : '<strong>$1' }, // <?.* property
13 { input : /(\?&gt;)/g, output : '$1</strong>' }, // .*?> property
14 { input : /(&lt;\?php|&lt;\?=|&lt;\?|\?&gt;)/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 …]
Dhtml.js7 { input : /(&lt;[^!]*?&gt;)/g, output : '<b>$1</b>' }, // all tags property
8 { input : /(&lt;a .*?&gt;|&lt;\/a&gt;)/g, output : '<a>$1</a>' }, // links property
9 { input : /(&lt;img .*?&gt;)/g, output : '<big>$1</big>' }, // images property
10 …{ input : /(&lt;\/?(button|textarea|form|input|select|option|label).*?&gt;)/g, output : '<u>$1</u>… property
11 …{ input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property
12 …{ input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/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 : /(&lt;!--.*?--&gt.)/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 …]
Dautoit.js8 { 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 …]
Djavascript.js7 { 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 …]
Dperl.js8 { 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 …]
Druby.js7 { 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 …]
Dcsharp.js7 { 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 …]
Dgeneric.js7 { 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 …]
Dsql.js8 { 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 …]
Djava.js7 { 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
Dcss.js7 { 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/
Doutput.js666 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/
Doutput.js484 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/
Dasciimathml148r.js97 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/
Djax.js19 …childNodes=[]},appendChild:function(ab){if(ab.parent){ab.parent.removeChild(ab)}if(this.lastChild)…
/plugin/webdav/vendor/sabre/vobject/lib/
DVCardConverter.php70 …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/
DVCardConverter.php71 …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/
DVCardConverter.php71 …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/
DVCardConverter.php75 …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/
DVCardConverter.php71 …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/
DFunctionsTest.php10 function testGetHeaderValues($input, $output) {
49 function testPrefer($input, $output) {
/plugin/columns/
Drewriter.php112 public function apply($input, &$output) {
146 public function appendCalls(&$output, $position) {
165 public function apply($input, &$output) {
183 public function apply($input, &$output) {

12345678910>>...12