Lines Matching refs:xProgress

132     css::uno::Reference< css::task::XStatusIndicator > xProgress = m_xProgress;  in start()  local
139 if (xProgress.is()) in start()
140 xProgress->start(sText, nRange); in start()
160 css::uno::Reference< css::task::XStatusIndicator > xProgress = m_xProgress; in reset() local
169 (xProgress.is() ) in reset()
171 xProgress->reset(); in reset()
199 css::uno::Reference< css::task::XStatusIndicator > xProgress = m_xProgress; in end() local
208 if (xProgress.is()) in end()
210 xProgress->setText (sText ); in end()
211 xProgress->setValue(nValue); in end()
218 if (xProgress.is()) in end()
219 xProgress->end(); in end()
240 css::uno::Reference< css::task::XStatusIndicator > xProgress = m_xProgress; in setText() local
249 (xProgress.is() ) in setText()
252 xProgress->setText(sText); in setText()
273 css::uno::Reference< css::task::XStatusIndicator > xProgress = m_xProgress; in setValue() local
281 (xProgress.is() ) in setValue()
284 xProgress->setValue(nValue); in setValue()
393 css::uno::Reference< css::task::XStatusIndicator > xProgress; in impl_createProgress() local
399xProgress.set(static_cast< css::task::XStatusIndicator* >(pVCLProgress), css::uno::UNO_QUERY); in impl_createProgress()
418 xProgress.set(xProgressBar->getRealInterface(), css::uno::UNO_QUERY); in impl_createProgress()
425 m_xProgress = xProgress; in impl_createProgress()
438 css::uno::Reference< css::task::XStatusIndicator > xProgress; in impl_showProgress() local
459 xProgress.set(xProgressBar->getRealInterface(), css::uno::UNO_QUERY); in impl_showProgress()
464 m_xProgress = xProgress; in impl_showProgress()