Lines Matching refs:iPane

124     PaneList::iterator iPane (maPanes.begin());  in disposing()  local
126 for ( ; iPane!=iEnd; ++iPane) in disposing()
127 if ((*iPane)->mxPaneId.is()) in disposing()
128 RemovePane((*iPane)->mxPaneId); in disposing()
299 PaneList::const_iterator iPane; in FindBorderWindow() local
301 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in FindBorderWindow()
303 if ((*iPane)->mxBorderWindow == rxBorderWindow) in FindBorderWindow()
304 return *iPane; in FindBorderWindow()
315 PaneList::const_iterator iPane; in FindContentWindow() local
317 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in FindContentWindow()
319 if ((*iPane)->mxContentWindow == rxContentWindow) in FindContentWindow()
320 return *iPane; in FindContentWindow()
331 PaneList::const_iterator iPane; in FindPaneURL() local
333 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in FindPaneURL()
335 if ((*iPane)->mxPaneId->getResourceURL() == rsPaneURL) in FindPaneURL()
336 return *iPane; in FindPaneURL()
352 PaneList::iterator iPane; in FindPaneId() local
353 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in FindPaneId()
355 if (rxPaneId->compareTo((*iPane)->mxPaneId) == 0) in FindPaneId()
356 return *iPane; in FindPaneId()
368 PaneList::iterator iPane; in FindViewURL() local
369 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in FindViewURL()
371 if (rsViewURL == (*iPane)->msViewURL) in FindViewURL()
372 return *iPane; in FindViewURL()
397 PaneList::iterator iPane; in ToTop() local
399 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in ToTop()
400 if (iPane->get() == rpDescriptor.get()) in ToTop()
402 OSL_ASSERT(iPane!=iEnd); in ToTop()
403 if (iPane == iEnd) in ToTop()
409 maPanes.erase(iPane); in ToTop()