Lines Matching defs:arguments
34 arguments: [1],
109 Module['arguments'] = process['argv'].slice(2);
128 Module['arguments'] = scriptArgs;
129 } else if (typeof arguments != 'undefined') {
130 Module['arguments'] = arguments;
145 if (typeof arguments != 'undefined') {
146 Module['arguments'] = arguments;
191 if (!Module['arguments']) {
192 Module['arguments'] = [];
307 var args = typeof arguments[0] === 'object' ? arguments[0] : arguments;
484 return Runtime.dynCall(sig, func, arguments);
610 // @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,
612 // @param args An array of the arguments to the function, as native JS values (as in returnType)
613 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
674 return ccallFunc(func, returnType, argTypes, Array.prototype.slice.call(arguments));
1519 var paths = Array.prototype.slice.call(arguments, 0);
1526 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
1527 var path = (i >= 0) ? arguments[i] : FS.cwd();
1530 throw new TypeError('Arguments to path.resolve must be strings');
1962 return MEMFS.mount.apply(null, arguments);
3774 return fn.apply(null, arguments);
5417 if (!ABORT) return func.apply(null, arguments);
8275 if (!Module['calledRun'] && shouldRunNow) run([].concat(Module["arguments"]));
8336 args = args || Module['arguments'];
8435 run([].concat(Module["arguments"]));