Home
last modified time | relevance | path

Searched refs:args (Results 276 – 300 of 559) sorted by path

1...<<11121314151617181920>>...23

/plugin/explorertree/
H A Dscript.js25 f.apply(null,r.args||[]);
/plugin/extendpage/meta/
H A DExtendPageException.php26 $args = func_get_args();
27 array_shift($args);
29 $trans = vsprintf($message, $args);
/plugin/facebookalbum/
H A Dfacebook.php488 $args = func_get_args();
489 if (is_array($args[0])) {
490 return $this->_restserver($args[0]);
492 return call_user_func_array(array($this, '_graph'), $args);
/plugin/farm/
H A Daction.php56 function cleanACT(&$event, $args) { argument
84 function displayState(&$event, $args) { argument
110 function processHeaders(&$event, $args) { argument
H A Dsoapserver.php45 $appname = $args[0];
46 $apppwd = $args[1];
47 $service = $args[2];
51 $serviceargs = isset($args[3]) ? (is_array($args[3]) ? $args[3] : array($args[3])) : array();
134 $name = isset($args['name']) ? $args['name'] : '';
135 $template = isset($args['template']) ? $args['template'] : '';
149 $name = isset($args['name']) ? $args['name'] : reset($args);
161 $name = isset($args['name']) ? $args['name'] : reset($args);
177 $name = isset($args['name']) ? $args['name'] : '';
178 $status = isset($args['status']) ? $args['status'] : '';
[all …]
/plugin/farm/install/animaltemplate/data/pages/wiki/
H A Dsyntax.txt334 public static void main(String[] args) {
/plugin/farmer/_animal/data/pages/wiki/
H A Dsyntax.txt379 public static void main(String[] args) {
/plugin/fblogin/lib/
H A Dbase_facebook.php645 $args = func_get_args();
646 if (is_array($args[0])) {
647 return $this->_restserver($args[0]);
649 return call_user_func_array(array($this, '_graph'), $args);
/plugin/fedauth/Auth/
H A DOpenID.php319 * @param array $args Either an array key/value pairs or an array of
327 static function appendArgs($url, $args) argument
329 if (count($args) == 0) {
335 if (array_key_exists(0, $args) &&
336 is_array($args[0])) {
339 $keys = array_keys($args);
343 $new_args[] = array($key, $args[$key]);
345 $args = $new_args;
353 return $url . $sep . Auth_OpenID::httpBuildQuery($args);
530 $args = func_get_args();
[all …]
/plugin/fedauth/Auth/OpenID/
H A DConsumer.php474 $args = array('dh_consumer_public' => $cpub);
477 $args = array_merge($args, array(
484 return $args;
1554 list($assoc_session, $args) = $this->_createAssociateRequest(
1557 $response_message = $this->_makeKVPost($args, $endpoint->server_url);
1679 $args = array(
1684 $args['ns'] = Auth_OpenID_OPENID2_NS;
1691 $args['session_type'] = $assoc_session->session_type;
1694 $args = array_merge($args, $assoc_session->getRequest());
1695 $message = Auth_OpenID_Message::fromOpenIDArgs($args);
[all …]
H A DMessage.php425 $this->args = new Auth_OpenID_Mapping();
445 static function fromPostArgs($args) argument
452 foreach ($args as $key => $value) {
614 $args = array();
627 $args[$ns_key] = $ns_uri;
630 foreach ($this->args->items() as $pair) {
634 $args[$key] = $value;
637 return $args;
716 $args = array();
719 $args[] = array($k, $v);
[all …]
H A DSReg.php227 $args = $m->getArgs($obj->ns_uri);
229 if ($args === null || Auth_OpenID::isFailure($args)) {
233 $obj->parseExtensionArgs($args);
262 function parseExtensionArgs($args, $strict=false) argument
266 $items = Auth_OpenID::arrayGet($args, $list_name);
391 $args = array();
402 $args['policy_url'] = $this->policy_url;
405 return $args;
487 if ($args === null || Auth_OpenID::isFailure($args)) {
492 if (in_array($field_name, array_keys($args))) {
[all …]
/plugin/fedauth/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[] = array($key, $args[$key]);
119 $args = $new_args;
134 return $url . $sep . Auth_OpenID::httpBuildQuery($args);
H A DXRIRes.php25 $args = array(
30 $args['_xrd_t'] = $service_type;
33 $args['_xrd_r'] .= ';sep=false';
36 $query = Auth_Yadis_XRIAppendArgs($hxri, $args);
/plugin/fetchmedia/
H A Dyarn.lock2463 process-nextick-args@~1.0.6:
2465 …resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e2…
2557 process-nextick-args "~1.0.6"
/plugin/file2dw/docker/proxy/
H A Ddocker-compose.yml71 args:
/plugin/file2dw/docker/simple/
H A Ddocker-compose.yml8 args:
/plugin/filterrss/
H A Dsyntax.php44 $args = trim($query[0]);
76 if(preg_match($limit_reg, $args, $matches) )
84 $exploded = explode(' ', $args);
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DIndexedReader.php111 * @param array $args
115 public function __call($method, $args) argument
117 return call_user_func_array(array($this->delegate, $method), $args);
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMethodMetadata.php42 * @param mixed[] $args
46 public function invoke(object $obj, array $args = []) argument
48 return $this->reflection->invokeArgs($obj, $args);
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DSerializerBuilder.php173 public static function create(...$args): self argument
175 return new static(...$args);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DFormErrorHandlerTest.php276 protected function invokeMethod($object, $method, array $args = []) argument
281 return $reflectionMethod->invokeArgs($object, $args);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
H A DEventDispatcherTest.php225 public function __call($method, array $args = []) argument
228 $this->expected[] = [$method, $args];
233 $this->actual[] = [$method, $args];
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md84 * Exclude 'args' in the generated backtrace (thanks @oradwell)
H A DREADME.md196 $user->setName('everzet')->will(function ($args, $user) {
201 $user->setName('everzet')->will(function ($args) use ($user) {
260 $user->setName(Argument::type('string'))->will(function ($args) {
261 $this->getName()->willReturn($args[0]);
265 $user->setName(Argument::type('string'))->will(function ($args, $user) {
266 $user->getName()->willReturn($args[0]);
271 $user->getName()->willReturn($args[0]);
287 $user->setName(Argument::type('string'))->will(function ($args) {
288 $this->getName()->willReturn($args[0]);
293 $user->getName()->willReturn($args[0]);
[all …]

1...<<11121314151617181920>>...23