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));
1837 return MEMFS.mount.apply(null, arguments);
3649 return fn.apply(null, arguments);
3842 var paths = Array.prototype.slice.call(arguments, 0);
3849 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
3850 var path = (i >= 0) ? arguments[i] : FS.cwd();
3853 throw new TypeError('Arguments to path.resolve must be strings');
4222 if (!ABORT) return func.apply(null, arguments);
5824 if (!Module['calledRun'] && shouldRunNow) run([].concat(Module["arguments"]));
5885 args = args || Module['arguments'];
5984 run([].concat(Module["arguments"]));