Lines Matching refs:fun
1543 function runTimeout(fun) {
1546 return setTimeout(fun, 0);
1551 return setTimeout(fun, 0);
1555 return cachedSetTimeout(fun, 0);
1559 return cachedSetTimeout.call(null, fun, 0);
1562 return cachedSetTimeout.call(this, fun, 0);
1639 process.nextTick = function (fun) {
1646 queue.push(new Item(fun, args));
1653 function Item(fun, array) {
1654 this.fun = fun;
1658 this.fun.apply(null, this.array);