Home
last modified time | relevance | path

Searched refs:args (Results 76 – 100 of 559) sorted by last modified time

12345678910>>...23

/plugin/combo/vendor/symfony/process/
H A DPhpExecutableFinder.php55 $args = $this->findArguments();
56 $args = $includeArgs && $args ? ' '.implode(' ', $args) : '';
60 return \PHP_BINARY.$args;
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxDriverService.php30 $args = ['-p=' . $port];
32 return new static($pathToExecutable, $port, $args);
/plugin/data/
H A Dbureaucracy_field.php11 private $args = [];
21 * @param array $args The tokenized definition, only split at spaces
23 public function __construct($args)
25 $this->init($args);
27 foreach ($args as $arg) {
32 $this->args[] = $arg;
40 * @param array $args data plugin related field arguments
42 private function prepareColumns($args)
48 foreach ($args as $arg) {
63 $this->opt['args']
14 private $args; global() variable in syntax_plugin_bureaucracy_field_dataplugin
26 __construct($args) global() argument
46 prepareColumns($args) global() argument
[all...]
/plugin/data/syntax/
H A Dentry.php308 $args = func_get_args();
314 $data['sql'] = $args[$i];
316 $args[$i] = $data['sql'];
323 return call_user_func_array(array(&$sqlite, 'query'), $args);
/plugin/data/helper/
H A Daliastextbox.php11 private $args;
21 * @param array $args The tokenized definition, only split at spaces
23 public function initialize($args)
25 $this->init($args);
27 $this->args = [];
28 foreach ($args as $arg) {
33 $this->args[] = $arg;
41 * @param array $args data plugin related field arguments
43 private function prepareColumns($args)
49 foreach ($args a
10 private $args; global() variable in helper_plugin_data_aliastextbox
22 initialize($args) global() argument
42 prepareColumns($args) global() argument
[all...]
/plugin/katex/_assets/
H A Dkatex.min.js1args,m=h.optArgs,u={mode:r.mode,envName:o,parser:r},p=l.handler(u,c,m);r.expect("\\end",!1);var d=…
/plugin/upgrade/
H A Dhelper.php416 $args = func_get_args();
417 $level = array_shift($args);
418 $msg = array_shift($args);
419 $msg = vsprintf($msg, $args);
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DOptions.php26 protected $args = array(); variable in splitbrain\\phpcli\\Options
54 'args' => array(),
60 $this->args = $this->readPHPArgv();
61 $this->bin = basename(array_shift($this->args));
121 $this->setup[$command]['args'][] = array(
145 'args' => array(),
193 $argc = count($this->args);
196 foreach ($this->setup[$this->command]['args'] as $arg) {
211 * The given $args array should NOT contain the executed file as first item anymore! The $args
[all...]
/plugin/statistics/inc/pchart/
H A DTestCanvas.php82 private function logMethodCall($methodName, $args) { argument
84 foreach($args as $arg) {
/plugin/farmer/_animal/data/pages/wiki/
H A Dsyntax.txt379 public static void main(String[] args) {
/plugin/const/
H A Dclass.evalmath.php532 $args = array();
538 $args[] = $arg;
564 $args = array();
898 return array_sum( $args );
938 return array_sum( $args ) / count( $args );
952 sort( $args );
954 return $args[ $middle ];
981 sort( $args );
982 return end( $args ) - reset( $args );
994 return max( $args );
[all …]
/plugin/sql2wiki/syntax/
H A Dquery.php75 $args = [];
76 if (isset($attributes['args'])) {
77 $args = array_map('trim', explode(',', $attributes['args']));
86 'args' => $args,
/plugin/openid/Auth/OpenID/
H A DConsumer.php477 $args = ['dh_consumer_public' => $cpub];
480 $args = array_merge($args, [
488 return $args;
1647 list($assoc_session, $args) = $this->_createAssociateRequest(
1650 $response_message = $this->_makeKVPost($args, $endpoint->server_url);
1780 $args = [
1786 $args['ns'] = Auth_OpenID_OPENID2_NS;
1793 $args['session_type'] = $assoc_session->session_type;
1796 $args = array_merge($args, $assoc_session->getRequest());
1797 $message = Auth_OpenID_Message::fromOpenIDArgs($args);
H A DMessage.php472 private $args; variable in Auth_OpenID_Message
505 * @param array $args
508 static function fromPostArgs($args) argument
515 foreach ($args as $key => $value) {
681 $args = [];
694 $args[$ns_key] = $ns_uri;
701 $args[$key] = $value;
704 return $args;
788 $args = [];
791 $args[] = [$k, $v];
[all …]
H A DSReg.php252 $args = $m->getArgs($obj->ns_uri);
254 if ($args === null || Auth_OpenID::isFailure($args)) {
258 $obj->parseExtensionArgs($args);
287 * @param array $args
291 function parseExtensionArgs($args, $strict=false) argument
295 $items = Auth_OpenID::arrayGet($args, $list_name);
436 $args = [];
447 $args['policy_url'] = $this->policy_url;
450 return $args;
541 if ($args === null || Auth_OpenID::isFailure($args)) {
[all …]
/plugin/openid/Auth/
H A DOpenID.php335 * @param array $args Either an array key/value pairs or an array of
343 static function appendArgs($url, $args) argument
345 if (count($args) == 0) {
351 if (array_key_exists(0, $args) &&
352 is_array($args[0])) {
355 $keys = array_keys($args);
359 $new_args[] = [$key, $args[$key]];
361 $args = $new_args;
369 return $url . $sep . Auth_OpenID::httpBuildQuery($args);
551 $args = func_get_args();
[all …]
/plugin/openid/Auth/Yadis/
H A DXRI.php97 function Auth_Yadis_XRIAppendArgs($url, $args) argument
103 if (count($args) == 0) {
109 if (array_key_exists(0, $args) &&
110 is_array($args[0])) {
113 $keys = array_keys($args);
117 $new_args[] = [$key, $args[$key]];
119 $args = $new_args;
134 return $url . $sep . Auth_OpenID::httpBuildQuery($args);
H A DXRIRes.php29 $args = [
34 $args['_xrd_t'] = $service_type;
37 $args['_xrd_r'] .= ';sep=false';
40 $query = Auth_Yadis_XRIAppendArgs($hxri, $args);
/plugin/blogtng/helper/
H A Dcomments.php78 $args = array();
79 $args[] = $this->pid;
83 $args[] = $type;
88 $res = $this->sqlitehelper->getDB()->query($sql,$args);
595 $args = array();
596 $args[] = $pid;
600 $args[] = $type;
606 $res = $this->sqlitehelper->getDB()->query($sql,$args);
/plugin/do/
H A Dhelper.php109 if (isset($args)) {
110 if (isset($args['ns'])) {
129 if (isset($args['id'])) {
132 $args['id'] = array($args['id']);
148 if (isset($args['from']) && isset($args['to'])) {
161 if (isset($args['md5'])) {
163 $args['md5'] = array($args['md5']);
172 $args[$n] = array($args[$n]);
182 $args[$n]
191 $args[$n] = array_map('utf8_strtolower', $args[$n]);
[all …]
/plugin/do/syntax/
H A Ddolist.php66 $args = array();
70 parse_str($url[1], $args);
73 $filters = array_keys($args);
75 if (isset($args[$filter])) {
76 $args[$filter] = explode(',', $args[$filter]);
77 $c = count($args[$filter]);
79 $args[$filter][$i] = trim($args[$filter][$i]);
85 $args['ns'] = $ns;
87 return $args;
/plugin/ifauthex/lib/
H A Dgrammar.php98 if (count($elmInstance->args()) != 1) {
114 if (!($elmInstance->args()[0]->definition() instanceof Literal)) {
119 $literalInstance = $elmInstance->args()[0];
H A Dparser.php37 $this->_args = $args;
41 public function args() { return $this->_args; } function in AST\\ElementInstance
45 foreach ($this->args() as $arg) {
64 if (count($this->args()) == 0) {
89 foreach ($this->args() as $arg) {
131 foreach ($this->args() as $arg) {
158 foreach ($this->args() as $arg) {
173 foreach ($this->args() as $arg) {
386 $retval[] = $args[$i];
607 $args = $elmInstance->args();
[all …]
/plugin/snow/
H A Dsnowstorm.js196 var args = slice.call(oArgs), len = args.length;
198 args[1] = 'on' + args[1]; // prefix
200 args.pop(); // no capture
203 args.push(false);
205 return args;
208 function apply(args, sType) { argument
209 var element = args.shift(),
212 element[method](args[0], args[1]);
214 element[method].apply(element, args);
/plugin/edittable/lib/
H A Dhandsontable.full.js19264 var args = [];
22612 var args = [it];
22616 replacer = args[1];
22622 args[1] = replacer;
31449 var args = [];
49380 case 2: return un ? fn(args[0], args[1])
49381 : fn.call(that, args[0], args[1]);
49382 case 3: return un ? fn(args[0], args[1], args[2])
49383 : fn.call(that, args[0], args[1], args[2]);
49384 case 4: return un ? fn(args[0], args[1], args[2], args[3])
[all …]

12345678910>>...23