Lines Matching refs:Arguments
6 arguments: [1],
81 Module['arguments'] = process['argv'].slice(2);
100 Module['arguments'] = scriptArgs;
101 } else if (typeof arguments != 'undefined') {
102 Module['arguments'] = arguments;
117 if (typeof arguments != 'undefined') {
118 Module['arguments'] = arguments;
163 if (!Module['arguments']) {
164 Module['arguments'] = [];
279 var args = typeof arguments[0] === 'object' ? arguments[0] : arguments;
456 return Runtime.dynCall(sig, func, arguments);
582 // @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,
584 // @param args An array of the arguments to the function, as native JS values (as in returnType)
585 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
646 return ccallFunc(func, returnType, argTypes, Array.prototype.slice.call(arguments));
1826 return MEMFS.mount.apply(null, arguments);
3638 return fn.apply(null, arguments);
3831 var paths = Array.prototype.slice.call(arguments, 0);
3838 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
3839 var path = (i >= 0) ? arguments[i] : FS.cwd();
3842 throw new TypeError('Arguments to path.resolve must be strings');
4211 if (!ABORT) return func.apply(null, arguments);
5819 if (!Module['calledRun'] && shouldRunNow) run([].concat(Module["arguments"]));
5880 args = args || Module['arguments'];
5979 run([].concat(Module["arguments"]));