Lines Matching refs:nNewPos
1260 long nNewPos = pHScrl->GetThumbPos(); in ImplHandleScroll() local
1263 nNewPos += pHScrl->GetPageSize(); in ImplHandleScroll()
1265 nNewPos -= pHScrl->GetPageSize(); in ImplHandleScroll()
1268 const double fVal = (double)nNewPos - ((double)nX * pHScrl->GetLineSize()); in ImplHandleScroll()
1271 nNewPos = LONG_MIN; in ImplHandleScroll()
1273 nNewPos = LONG_MAX; in ImplHandleScroll()
1275 nNewPos = (long)fVal; in ImplHandleScroll()
1278 pHScrl->DoScroll( nNewPos ); in ImplHandleScroll()
1283 long nNewPos = pVScrl->GetThumbPos(); in ImplHandleScroll() local
1286 nNewPos += pVScrl->GetPageSize(); in ImplHandleScroll()
1288 nNewPos -= pVScrl->GetPageSize(); in ImplHandleScroll()
1291 const double fVal = (double)nNewPos - ((double)nY * pVScrl->GetLineSize()); in ImplHandleScroll()
1294 nNewPos = LONG_MIN; in ImplHandleScroll()
1296 nNewPos = LONG_MAX; in ImplHandleScroll()
1298 nNewPos = (long)fVal; in ImplHandleScroll()
1301 pVScrl->DoScroll( nNewPos ); in ImplHandleScroll()