Lines Matching refs:pFrameWindow
1021 Window* pFrameWindow = ImplGetSVData()->maWinData.mpFirstFrame; in ImplSetFrameParent() local
1022 while( pFrameWindow ) in ImplSetFrameParent()
1026 if( ImplIsRealParentPath( pFrameWindow ) ) in ImplSetFrameParent()
1028 …DBG_ASSERT( mpWindowImpl->mpFrame != pFrameWindow->mpWindowImpl->mpFrame, "SetFrameParent to own" … in ImplSetFrameParent()
1031 pFrameWindow->mpWindowImpl->mpFrame->SetParent( pParentFrame ); in ImplSetFrameParent()
1033 pFrameWindow = pFrameWindow->mpWindowImpl->mpFrameData->mpNextFrame; in ImplSetFrameParent()
9672 Window* pFrameWindow = mpWindowImpl->mpFrameWindow; in ImplIncModalCount() local
9673 Window* pParent = pFrameWindow; in ImplIncModalCount()
9674 while( pFrameWindow ) in ImplIncModalCount()
9676 pFrameWindow->mpWindowImpl->mpFrameData->mnModalMode++; in ImplIncModalCount()
9677 while( pParent && pParent->mpWindowImpl->mpFrameWindow == pFrameWindow ) in ImplIncModalCount()
9681 pFrameWindow = pParent ? pParent->mpWindowImpl->mpFrameWindow : NULL; in ImplIncModalCount()
9686 Window* pFrameWindow = mpWindowImpl->mpFrameWindow; in ImplDecModalCount() local
9687 Window* pParent = pFrameWindow; in ImplDecModalCount()
9688 while( pFrameWindow ) in ImplDecModalCount()
9690 pFrameWindow->mpWindowImpl->mpFrameData->mnModalMode--; in ImplDecModalCount()
9691 while( pParent && pParent->mpWindowImpl->mpFrameWindow == pFrameWindow ) in ImplDecModalCount()
9695 pFrameWindow = pParent ? pParent->mpWindowImpl->mpFrameWindow : NULL; in ImplDecModalCount()