Home | History | Annotate | Download | only in src

Lines Matching full:delayms

227 CV_IMPL void cvDisplayOverlay(const char* name, const char* text, int delayms)
237 Q_ARG(int, delayms));
265 CV_IMPL void cvDisplayStatusBar(const char* name, const char* text, int delayms)
275 Q_ARG(int, delayms));
286 unsigned long delayms = delay <= 0 ? ULONG_MAX : delay; //in milliseconds
291 if (key_pressed.wait(&mutexKey, delayms)) //false if timeout
965 void GuiReceiver::displayInfo(QString name, QString text, int delayms)
970 w->displayInfo(text, delayms);
974 void GuiReceiver::displayStatusBar(QString name, QString text, int delayms)
979 w->displayStatusBar(text, delayms);
1773 void CvWindow::displayInfo(QString text, int delayms)
1775 myView->startDisplayInfo(text, delayms);
1779 void CvWindow::displayStatusBar(QString text, int delayms)
1782 myStatusBar->showMessage(text, delayms);
2428 void DefaultViewPort::startDisplayInfo(QString text, int delayms)
2434 if (delayms > 0) timerDisplay->start(delayms);
3128 void OpenGlViewPort::startDisplayInfo(QString /*text*/, int /*delayms*/)