Lines Matching refs:args

453     var args = [].slice.call(arguments, 1);;
455 args.push(methodName);
456 return this._then(caller, undefined, undefined, args, undefined);
2353 var args = [].slice.call(arguments);;
2354 if (fn) args.pop();
2355 var ret = new PromiseArray(args).promise();
2632 var args = [].slice.call(arguments, 1);;
2633 promise._fulfill(args);
5594 var args = new Array(arguments.length - 1);
5597 args[i - 1] = arguments[i];
5600 queue.push(new Item(fun, args));
5674 var args = new Array(arguments.length - 1);
5675 for (var i = 0; i < args.length; i++) {
5676 args[i] = arguments[i + 1];
5679 var task = { callback: callback, args: args }; property in AnonymousFunctioncdb5859f0100.AnonymousFunctioncdb5859f5100.setImmediate.task
5691 var args = task.args;
5692 switch (args.length) {
5697 callback(args[0]);
5700 callback(args[0], args[1]);
5703 callback(args[0], args[1], args[2]);
5706 callback.apply(undefined, args);
6019 var args = optimizer.get_arguments_hash(Array.prototype.slice.call(argumentsArray));
6026 if(optimizer.has_cached_value(cached_values, args)){
6027 return optimizer.get_cached_value(cached_values, args);
6030 optimizer.cache_value(cached_values, args, value);
6060 get_arguments_hash:function(args){ argument
6062 for(var i = 0; i < args.length; i++){
6063 values.push(this.stringify_argument(args[i]));
6168 function createConfig(method, args) { argument
6173 if (args.length === 0) {
6176 if (args.length === 1) {
6177 if (typeof args[0] === "string") {
6178 result.url = args[0];
6181 result.url = args[0].url;
6182 result.async = (args[0].async || true);
6183 result.callback = args[0].callback;
6184 result.headers = args[0].headers;
6187 if (args[0].data) {
6188 if (typeof args[0].data !== "string") {
6189 result.data = serialize(args[0].data);
6191 result.data = args[0].data;
6200 result.url = args[0];
6204 result.callback = args[1];
6205 result.headers = args[2];
6209 if (args[1]) {
6210 if (typeof args[1] !== "string") {
6211 result.data = serialize(args[1]);
6213 result.data = args[1];
6218 result.callback = args[2];
6219 result.headers = args[3];
9777 var args;
9779 args = [id, this.pull[id], "paint"];
9781 args = [null,null,null];
9784 if(this.callEvent("onBeforeStoreUpdate", args) === false){
9803 args = [id, this.pull[id], "paint"];
9805 args = [null,null,null];
9808 this.callEvent("onStoreUpdated",args);
11069 var args = [message];
11071args = args.concat(["font-weight:bold", "font-weight:normal", "font-weight:bold", "font-weight:nor…
11074 log.apply(window.console, args);
11561 function tryCall(getView, method, args, fallback){ argument
11570 return view[method].apply(view, args);
22520 function callHandler(eventName, className, root, args) { argument
22525 handlers[i].handler.apply(this, args);
29769 var args = Array.prototype.slice.call(arguments);
29771 callback.apply(this, args);