Lines Matching refs:rDescriptor
68 ShellDescriptor (const ShellDescriptor& rDescriptor);
69 ShellDescriptor& operator= (const ShellDescriptor& rDescriptor);
84 bool operator() (const ShellDescriptor& rDescriptor) in operator ()() argument
85 { return rDescriptor.mpShell == mpShell; } in operator ()()
100 bool operator() (const ShellDescriptor& rDescriptor) in operator ()() argument
101 { return rDescriptor.mnId == mnId; } in operator ()()
130 void ActivateShell (const ShellDescriptor& rDescriptor);
246 void DestroyViewShell (ShellDescriptor& rDescriptor);
249 const ShellDescriptor& rDescriptor);
590 void ViewShellManager::Implementation::ActivateShell (const ShellDescriptor& rDescriptor) in ActivateShell() argument
593 if (rDescriptor.mpShell != NULL) in ActivateShell()
603 && ! rDescriptor.IsMainViewShell() in ActivateShell()
610 rDescriptor); in ActivateShell()
1250 ShellDescriptor& rDescriptor) in DestroyViewShell() argument
1252 OSL_ASSERT(rDescriptor.mpShell != NULL); in DestroyViewShell()
1254 if (rDescriptor.mbIsListenerAddedToWindow) in DestroyViewShell()
1256 rDescriptor.mbIsListenerAddedToWindow = false; in DestroyViewShell()
1257 ::Window* pWindow = rDescriptor.GetWindow(); in DestroyViewShell()
1267 maShellFactories.equal_range(rDescriptor.mpShell)); in DestroyViewShell()
1272 if (rDescriptor.mpFactory.get() != NULL) in DestroyViewShell()
1273 rDescriptor.mpFactory->ReleaseShell(rDescriptor.mpShell); in DestroyViewShell()
1281 const ShellDescriptor& rDescriptor) in DestroySubShell() argument
1284 OSL_ASSERT(rDescriptor.mpFactory.get() != NULL); in DestroySubShell()
1285 rDescriptor.mpFactory->ReleaseShell(rDescriptor.mpShell); in DestroySubShell()
1445 ShellDescriptor::ShellDescriptor (const ShellDescriptor& rDescriptor) in ShellDescriptor() argument
1446 : mpShell(rDescriptor.mpShell), in ShellDescriptor()
1447 mnId(rDescriptor.mnId), in ShellDescriptor()
1448 mpFactory(rDescriptor.mpFactory), in ShellDescriptor()
1449 mbIsListenerAddedToWindow(rDescriptor.mbIsListenerAddedToWindow) in ShellDescriptor()
1456 ShellDescriptor& ShellDescriptor::operator= (const ShellDescriptor& rDescriptor) in operator =() argument
1458 if (this != &rDescriptor) in operator =()
1460 mpShell = rDescriptor.mpShell; in operator =()
1461 mnId = rDescriptor.mnId; in operator =()
1462 mpFactory = rDescriptor.mpFactory; in operator =()
1463 mbIsListenerAddedToWindow = rDescriptor.mbIsListenerAddedToWindow; in operator =()