Home | History | Annotate | Download | only in embenchen

Lines Matching refs:Arguments

3   arguments: [1],
78 Module['arguments'] = process['argv'].slice(2);
97 Module['arguments'] = scriptArgs;
98 } else if (typeof arguments != 'undefined') {
99 Module['arguments'] = arguments;
114 if (typeof arguments != 'undefined') {
115 Module['arguments'] = arguments;
160 if (!Module['arguments']) {
161 Module['arguments'] = [];
276 var args = typeof arguments[0] === 'object' ? arguments[0] : arguments;
453 return Runtime.dynCall(sig, func, arguments);
579 // @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,
581 // @param args An array of the arguments to the function, as native JS values (as in returnType)
582 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
643 return ccallFunc(func, returnType, argTypes, Array.prototype.slice.call(arguments));
1489 var paths = Array.prototype.slice.call(arguments, 0);
1496 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
1497 var path = (i >= 0) ? arguments[i] : FS.cwd();
1500 throw new TypeError('Arguments to path.resolve must be strings');
1932 return MEMFS.mount.apply(null, arguments);
3744 return fn.apply(null, arguments);
5384 if (!ABORT) return func.apply(null, arguments);
14592 if (!Module['calledRun'] && shouldRunNow) run([].concat(Module["arguments"]));
14653 args = args || Module['arguments'];
14752 run([].concat(Module["arguments"]));