Lines Matching defs:arguments
4 arguments: [1],
79 Module['arguments'] = process['argv'].slice(2);
98 Module['arguments'] = scriptArgs;
99 } else if (typeof arguments != 'undefined') {
100 Module['arguments'] = arguments;
115 if (typeof arguments != 'undefined') {
116 Module['arguments'] = arguments;
161 if (!Module['arguments']) {
162 Module['arguments'] = [];
277 var args = typeof arguments[0] === 'object' ? arguments[0] : arguments;
454 return Runtime.dynCall(sig, func, arguments);
580 // @param argTypes An array of the types of arguments for the function (if there are no arguments, this can be ommitted). Types are as in returnType,
582 // @param args An array of the arguments to the function, as native JS values (as in returnType)
583 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
644 return ccallFunc(func, returnType, argTypes, Array.prototype.slice.call(arguments));
1594 var typeArray = Array.prototype.slice.call(arguments, 2);
1737 var paths = Array.prototype.slice.call(arguments, 0);
1744 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
1745 var path = (i >= 0) ? arguments[i] : FS.cwd();
1748 throw new TypeError('Arguments to path.resolve must be strings');
2180 return MEMFS.mount.apply(null, arguments);
3992 return fn.apply(null, arguments);
5513 if (!ABORT) return func.apply(null, arguments);
20162 if (!Module['calledRun'] && shouldRunNow) run([].concat(Module["arguments"]));
20223 args = args || Module['arguments'];
20322 run([].concat(Module["arguments"]));