Lines Matching defs:arguments
36 arguments: ['-scale-to', '512', 'input.pdf'],
111 Module['arguments'] = process['argv'].slice(2);
130 Module['arguments'] = scriptArgs;
131 } else if (typeof arguments != 'undefined') {
132 Module['arguments'] = arguments;
147 if (typeof arguments != 'undefined') {
148 Module['arguments'] = arguments;
193 if (!Module['arguments']) {
194 Module['arguments'] = [];
309 var args = typeof arguments[0] === 'object' ? arguments[0] : arguments;
480 return Runtime.dynCall(sig, func, arguments);
598 // @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,
600 // @param args An array of the arguments to the function, as native JS values (as in returnType)
601 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
662 return ccallFunc(func, returnType, argTypes, Array.prototype.slice.call(arguments));
1545 var paths = Array.prototype.slice.call(arguments, 0);
1552 for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
1553 var path = (i >= 0) ? arguments[i] : FS.cwd();
1556 throw new TypeError('Arguments to path.resolve must be strings');
1988 return MEMFS.mount.apply(null, arguments);
3668 return fn.apply(null, arguments);
4812 if (!ABORT) return func.apply(null, arguments);
6056 var typeArray = Array.prototype.slice.call(arguments, 2);
9118 args = args || Module['arguments'];