Home | History | Annotate | Download | only in embenchen

Lines Matching defs: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));
1823 return MEMFS.mount.apply(null, arguments);
3635 return fn.apply(null, arguments);
3828 var paths = Array.prototype.slice.call(arguments, 0);
3835 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
3836 var path = (i >= 0) ? arguments[i] : FS.cwd();
3839 throw new TypeError('Arguments to path.resolve must be strings');
4208 if (!ABORT) return func.apply(null, arguments);
5816 if (!Module['calledRun'] && shouldRunNow) run([].concat(Module["arguments"]));
5877 args = args || Module['arguments'];
5976 run([].concat(Module["arguments"]));