Lines Matching refs:rURL

85     const util::URL & rURL )  in getDispatchForURL()  argument
88 tDispatchMap::const_iterator aIt( m_aCachedDispatches.find( rURL.Complete )); in getDispatchForURL()
97 if( xModel.is() && (rURL.Path.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Undo" )) in getDispatchForURL()
98 || rURL.Path.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Redo" ))) ) in getDispatchForURL()
107 else if( xModel.is() && (rURL.Path.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Context" )) in getDispatchForURL()
108 || rURL.Path.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ModifiedStatus" ))) ) in getDispatchForURL()
119 … (m_aContainerDocumentCommands.find( rURL.Path ) != m_aContainerDocumentCommands.end()) ) in getDispatchForURL()
121 xResult.set( getContainerDispatchForURL( xModel->getCurrentController(), rURL )); in getDispatchForURL()
123 m_aCachedDispatches[ rURL.Complete ].set( xResult ); in getDispatchForURL()
126 (m_aChartCommands.find( rURL.Path ) != m_aChartCommands.end()) ) in getDispatchForURL()
129 m_aCachedDispatches[ rURL.Complete ].set( xResult ); in getDispatchForURL()
135 … else if ( m_pDrawCommandDispatch && m_pDrawCommandDispatch->isFeatureSupported( rURL.Complete ) ) in getDispatchForURL()
138 m_aCachedDispatches[ rURL.Complete ].set( xResult ); in getDispatchForURL()
140 else if ( m_pShapeController && m_pShapeController->isFeatureSupported( rURL.Complete ) ) in getDispatchForURL()
143 m_aCachedDispatches[ rURL.Complete ].set( xResult ); in getDispatchForURL()
178 const util::URL & rURL ) in getContainerDispatchForURL() argument
188 xResult.set( xDispProv->queryDispatch( rURL, C2U("_self"), 0 )); in getContainerDispatchForURL()