Home
last modified time | relevance | path

Searched refs:args (Results 501 – 525 of 559) sorted by last modified time

1...<<212223

/plugin/impressjs/tpl/dokuwiki/
H A Dimpress.js664 var context = this, args = arguments;
667 fn.apply(context, args);
/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/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/
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/bbs/
H A Dsyntax.php79 $args = explode(';',$match[1]);
80 if (empty($args)) {
84 for ($i=0,$I=count($args);$i<$I;++$i) {
85 $s = (int)$args[$i];
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.js5 ….bind=function(target){var args=Array.prototype.slice.call(arguments,1),fn=this;return function(){… variable
H A Djquery.syntax.min.js5 ….bind=function(target){var args=Array.prototype.slice.call(arguments,1),fn=this;return function(){… variable
/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/jdraw/lib/
H A Djgraphx-examples.jar ... .lang.String[]) String[] args com.mxgraph.examples.swing.ClickHandler frame ...
H A Djdraw.jar ... .lang.String[]) String[] args com.mxgraph.examples.swing.ClickHandler frame ...
H A Dcommons-logging-1.1.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/src/com/mxgraph/examples/swing/
H A DGraphEditor.java734 public static void main(String[] args) in main() argument
H A DSchemaEditor.java117 public static void main(String[] args) in main() argument
H A DUserObject.java197 public static void main(String[] args) in main() argument
H A DCustomCanvas.java131 public static void main(String[] args) in main() argument
H A DValidation.java115 public static void main(String[] args) in main() argument
/plugin/xymon/xymon-script/
H A Ddokuwiki.rb77 def initialize(*args) argument
/plugin/semanticdata/
H A Dbureaucracy_field.php8 function __construct($syntax_plugin, $args) { argument
12 $this->init($syntax_plugin, $args);
14 foreach ($args as $arg) {
/plugin/s5reloaded/ui/effects_support/
H A Dunittest.js527 var makeAssertion = function(assertion, args, object) { argument
528 this[assertion].apply(this,(args || []).concat([object]));
534 var args = $A(arguments);
535 var scope = args.shift();
536 makeAssertion.apply(scope, [pair.value, args, this]); };
H A Deffects.js330 var args = $A(arguments), method = args.last(),
331 options = args.length == 5 ? args[3] : null;
H A Dprototype.js268 function update(array, args) { argument
274 function merge(array, args) { argument
276 return update(array, args);
290 var a = merge(args, arguments);
307 var a = merge(args, arguments);
316 return __method.apply(__method, args);
321 var args = update([0.01], arguments);
322 return this.delay.apply(this, args);
815 var args = $A(arguments).slice(1);
888 if (Object.isFunction(args.last()))
[all …]

1...<<212223