Home
last modified time | relevance | path

Searched refs:output (Results 26 – 50 of 1255) sorted by relevance

12345678910>>...51

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dwith_filters.test8 1. Don't escape escaper filter output
10 the output is not escaped )
13 2. Don't escape escaper filter output
23 4. Escape non-escaper filter output
25 the output is auto-escaped )
42 the output is auto-escaped )
48 the output is auto-escaped )
71 the output is not escaped )
89 the output is auto-escaped )
109 the output is auto-escaped )
[all …]
/plugin/codehighlight/cp/languages/
H A Dsql.js8 { input : /\'(.*?)(\')/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …ing|valid|value|values|view|volatile|when|where|with|without|zone)\b/gi, output : '<b>$1</b>' }, /…
10 …sor|serial|serial4|serial8|smallint|text|timestamp|varbit|varchar)\b/gi, output : '<u>$1</u>' }, /…
11 …rt|revoke|rollback|select|set|show|start|truncate|unlisten|update)\b/gi, output : '<a>$1</a>' }, /…
12 { input : /([^:]|^)\-\-(.*?)(<br|<\/P)/g, output: '$1<i>--$2</i>$3' } // comments //
16 { input : 'select', output : 'select $0 from where ' }
20 { input : '\'', output : '\'$0\'' },
21 { input : '"', output : '"$0"' },
22 { input : '(', output : '\($0\)' },
23 { input : '[', output : '\[$0\]' },
[all …]
H A Dgeneric.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …ce|static|void|class|finally|long|const|float|while|function|label)\b/g, output : '<b>$1</b>' }, /…
10 { input : /([\(\){}])/g, output : '<em>$1</em>' }, // special chars;
11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments //
12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */
18 { input : '\'', output : '\'$0\'' },
19 { input : '"', output : '"$0"' },
20 { input : '(', output : '\($0\)' },
21 { input : '[', output : '\[$0\]' },
[all …]
H A Dcsharp.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
8 { input : /\'(.?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …s|throw|true|try|typeof|unchecked|unsafe|using|value|virtual|while)\b/g, output : '<b>$1</b>' }, /…
10 …{ input : /\b(bool|byte|char|class|double|float|int|interface|long|string|struct|void)\b/g, output
11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments //
12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */
18 {input : '\'',output : '\'$0\'' },
19 {input : '"', output : '"$0"' },
20 {input : '(', output : '\($0\)' },
21 {input : '[', output : '\[$0\]' },
[all …]
H A Djava.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>'}, // strings double quote
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>'}, // strings single quote
9 …lass|finally|long|strictfp|volatile|const|float|native|super|while)\b/g, output : '<b>$1</b>'}, //…
10 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3'}, // comments //
11 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' }// comments /* */
17 { input : '\'',output : '\'$0\'' },
18 { input : '"', output : '"$0"' },
19 { input : '(', output : '\($0\)' },
20 { input : '[', output : '\[$0\]' },
21 { input : '{', output : '{\n\t$0\n}' }
H A Dcss.js7 { input : /(.*?){(.*?)}/g,output : '<b>$1</b>{<u>$2</u>}' }, // tags, ids, classes, values
8 { input : /([\w-]*?):([^\/])/g,output : '<a>$1</a>:$2' }, // keys
9 { input : /\((.*?)\)/g,output : '(<s>$1</s>)' }, // parameters
10 { input : /\/\*(.*?)\*\//g,output : '<i>/*$1*/</i>'} // comments
16 { input : '\'',output : '\'$0\'' },
17 { input : '"', output : '"$0"' },
18 { input : '(', output : '\($0\)' },
19 { input : '[', output : '\[$0\]' },
20 { input : '{', output : '{\n\t$0\n}' }
/plugin/combo/vendor/symfony/yaml/
H A DDumper.php51 $output = '';
60 $output .= $prefix.Inline::dump($input, $flags);
62 $output .= $this->dumpTaggedValue($input, $inline, $indent, $flags, $prefix);
67 if ('' !== $output && "\n" !== $output[-1]) {
68 $output .= "\n";
84 $output .= sprintf('%s%s%s |%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '', $blockIndentationIndicator, $blockChompingIndicator);
88 $output .= "\n";
90 $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
98 $output
[all...]
H A DInline.php140 $output = [];
143 $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
146 return sprintf('{ %s }', implode(', ', $output));
235 $output = [];
237 $output[] = self::dump($val, $flags);
240 return sprintf('[%s]', implode(', ', $output));
244 $output = [];
246 $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
249 return sprintf('{ %s }', implode(', ', $output));
273 $output
[all...]
/plugin/newpagetemplate/
H A Dadmin.php7 private $output = ''; variable in admin_plugin_newpagetemplate
18 $this->output = '';
34 $this->output = 'submit';
37 $this->output = "The -p (--page) option requires a template";
51 $this->output = shell_exec(NEWPAGETPL_CMDL . $cmdL) ;
66 $this->output = shell_exec(NEWPAGETPL_CMDL . $cmdL) ;
69 $this->output = preg_replace("/\n+/","<br />", $this->output);
73 $this->output = shell_exec(NEWPAGETPL_CMDL .'-h') ;
74 $this->output
[all...]
/plugin/guestbook/
H A Dbasic.class.php123 $output = "";
129 $output .= $nav[0];
152 $output .= '</div>';
157 $output .= $nav[0];
164 return $output;
198 $output .= '</form>';
201 return $output;
232 $output="";
240 $output .= "-";
242 $output .= '</p></form></div>';
[all …]
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/
H A DReaderTest.php64 $output = $reader->parse();
109 $output = $reader->parse();
141 $output = $reader->parse();
176 $output = $reader->parse();
237 $output = $reader->parse();
277 $output = $reader->parse();
319 $output = $reader->parse();
352 $output = $reader->parse();
459 $output = $reader->parse();
512 $output = $reader->parse();
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DInline.php251 $output = [];
289 $output = substr($output, 0, $match[0][1]);
294 $output = trim($output);
300 …if ($output && ('@' === $output[0] || '`' === $output[0] || '|' === $output[0] || '>' === $output[…
305 $output = self::evaluateScalar($output, $flags, $references);
309 return $output;
327 $output = $unescaper->unescapeDoubleQuotedString($output);
329 $output = $unescaper->unescapeSingleQuotedString($output);
334 return $output;
344 $output = [];
[all …]
/plugin/columns/
H A Drewriter.php40 $output = array();
44 $output[] = $instruction[$i];
52 $output[] = $instruction[$i];
57 $output[] = $instruction[$i];
63 $instruction = $output;
112 public function apply($input, &$output) { argument
146 public function appendCalls(&$output, $position) { argument
165 public function apply($input, &$output) { argument
183 public function apply($input, &$output) { argument
184 $lastCall = end($output);
[all …]
/plugin/nsexport/packer/ziphtml/
H A Dpacker.php74 $output .= '<head>'.DOKU_LF;
76 $output .= ' <title>'.$ID.'</title>'.DOKU_LF;
81 $output .= '</head>'.DOKU_LF;
82 $output .= '<body>'.DOKU_LF;
83 $output .= '<div class="dokuwiki export">' . DOKU_LF;
84 $output .= tpl_toc(true);
85 $output .= $html;
86 $output .= '</div>';
87 $output .= '</body>'.DOKU_LF;
88 $output .= '</html>'.DOKU_LF;
[all …]
H A Dzip.php143 $output .= '<head>'.DOKU_LF;
145 $output .= ' <title>'.$ID.'</title>'.DOKU_LF;
150 $output .= '</head>'.DOKU_LF;
151 $output .= '<body>'.DOKU_LF;
152 $output .= '<div class="dokuwiki export">' . DOKU_LF;
153 $output .= tpl_toc(true);
154 $output .= $html;
155 $output .= '</div>';
156 $output .= '</body>'.DOKU_LF;
157 $output .= '</html>'.DOKU_LF;
[all …]
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/
H A DReaderTest.php64 $output = $reader->parse();
93 $this->assertEquals($expected, $output);
109 $output = $reader->parse();
141 $output = $reader->parse();
176 $output = $reader->parse();
216 $output = $reader->parse();
258 $output = $reader->parse();
291 $output = $reader->parse();
398 $output = $reader->parse();
451 $output = $reader->parse();
[all …]
/plugin/formatplus/syntax/
H A Dquoteplus.php56 $output = substr($match,3,-1);
58 $output = '';
61 $output = '';
64 $output = $match;
67 return array($state,$output);
71 list($state,$output) = $data;
75 if (!empty($output)) {
85 $renderer->doc .= $renderer->_xmlEntities($output);
94 if(!empty($output)){
95 $renderer->doc .= $output.':';
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DLineFormatter.php83 $output = $this->format;
87 $output = str_replace('%extra.'.$var.'%', $this->stringify($val), $output);
94 $output = str_replace('%context.'.$var.'%', $this->stringify($val), $output);
102 $output = str_replace('%context%', '', $output);
107 $output = str_replace('%extra%', '', $output);
112 if (false !== strpos($output, '%'.$var.'%')) {
113 $output = str_replace('%'.$var.'%', $this->stringify($val), $output);
118 if (false !== strpos($output, '%')) {
119 $output = preg_replace('/%(?:extra|context)\..+?%/', '', $output);
120 if (null === $output) {
[all …]
/plugin/formatplus2/syntax/
H A Dquoteplus.php56 $output = substr($match,3,-1);
58 $output = '';
61 $output = '';
64 $output = $match;
67 return array($state,$output);
71 list($state,$output) = $data;
75 if (!empty($output)) {
85 $renderer->doc .= $renderer->_xmlEntities($output);
94 if(!empty($output)){
95 $renderer->doc .= $output.':';
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php26 $output = VObject\Reader::read($output)->serialize();
43 $output = $input;
44 $tests[] = array($input,$output);
64 $output = 'BEGIN:VCALENDAR
75 $tests[] = array($input, $output);
92 $output = 'BEGIN:VCALENDAR
103 $tests[] = array($input, $output);
119 $output = 'BEGIN:VCALENDAR
183 $output = 'BEGIN:VCALENDAR
246 $output = <<<ICS
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php26 $output = VObject\Reader::read($output)->serialize();
43 $output = $input;
44 $tests[] = array($input,$output);
64 $output = 'BEGIN:VCALENDAR
75 $tests[] = array($input, $output);
92 $output = 'BEGIN:VCALENDAR
103 $tests[] = array($input, $output);
119 $output = 'BEGIN:VCALENDAR
183 $output = 'BEGIN:VCALENDAR
246 $output = <<<ICS
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php26 $output = VObject\Reader::read($output)->serialize();
43 $output = $input;
44 $tests[] = array($input,$output);
64 $output = 'BEGIN:VCALENDAR
75 $tests[] = array($input, $output);
92 $output = 'BEGIN:VCALENDAR
103 $tests[] = array($input, $output);
119 $output = 'BEGIN:VCALENDAR
183 $output = 'BEGIN:VCALENDAR
246 $output = <<<ICS
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DVCardConverter.php48 $output = new Component\VCard([
53 unset($output->UID);
56 $this->convertProperty($input, $output, $property, $targetVersion);
59 return $output;
89 $newProperty = $output->createProperty(
98 $newProperty = $this->convertUriToBinary($output, $newProperty);
123 while ($output->select('ITEM'.$x.'.')) {
235 $tempProperty = $output->createProperty($newProperty->name);
240 $output->add($newProperty);
258 $newProperty = $output->createProperty(
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DVCardConverter.php48 $output = new Component\VCard([
53 unset($output->UID);
57 $this->convertProperty($input, $output, $property, $targetVersion);
61 return $output;
91 $newProperty = $output->createProperty(
103 $newProperty = $this->convertUriToBinary($output, $newProperty);
130 while ($output->select('ITEM' . $x . '.')) {
254 $tempProperty = $output->createProperty($newProperty->name);
259 $output->add($newProperty);
279 $newProperty = $output->createProperty(
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php28 $output = VObject\Reader::read($output)->serialize();
45 $output = $input;
46 $tests[] = [$input,$output];
66 $output = 'BEGIN:VCALENDAR
77 $tests[] = [$input, $output];
94 $output = 'BEGIN:VCALENDAR
125 $output = 'BEGIN:VCALENDAR
155 $output = 'BEGIN:VCALENDAR
219 $output = 'BEGIN:VCALENDAR
282 $output = <<<ICS
[all …]

12345678910>>...51