Home | History | Annotate | Download | only in embenchen

Lines Matching defs:arguments

8   arguments: [1],
110 Module['arguments'] = process['argv'].slice(2);
129 Module['arguments'] = scriptArgs;
130 } else if (typeof arguments != 'undefined') {
131 Module['arguments'] = arguments;
146 if (typeof arguments != 'undefined') {
147 Module['arguments'] = arguments;
192 if (!Module['arguments']) {
193 Module['arguments'] = [];
308 var args = typeof arguments[0] === 'object' ? arguments[0] : arguments;
485 return Runtime.dynCall(sig, func, arguments);
611 // @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,
613 // @param args An array of the arguments to the function, as native JS values (as in returnType)
614 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
675 return ccallFunc(func, returnType, argTypes, Array.prototype.slice.call(arguments));
1526 var paths = Array.prototype.slice.call(arguments, 0);
1533 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
1534 var path = (i >= 0) ? arguments[i] : FS.cwd();
1537 throw new TypeError('Arguments to path.resolve must be strings');
1969 return MEMFS.mount.apply(null, arguments);
3781 return fn.apply(null, arguments);
4817 // NOTE: The dir and prefix arguments are for internal use only.
5160 if (!ABORT) return func.apply(null, arguments);
42550 if (!Module['calledRun'] && shouldRunNow) run(['binarytrees.lua'].concat(Module["arguments"]));
42611 args = args || Module['arguments'];
42710 run(['binarytrees.lua'].concat(Module["arguments"]));