Lines Matching refs:pv
287 const pv = visit._pageViews[i];
288 if (pv.pg == view.pg) {
289 return pv;
436 let pv = model._getPageView(visitor, dat);
437 if (!pv) {
439 pv = model._makePageView(dat, type);
440 visitor._pageViews.push(pv);
444 if (!pv._seenBy.includes(type)) pv._seenBy.push(type);
445 if (pv._lastSeen.getTime() < dat.ts.getTime()) pv._lastSeen = dat.ts;
446 pv._tickCount += 1;
556 v._pageViews.forEach( pv => {
557 me.addToIPRanges(pv.ip);
1335 const pvArr = visitor._pageViews.map(pv => pv._lastSeen).sort();