Home
last modified time | relevance | path

Searched refs:input (Results 51 – 75 of 1436) sorted by relevance

12345678910>>...58

/plugin/davcal/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/authucenter/lib/uc_client/control/
H A Dfriend.php25 $uid = intval($this->input('uid'));
26 $friendids = $this->input('friendids');
32 $uid = intval($this->input('uid'));
33 $friendid = $this->input('friendid');
34 $comment = $this->input('comment');
40 $uid = intval($this->input('uid'));
41 $direction = intval($this->input('direction'));
47 $uid = intval($this->input('uid'));
48 $page = intval($this->input('page'));
49 $pagesize = intval($this->input('pagesize'));
[all …]
H A Dmail.php27 $mail['uids'] = explode(',', $this->input('uids'));
28 $mail['emails'] = explode(',', $this->input('emails'));
29 $mail['subject'] = $this->input('subject');
30 $mail['message'] = $this->input('message');
31 $mail['charset'] = $this->input('charset');
32 $mail['htmlon'] = intval($this->input('htmlon'));
33 $mail['level'] = abs(intval($this->input('level')));
34 $mail['frommail'] = $this->input('frommail');
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
H A DXML.php31 protected $input; variable in Sabre\\VObject\\Parser\\XML
52 * @param mixed $input
67 * @param resource|string $input
76 if (!is_null($input)) {
77 $this->setInput($input);
84 if (is_null($this->input)) {
355 if (is_resource($input)) {
356 $input = stream_get_contents($input);
359 if (is_string($input)) {
365 $reader->xml($input);
[all …]
H A DParser.php43 * @param mixed $input
46 public function __construct($input = null, $options = 0) argument
48 if (!is_null($input)) {
49 $this->setInput($input);
62 * @param mixed $input
67 abstract public function parse($input = null, $options = 0); argument
72 * @param mixed $input
74 abstract public function setInput($input); argument
H A DMimeDir.php33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir
82 if (!is_null($input)) {
83 $this->setInput($input);
118 * @param resource|string $input
120 public function setInput($input) argument
126 if (is_string($input)) {
131 $this->input = $stream;
133 $this->input = $input;
525 * @param string $input
603 * @param string $input
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DXML.php31 protected $input; variable in Sabre\\VObject\\Parser\\XML
52 * @param mixed $input
70 * @param resource|string $input
79 if (!is_null($input)) {
80 $this->setInput($input);
87 if (is_null($this->input)) {
393 function setInput($input) { argument
396 $input = stream_get_contents($input);
399 if (is_string($input)) {
406 $reader->xml($input);
[all …]
H A DParser.php43 * @param mixed $input
48 function __construct($input = null, $options = 0) { argument
50 if (!is_null($input)) {
51 $this->setInput($input);
64 * @param mixed $input
69 abstract function parse($input = null, $options = 0); argument
74 * @param mixed $input
78 abstract function setInput($input); argument
/plugin/bpmnio/vendor/dmn-js/dist/assets/
H A Ddmn-js-shared.css123 .dms-input,
131 color: var(--input-color);
135 .dms-input {
144 .dms-input-select .dms-input {
148 .dms-input:focus,
154 .dms-input.invalid,
161 .dms-input.invalid:focus {
166 .dms-validated-input.dms-block .dms-input,
172 .dms-script-input {
178 .dms-input-select {
[all …]
/plugin/davcal/vendor/sabre/xml/lib/
H A DService.php80 * @param string|resource $input
86 function parse($input, $contextUri = null, &$rootElementName = null) { argument
88 if (is_resource($input)) {
91 $input = stream_get_contents($input);
95 $r->xml($input);
115 * @param string|resource $input
119 function expect($rootElementName, $input, $contextUri = null) { argument
121 if (is_resource($input)) {
124 $input = stream_get_contents($input);
128 $r->xml($input);
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
H A DParser.php43 * @param mixed $input
47 public function __construct($input = null, $options = 0) { argument
49 if (!is_null($input)) {
50 $this->setInput($input);
63 * @param mixed $input
67 abstract public function parse($input = null, $options = null); argument
72 * @param mixed $input
75 abstract public function setInput($input); argument
H A DMimeDir.php33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir
55 if (!is_null($input)) {
57 $this->setInput($input);
72 * @param resource|string $input
81 if (is_string($input)) {
84 fwrite($stream, $input);
86 $this->input = $stream;
88 $this->input = $input;
477 * @param string $input
557 * @param string $input
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
H A DParser.php43 * @param mixed $input
47 public function __construct($input = null, $options = 0) { argument
49 if (!is_null($input)) {
50 $this->setInput($input);
63 * @param mixed $input
67 abstract public function parse($input = null, $options = null); argument
72 * @param mixed $input
75 abstract public function setInput($input); argument
H A DMimeDir.php33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir
55 if (!is_null($input)) {
57 $this->setInput($input);
72 * @param resource|string $input
81 if (is_string($input)) {
84 fwrite($stream, $input);
86 $this->input = $stream;
88 $this->input = $input;
477 * @param string $input
557 * @param string $input
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DParser.php43 * @param mixed $input
47 public function __construct($input = null, $options = 0) { argument
49 if (!is_null($input)) {
50 $this->setInput($input);
63 * @param mixed $input
67 abstract public function parse($input = null, $options = null); argument
72 * @param mixed $input
75 abstract public function setInput($input); argument
H A DMimeDir.php33 protected $input; variable in Sabre\\VObject\\Parser\\MimeDir
55 if (!is_null($input)) {
57 $this->setInput($input);
72 * @param resource|string $input
81 if (is_string($input)) {
84 fwrite($stream, $input);
86 $this->input = $stream;
88 $this->input = $input;
477 * @param string $input
557 * @param string $input
[all …]
/plugin/dwcommits/
H A Dadmin.php194 ptln(' <input type="hidden" name="do" value="admin" />');
195 ptln(' <input type="hidden" name="page" value="'.$this->getPluginName().'" />');
214 …ptln('&nbsp;&nbsp;<input type="submit" name="cmd[init]" value="'.$this->getLang('btn_init').'" />…
222 …ptln('&nbsp;&nbsp;<input type="submit" name="cmd[update]" value="'.$this->getLang('btn_update').'…
242 …ptln('<td>&nbsp;&nbsp;<input type="submit" name="cmd[pull]" value="'.$this->getLang('btn_pull').'…
251 . '&nbsp;<input type="text" name="remote_url_name" size="80" value="'
275 …ptln('<td align="right"><input type="submit" name="cmd[merge]" value="'. $this->getLang('btn_merg…
342 ptln('&nbsp;&nbsp;AND <input type="RADIO" value="AND" name="dwc_query[OP_1]"></TD>');
346 … ptln('&nbsp;&nbsp;AND <input type="radio" value="AND" CHECKED name="dwc_query[OP_2]"></TD>');
358 …ptln('&nbsp;&nbsp;<input type ="radio" name="output_type" value="plain">' . $this->getLang('q_plai…
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php51 * The line number 1..n within the input.
121 public function match(CharStream $input, int $mode) : int argument
132 $mark = $input->mark();
135 $this->startIndex = $input->getIndex();
141 return $this->matchATN($input);
143 return $this->execATN($input, $dfa->s0);
145 $input->release($mark);
158 protected function matchATN(CharStream $input) : int argument
168 $s0_closure = $this->computeStartState($input, $startState);
178 $predict = $this->execATN($input,
187 execATN(CharStream $input, DFAState $ds0) global() argument
295 computeTargetState(CharStream $input, DFAState $s, int $t) global() argument
319 failOrAccept(SimState $prevAccept, CharStream $input, ATNConfigSet $reach, int $t) global() argument
359 getReachableConfigSet(CharStream $input, ATNConfigSet $closure, ATNConfigSet $reach, int $t) global() argument
418 accept(CharStream $input, LexerActionExecutor $lexerActionExecutor, int $startIndex, int $index, int $line, int $charPos) global() argument
448 computeStartState(CharStream $input, ATNState $p) global() argument
472 closure(CharStream $input, LexerATNConfig $config, ATNConfigSet $configs, bool $currentAltReachedAcceptState, bool $speculative, bool $treatEofAsEpsilon) global() argument
559 getEpsilonTarget(CharStream $input, LexerATNConfig $config, Transition $t, ATNConfigSet $configs, bool $speculative, bool $treatEofAsEpsilon) global() argument
692 evaluatePredicate(CharStream $input, int $ruleIndex, int $predIndex, bool $speculative) global() argument
719 captureSimState(SimState $settings, CharStream $input, DFAState $dfaState) global() argument
836 getText(CharStream $input) global() argument
842 consume(CharStream $input) global() argument
[all...]
/plugin/diagramsnet/lib/js/deflate/
H A Dbase64.js15 encode : function (input, binary) { argument
23 input = Base64._utf8_encode(input);
26 while (i < input.length) {
28 chr1 = input.charCodeAt(i++);
29 chr2 = input.charCodeAt(i++);
30 chr3 = input.charCodeAt(i++);
53 decode : function (input, binary) { argument
60 input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
62 while (i < input.length) {
64 enc1 = this._keyStr.indexOf(input.charAt(i++));
[all …]
/plugin/google_adsense2/
H A Dadmin.php105 ptln(' <input type="hidden" name="do" value="admin" />');
106 ptln(' <input type="hidden" name="page" value="'.$this->getPluginName().'" />');
107 ptln(' <input type="hidden" name="cmd[googleads]" value="true" />');
112 …print ' <tr><td> '.$this->getLang('gads_enabled').' </td><td><input type="checkbox" name="googlead…
113 …print ' <tr><td> '.$this->getLang('gads_debug').' </td><td><input type="checkbox" name="googleads[…
114 …print ' <tr><td> '.$this->getLang('gads_dont_count_admin').' </td><td><input type="checkbox" name=…
115 …print ' <tr><td> '.$this->getLang('gads_dont_count_users').' </td><td><input type="checkbox" name=…
118 …print ' <tr><td> '.$this->getLang('google_ad_client').' </td><td><input type="text" name="googlead…
121 …print ' <tr><td> '.$this->getLang('google_color_bg').' </td><td><input type="text" name="googleads…
125 …print ' <tr><td> '.$this->getLang('google_color_url').' </td><td><input type="text" name="googlead…
[all …]
/plugin/combo/vendor/symfony/process/
H A DInputStream.php17 * Provides a way to continuously write to the input of a Process until the InputStream is closed.
27 private $input = []; variable in Symfony\\Component\\Process\\InputStream
39 * Appends an input to the write buffer.
41 * @param resource|string|int|float|bool|\Traversable|null $input The input to append as scalar,
44 public function write($input) argument
46 if (null === $input) {
52 $this->input[] = ProcessUtils::validateInput(__METHOD__, $input);
79 while ($this->open || $this->input) {
[all...]
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGeoJSON.php27 * @param string|object $input The GeoJSON string or object
31 public function read($input) argument
33 if (is_string($input)) {
34 $input = json_decode($input);
36 if (!is_object($input)) {
39 if (!isset($input->type) || !is_string($input->type)) {
44 if ($input->type == 'FeatureCollection' && isset($input
65 getSRID($input) global() argument
[all...]
/plugin/jplayer/vendor/symfony/process/
H A DInputStream.php25 private $input = []; variable in Symfony\\Component\\Process\\InputStream
42 public function write($input) argument
44 if (null === $input) {
50 $this->input[] = ProcessUtils::validateInput(__METHOD__, $input);
73 while ($this->open || $this->input) {
74 if (!$this->input) {
78 $current = array_shift($this->input);
87 if (!$this->input && $this->open && null !== $onEmpty = $this->onEmpty) {
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js627 return locale.longDateFormat(input) || input;
765 array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
1360 input = locale.weekdaysParse(input);
1372 return isNaN(input) ? null : input;
2834 …diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.v…
2881 input = input * 60;
2909 input = -input;
2955 input = input ? createLocal(input).utcOffset() : 0;
3187 var localInput = isMoment(input) ? input : createLocal(input);
3200 var localInput = isMoment(input) ? input : createLocal(input);
[all …]
/plugin/iphelper/
H A Dscript.js37 console.log('CIDR in input address is out of range');
86 document.forms.input.in_address.value = turladdr;
87 document.forms.input.in_subnet.value = tinSubnet;
92 if (document.forms.input.in_address.value.indexOf('/') > -1)
94 var tcidr = (document.forms.input.in_address.value).substring(document.forms.input.in_address.value.indexOf('/') + 1);
97 document.forms.input.in_subnet.value = cidrTosubnets[(parseInt(tcidr,10))];
107 if (document.forms.input.in_address.value.indexOf('/') > -1)
109 var address = (document.forms.input.in_address.value).substring(0,document.forms.input
[all...]

12345678910>>...58