Lines Matching refs:args
239 constructor(...args){ argument
240 if(1===args.length && __isInt(args[0])){
241 super(__rcStr(args[0]));
242 }else if(2===args.length && 'object'===typeof args){
243 if(__isInt(args[0])) super(__rcStr(args[0]), args[1]);
244 else super(...args);
246 super(args.join(' '));
260 SQLite3Error.toss = (...args)=>{ argument
261 throw new SQLite3Error(...args);
410 constructor(...args){ argument
411 if(2===args.length && 'object'===typeof args){
412 super(...args);
413 }else if(args.length){
414 super(args.join(' '));
429 WasmAllocError.toss = (...args)=>{ argument
430 throw new WasmAllocError(...args);
1162 capi.sqlite3_randomness = (...args)=>{ argument
1163 if(1===args.length && util.isTypedArray(args[0])
1164 && 1===args[0].BYTES_PER_ELEMENT){
1165 const ta = args[0];
1192 wasm.exports.sqlite3_randomness(...args);