Lines Matching refs:it

63     auto it = strategies_.find(mode_);  in CheckMode()  local
64 if (it == strategies_.end()) { in CheckMode()
68 return {true, it}; in CheckMode()
73 if (auto [res, it] = CheckMode(); res) { in ShowLog()
74 ShowMsg(it->second.labelLogId, tag, isClear); in ShowLog()
80 if (auto [res, it] = CheckMode(); res) { in ShowLogRes()
81 ShowMsg(it->second.labelLogResId, tag, isClear); in ShowLogRes()
87 if (auto [res, it] = CheckMode(); res) { in ShowUpdInfo()
88 ShowMsg(it->second.labelUpdId, tag, isClear); in ShowUpdInfo()
107 if (auto it = progressMap_.find(mode_); it->second != nullptr) { in ShowProgress() local
109 it->second->ShowProgress(value); in ShowProgress()
117 if (auto [res, it] = CheckMode(); res) { in IsInProgress()
118 return pgMgr_[it->second.progressPage.progressPageId].IsVisible(); in IsInProgress()
128 if (auto it = logoMap_.find(mode_); it->second != nullptr) { in SetLogoVisible() local
129 isVisible ? it->second->Show() : it->second->Hide(); in SetLogoVisible()
140 if (auto it = progressMap_.find(mode_); it->second != nullptr) { in SetProgressVisible() local
141 isVisible ? it->second->Show() : it->second->Hide(); in SetProgressVisible()
149 if (auto [res, it] = CheckMode(); res) { in ShowProgressWarning()
150 auto &progressPg = it->second.progressPage; in ShowProgressWarning()
157 auto [res, it] = CheckMode(); in ShowProgressPage()
164 pgMgr_.ShowPage(it->second.progressPage.progressPageId); in ShowProgressPage()
170 auto [res, it] = CheckMode(); in ShowSuccessPage()
178 pgMgr_.ShowPage(it->second.resPage.successPageId); in ShowSuccessPage()
183 auto [res, it] = CheckMode(); in ShowFailedPage()
191 pgMgr_.ShowPage(it->second.resPage.failPageId); in ShowFailedPage()
196 auto [res, it] = CheckMode(); in ShowFactoryConfirmPage()
202 pgMgr_.ShowPage(it->second.confirmPageId); in ShowFactoryConfirmPage()
212 auto [res, it] = CheckMode(); in ClearText()
217 ShowMsg(it->second.labelUpdId, ""); in ClearText()
222 if (auto [res, it] = CheckMode(); res) { in ClearLog()
223 ShowMsg(it->second.labelLogId, ""); in ClearLog()
224 ShowMsg(it->second.labelLogResId, ""); in ClearLog()
244 auto [res, it] = CheckMode(); in SetLogoProgress()
248 const ProgressPage &progressPage { it->second.progressPage }; in SetLogoProgress()