/plugin/codehighlight/cp/languages/ |
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 | 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 | 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 …]
|
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Component/ |
D | VCalendarTest.php | 13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument 15 $vcal = VObject\Reader::read($input); 37 $input = 'BEGIN:VCALENDAR 43 $output = $input; 44 $tests[] = array($input,$output); 48 $input = 'BEGIN:VCALENDAR 75 $tests[] = array($input, $output); 78 $input = 'BEGIN:VCALENDAR 103 $tests[] = array($input, $output); 106 $input = 'BEGIN:VCALENDAR [all …]
|
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/ |
D | VCalendarTest.php | 13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument 15 $vcal = VObject\Reader::read($input); 37 $input = 'BEGIN:VCALENDAR 43 $output = $input; 44 $tests[] = array($input,$output); 48 $input = 'BEGIN:VCALENDAR 75 $tests[] = array($input, $output); 78 $input = 'BEGIN:VCALENDAR 103 $tests[] = array($input, $output); 106 $input = 'BEGIN:VCALENDAR [all …]
|
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/ |
D | VCalendarTest.php | 13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument 15 $vcal = VObject\Reader::read($input); 37 $input = 'BEGIN:VCALENDAR 43 $output = $input; 44 $tests[] = array($input,$output); 48 $input = 'BEGIN:VCALENDAR 75 $tests[] = array($input, $output); 78 $input = 'BEGIN:VCALENDAR 103 $tests[] = array($input, $output); 106 $input = 'BEGIN:VCALENDAR [all …]
|
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/ |
D | VCalendarTest.php | 15 …function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011-12-31'… argument 17 $vcal = VObject\Reader::read($input); 39 $input = 'BEGIN:VCALENDAR 45 $output = $input; 46 $tests[] = [$input,$output]; 50 $input = 'BEGIN:VCALENDAR 77 $tests[] = [$input, $output]; 80 $input = 'BEGIN:VCALENDAR 105 $tests[] = [$input, $output]; 108 $input = 'BEGIN:VCALENDAR [all …]
|
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/ |
D | BirthdayCalendarGeneratorTest.php | 12 $input = <<<VCF 37 $generator->setObjects($input); 50 $input = []; 52 $input[] = <<<VCF 62 $input[] = <<<VCF 96 $generator->setObjects($input); 108 $input = []; 110 $input[] = <<<VCF 120 $input[] = <<<VCF 130 $generator = new BirthdayCalendarGenerator($input); [all …]
|
D | VCardConverterTest.php | 11 $input = <<<IN 42 $vcard = Reader::read($input); 54 $input = <<<IN 80 $vcard = Reader::read($input); 92 $input = <<<IN 119 $vcard = Reader::read($input); 131 $input = <<<IN 159 $vcard = Reader::read($input); 171 $input = <<<IN 200 $vcard = Reader::read($input); [all …]
|
/plugin/jplayer/vendor/symfony/process/Pipes/ |
D | AbstractPipes.php | 26 private $input; variable in Symfony\\Component\\Process\\Pipes\\AbstractPipes 33 public function __construct($input) argument 35 if (\is_resource($input) || $input instanceof \Iterator) { 36 $this->input = $input; 37 } elseif (\is_string($input)) { 38 $this->inputBuffer = $input; 40 $this->inputBuffer = (string) $input; 81 if (\is_resource($this->input)) { 82 stream_set_blocking($this->input, 0); 100 $input = $this->input; [all …]
|
/plugin/combo/vendor/symfony/process/Pipes/ |
D | AbstractPipes.php | 26 private $input; variable in Symfony\\Component\\Process\\Pipes\\AbstractPipes 33 public function __construct($input) argument 35 if (\is_resource($input) || $input instanceof \Iterator) { 36 $this->input = $input; 37 } elseif (\is_string($input)) { 38 $this->inputBuffer = $input; 40 $this->inputBuffer = (string) $input; 81 if (\is_resource($this->input)) { 82 stream_set_blocking($this->input, 0); 98 $input = $this->input; [all …]
|
/plugin/mdpage/vendor/symfony/polyfill-ctype/ |
D | bootstrap.php | 15 function ctype_alnum($input) { return p\Ctype::ctype_alnum($input); } argument 18 function ctype_alpha($input) { return p\Ctype::ctype_alpha($input); } argument 21 function ctype_cntrl($input) { return p\Ctype::ctype_cntrl($input); } argument 24 function ctype_digit($input) { return p\Ctype::ctype_digit($input); } argument 27 function ctype_graph($input) { return p\Ctype::ctype_graph($input); } argument 30 function ctype_lower($input) { return p\Ctype::ctype_lower($input); } argument 33 function ctype_print($input) { return p\Ctype::ctype_print($input); } argument 36 function ctype_punct($input) { return p\Ctype::ctype_punct($input); } argument 39 function ctype_space($input) { return p\Ctype::ctype_space($input); } argument 42 function ctype_upper($input) { return p\Ctype::ctype_upper($input); } argument [all …]
|
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ |
D | VCardConverterTest.php | 9 $input = <<<IN 40 $vcard = Reader::read($input); 52 $input = <<<IN 78 $vcard = Reader::read($input); 90 $input = <<<IN 117 $vcard = Reader::read($input); 129 $input = <<<IN 157 $vcard = Reader::read($input); 169 $input = <<<IN 198 $vcard = Reader::read($input); [all …]
|
/plugin/davcal/vendor/sabre/vobject/tests/VObject/ |
D | VCardConverterTest.php | 9 $input = <<<IN 40 $vcard = Reader::read($input); 52 $input = <<<IN 78 $vcard = Reader::read($input); 90 $input = <<<IN 117 $vcard = Reader::read($input); 129 $input = <<<IN 157 $vcard = Reader::read($input); 169 $input = <<<IN 198 $vcard = Reader::read($input); [all …]
|
/plugin/davcard/vendor/sabre/vobject/tests/VObject/ |
D | VCardConverterTest.php | 9 $input = <<<IN 40 $vcard = Reader::read($input); 52 $input = <<<IN 78 $vcard = Reader::read($input); 90 $input = <<<IN 117 $vcard = Reader::read($input); 129 $input = <<<IN 157 $vcard = Reader::read($input); 169 $input = <<<IN 198 $vcard = Reader::read($input); [all …]
|
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/ |
D | ReaderTest.php | 9 $input = <<<BLA 14 $reader->xml($input); 24 $input = <<<BLA 29 $reader->xml($input); 39 $input = <<<BLA 44 $reader->xml($input); 51 $input = <<<BLA 62 $reader->xml($input); 99 $input = <<<BLA 107 $reader->xml($input); [all …]
|
/plugin/diagramsnet/lib/math/jax/input/AsciiMath/ |
D | jax.js | 19 …input:ab,tag:"mo",output:ac,tex:null,ttype:V});B()}function r(ab){z.push(ab);B()}var D=["\uD835\uD… property
|
/plugin/combo/vendor/symfony/process/ |
D | ProcessUtils.php | 36 * @param mixed $input The input to validate 42 public static function validateInput(string $caller, $input) argument 44 if (null !== $input) { 45 if (\is_resource($input)) { 46 return $input; 48 if (\is_string($input)) { 49 return $input; 51 if (\is_scalar($input)) { 52 return (string) $input; 54 if ($input instanceof Process) { [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/davcal/vendor/sabre/xml/tests/Sabre/Xml/ |
D | ReaderTest.php | 9 $input = <<<BLA 14 $reader->xml($input); 24 $input = <<<BLA 29 $reader->xml($input); 39 $input = <<<BLA 44 $reader->xml($input); 51 $input = <<<BLA 62 $reader->xml($input); 99 $input = <<<BLA 107 $reader->xml($input); [all …]
|
/plugin/authucenter/lib/uc_client/control/ |
D | pm.php | 33 $uid = intval($this->input('uid')); 34 $more = intval($this->input('more')); 64 $fromuid = $this->input('fromuid'); 65 $msgto = $this->input('msgto'); 66 $subject = $this->input('subject'); 67 $message = $this->input('message'); 68 $replypmid = $this->input('replypmid'); 69 $isusername = $this->input('isusername'); 70 $type = $this->input('type'); 137 $this->user['uid'] = intval($this->input('uid')); [all …]
|