Lines Matching refs:pSep

296         ImplRegionBandSep* pSep = pBand->mpFirstSep;  in save()  local
298 while(pSep) in save()
302 rOStrm << pSep->mnXLeft; in save()
303 rOStrm << pSep->mnXRight; in save()
306 pSep = pSep->mpNextSep; in save()
643 ImplRegionBandSep* pSep = pBand->mpFirstSep; in OptimizeBandList() local
644 while ( pSep ) in OptimizeBandList()
646 pSep = pSep->mpNextSep; in OptimizeBandList()
984 ImplRegionBandSep* pSep = pBand->mpFirstSep; in Union() local
986 while(pSep) in Union()
988 Union(pSep->mnXLeft, pBand->mnYTop, pSep->mnXRight, pBand->mnYBottom); in Union()
989 pSep = pSep->mpNextSep; in Union()
1101 ImplRegionBandSep* pSep = pBand->mpFirstSep; in Intersect() local
1103 while ( pSep ) in Intersect()
1106 if ( pSep == pBand->mpFirstSep ) in Intersect()
1109 Exclude( LONG_MIN+1, pBand->mnYTop, pSep->mnXLeft-1, pBand->mnYBottom ); in Intersect()
1113 if ( pSep->mpNextSep == NULL ) in Intersect()
1116 Exclude( pSep->mnXRight+1, pBand->mnYTop, LONG_MAX-1, pBand->mnYBottom ); in Intersect()
1121 Exclude( pSep->mnXRight+1, pBand->mnYTop, pSep->mpNextSep->mnXLeft-1, pBand->mnYBottom ); in Intersect()
1124 pSep = pSep->mpNextSep; in Intersect()
1175 ImplRegionBandSep* pSep = pBand->mpFirstSep; in Exclude() local
1177 while ( pSep ) in Exclude()
1179 Exclude( pSep->mnXLeft, pBand->mnYTop, pSep->mnXRight, pBand->mnYBottom ); in Exclude()
1180 pSep = pSep->mpNextSep; in Exclude()
1232 ImplRegionBandSep* pSep = pBand->mpFirstSep; in XOr() local
1234 while ( pSep ) in XOr()
1236 XOr( pSep->mnXLeft, pBand->mnYTop, pSep->mnXRight, pBand->mnYBottom ); in XOr()
1237 pSep = pSep->mpNextSep; in XOr()
1307 ImplRegionBandSep* pSep = pBand->mpFirstSep; in getRectangleCount() local
1309 while(pSep) in getRectangleCount()
1312 pSep = pSep->mpNextSep; in getRectangleCount()
1350 ImplRegionBandSep* pSep = pBand->mpFirstSep; in ImplDbgTestRegionBand() local
1352 while(pSep) in ImplDbgTestRegionBand()
1354 if(pSep->mnXRight < pSep->mnXLeft) in ImplDbgTestRegionBand()
1359 if(pSep->mpNextSep) in ImplDbgTestRegionBand()
1361 if(pSep->mnXRight >= pSep->mpNextSep->mnXLeft) in ImplDbgTestRegionBand()
1367 if ( pSep->mbRemoved ) in ImplDbgTestRegionBand()
1372 pSep = pSep->mpNextSep; in ImplDbgTestRegionBand()