Home
last modified time | relevance | path

Searched refs:input (Results 26 – 50 of 1180) sorted by relevance

12345678910>>...48

/plugin/darcs/
H A Dadmin.php110 '<input type="hidden" name="id" value="'.$ID.'" />'.
113 '<input type="hidden" name="darcs_do" value="apply_all" />'.
127 '<input type="hidden" name="id" value="'.$ID.'" />'.
174 '<input type="hidden" name="id" value="'.$ID.'" />'.
177 '<input type="hidden" name="darcs_do" value="get_plugin" />'.
178 '<input name="plugin_url" value="http://" />'.
234 '<input type="hidden" name="id" value="'.$ID.'" />'.
237 '<input type="hidden" name="darcs_do" value="do_remove"/>'.
246 '<html><input type="checkbox" checked="checked"'.
270 '<input type="hidden" name="id" value="'.$ID.'" />'.
[all …]
/plugin/jplayer/vendor/symfony/process/
H A DProcessUtils.php93 if (null !== $input) {
94 if (\is_resource($input)) {
95 return $input;
97 if (\is_string($input)) {
98 return $input;
100 if (is_scalar($input)) {
101 return (string) $input;
103 if ($input instanceof Process) {
104 return $input->getIterator($input::ITER_SKIP_ERR);
107 return $input;
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
H A DJson.php27 protected $input; variable in Sabre\\VObject\\Parser\\Json
51 if (!is_null($input)) {
52 $this->setInput($input);
54 if (is_null($this->input)) {
62 switch ($this->input[0]) {
82 $this->input = null;
184 if (is_resource($input)) {
185 $input = stream_get_contents($input);
187 if (is_string($input)) {
188 $input = json_decode($input);
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
H A DJson.php27 protected $input; variable in Sabre\\VObject\\Parser\\Json
50 if (!is_null($input)) {
51 $this->setInput($input);
53 if (is_null($this->input)) {
61 switch($this->input[0]) {
75 if (isset($this->input[2])) foreach($this->input[2] as $comp) {
80 $this->input = null;
185 $input = stream_get_contents($input);
187 if (is_string($input)) {
188 $input = json_decode($input);
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DJson.php26 protected $input; variable in Sabre\\VObject\\Parser\\Json
50 if (!is_null($input)) {
51 $this->setInput($input);
61 switch ($this->input[0]) {
75 if (isset($this->input[2])) foreach ($this->input[2] as $comp) {
80 $this->input = null;
185 function setInput($input) { argument
188 $input = stream_get_contents($input);
190 if (is_string($input)) {
191 $input = json_decode($input);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
H A DJson.php27 protected $input; variable in Sabre\\VObject\\Parser\\Json
50 if (!is_null($input)) {
51 $this->setInput($input);
53 if (is_null($this->input)) {
61 switch($this->input[0]) {
75 if (isset($this->input[2])) foreach($this->input[2] as $comp) {
80 $this->input = null;
185 $input = stream_get_contents($input);
187 if (is_string($input)) {
188 $input = json_decode($input);
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DJson.php27 protected $input; variable in Sabre\\VObject\\Parser\\Json
50 if (!is_null($input)) {
51 $this->setInput($input);
53 if (is_null($this->input)) {
61 switch($this->input[0]) {
75 if (isset($this->input[2])) foreach($this->input[2] as $comp) {
80 $this->input = null;
185 $input = stream_get_contents($input);
187 if (is_string($input)) {
188 $input = json_decode($input);
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Element/
H A DPropTest.php13 $input = <<<XML
24 $this->assertDecodeProp($input, $expected);
29 $input = <<<XML
37 $this->assertDecodeProp($input, $expected);
42 $input = <<<XML
53 $this->assertDecodeProp($input, $expected);
58 $input = <<<XML
78 $input = <<<XML
105 $input = <<<XML
127 $input = <<<XML
[all …]
/plugin/codehighlight/cp/languages/
H A Dperl.js8 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
9 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
10 { input : /([\$\@\%][\w\.]*)/g, output : '<a>$1</a>' }, // vars
11 { input : /(sub\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions
13 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars
14 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments
20 { input : '\'',output : '\'$0\'' },
21 { input : '"', output : '"$0"' },
22 { input : '(', output : '\($0\)' },
23 { input : '[', output : '\[$0\]' },
[all …]
H A Druby.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 { input : /([\$\@\%]+)([\w\.]*)/g, output : '<a>$1$2</a>' }, // vars
10 { input : /(def\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions
12 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars
13 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments
19 { input : '\'',output : '\'$0\'' },
20 { input : '"', output : '"$0"' },
21 { input : '(', output : '\($0\)' },
22 { input : '[', output : '\[$0\]' },
[all …]
H A Dsql.js8 { input : /\'(.*?)(\')/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …{ input : /\b(add|after|aggregate|alias|all|and|as|authorization|between|by|cascade|cache|cache|ca…
10 …{ input : /\b(bigint|bigserial|bit|boolean|box|bytea|char|character|cidr|circle|date|decimal|doubl…
11 …{ input : /\b(abort|alter|analyze|begin|checkpoint|close|cluster|comment|commit|copy|create|deallo…
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 …{ input : /\b(abstract|continue|for|new|switch|default|goto|boolean|do|if|private|this|break|doubl…
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 …{ input : /\b(abstract|as|base|break|case|catch|checked|continue|default|delegate|do|else|event|ex…
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 …{ input : /\b(abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do…
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/authucenter/lib/uc_client/control/
H A Dfeed.php25 $appid = intval($this->input('appid'));
26 $icon = $this->input('icon');
27 $uid = intval($this->input('uid'));
28 $username = $this->input('username');
36 $image_1 = $this->input('image_1');
38 $image_2 = $this->input('image_2');
40 $image_3 = $this->input('image_3');
42 $image_4 = $this->input('image_4');
57 $start = $this->input('start');
58 $limit = $this->input('limit');
[all …]
H A Duser.php34 $uid = $this->input('uid');
67 $email = $this->input('email');
70 $regip = $this->input('regip');
85 $oldpw = $this->input('oldpw');
86 $newpw = $this->input('newpw');
87 $email = $this->input('email');
113 $ip = $this->input('ip');
150 $ip = $this->input('ip');
173 if(!$this->input('isuid')) {
194 $uid = $this->input('uid');
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DPHPUnitAssertions.php37 $getObj = function ($input) {
38 if (is_resource($input)) {
39 $input = stream_get_contents($input);
41 if (is_string($input)) {
42 $input = Reader::read($input);
44 if (!$input instanceof Component) {
47 unset($input->PRODID);
48 … if ($input instanceof Component\VCalendar && 'GREGORIAN' === (string) $input->CALSCALE) {
49 unset($input->CALSCALE);
52 return $input;
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DPHPUnitAssertions.php38 $getObj = function($input) use ($self) {
40 if (is_resource($input)) {
41 $input = stream_get_contents($input);
43 if (is_string($input)) {
44 $input = Reader::read($input);
46 if (!$input instanceof Component) {
49 unset($input->PRODID);
50 if ($input instanceof Component\VCalendar && (string)$input->CALSCALE === 'GREGORIAN') {
51 unset($input->CALSCALE);
53 return $input;
/plugin/doctree2filelist/
H A Dadmin.php129 ptln(' <input type="hidden" name="do" value="admin" />');
130 ptln(' <input type="hidden" name="ospcmd" value="importit" />');
139 ptln(' <input type="hidden" name="do" value="admin" />');
140 ptln(' <input type="hidden" name="ospcmd" value="docsuploaded" />');
149 ptln(' <input type="hidden" name="do" value="admin" />');
150 ptln(' <input type="hidden" name="ospcmd" value="create_upload_dir" />');
173 $html .= ' <input type="hidden" name="do" value="admin" />'."\n";
179 $html .= ' <input type="hidden" name="do" value="admin" />'."\n";
180 $html .= ' <input type="hidden" name="ospcmd" value="importit" />'."\n";
186 $html .= ' <input type="hidden" name="do" value="admin" />'."\n";
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DIssue172Test.php11 $input = <<<HI
37 $input = VObject\Reader::read($input);
38 $this->assertTrue($validator->validate($input,$filters));
43 $input = <<<HI
84 $input = VObject\Reader::read($input);
85 $this->assertTrue($validator->validate($input,$filters));
90 $input = <<<HI
132 $input = VObject\Reader::read($input);
133 $this->assertTrue($validator->validate($input,$filters));
/plugin/combo/resources/webcode/
H A Dwebcode-console.js36 let printTable = function (input) { argument
37 if (Array.isArray(input) !== true) {
42 if (input.length <= 0) {
58 for (let i = 0; i < input.length; i++) {
60 let element = input[i];
83 if (typeof input[0] === 'object') {
103 let printLog = function (input) { argument
105 if (typeof input === "object") {
107 let keys = Object.keys(input);
109 s += " " + keys[i] + " : " + input[key
162 addLogEntry(input) global() argument
168 addTableEntry(input) global() argument
190 log(input) global() argument
195 table(input) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLexer.php13 * A lexer is recognizer that draws input symbols from a character stream.
30 public $input; variable in Antlr\\Antlr4\\Runtime\\Lexer
105 * input char buffer. Use {@see Lexer::setText()} or can set this instance var.
114 public function __construct(?CharStream $input = null) argument
118 $this->input = $input;
120 $this->tokenFactorySourcePair = new Pair($this, $input);
129 if ($this->input !== null) {
130 $this->input->seek(0);// rewind the input
289 setInputStream(IntStream $input) global() argument
[all...]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
H A DTestCase.php23 $getObj = function($input) use ($self) {
25 if (is_resource($input)) {
26 $input = stream_get_contents($input);
28 if (is_string($input)) {
29 $input = Reader::read($input);
31 if (!$input instanceof Component) {
34 unset($input->PRODID);
35 return $input;
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DTestCase.php23 $getObj = function($input) use ($self) {
25 if (is_resource($input)) {
26 $input = stream_get_contents($input);
28 if (is_string($input)) {
29 $input = Reader::read($input);
31 if (!$input instanceof Component) {
34 unset($input->PRODID);
35 return $input;

12345678910>>...48