Lines Matching refs:it
68 auto it = strategies_.find(mode_); in CheckMode() local
69 if (it == strategies_.end()) { in CheckMode()
73 return {true, it}; in CheckMode()
78 if (auto [res, it] = CheckMode(); res) { in ShowLog()
79 ShowMsg(it->second.labelLogId, tag, isClear); in ShowLog()
85 if (auto [res, it] = CheckMode(); res) { in ShowLogRes()
86 ShowMsg(it->second.labelLogResId, tag, isClear); in ShowLogRes()
92 if (auto [res, it] = CheckMode(); res) { in ShowUpdInfo()
93 ShowMsg(it->second.labelUpdId, tag, isClear); in ShowUpdInfo()
107 if (auto it = progressMap_.find(mode_); it->second != nullptr) { in ShowProgress() local
108 it->second->ShowProgress(value); in ShowProgress()
116 if (auto [res, it] = CheckMode(); res) { in IsInProgress()
117 return pgMgr_[it->second.progressPage.progressPageId].IsVisible(); in IsInProgress()
127 if (auto it = logoMap_.find(mode_); it->second != nullptr) { in SetLogoVisible() local
128 isVisible ? it->second->Show() : it->second->Hide(); in SetLogoVisible()
139 if (auto it = progressMap_.find(mode_); it->second != nullptr) { in SetProgressVisible() local
140 isVisible ? it->second->Show() : it->second->Hide(); in SetProgressVisible()
148 if (auto [res, it] = CheckMode(); res) { in ShowProgressWarning()
149 auto &progressPg = it->second.progressPage; in ShowProgressWarning()
156 auto [res, it] = CheckMode(); in ShowProgressPage()
163 pgMgr_.ShowPage(it->second.progressPage.progressPageId); in ShowProgressPage()
169 auto [res, it] = CheckMode(); in ShowSuccessPage()
177 pgMgr_.ShowPage(it->second.resPage.successPageId); in ShowSuccessPage()
182 auto [res, it] = CheckMode(); in ShowFailedPage()
190 pgMgr_.ShowPage(it->second.resPage.failPageId); in ShowFailedPage()
195 auto [res, it] = CheckMode(); in ShowFactoryConfirmPage()
201 pgMgr_.ShowPage(it->second.confirmPageId); in ShowFactoryConfirmPage()
211 auto [res, it] = CheckMode(); in ClearText()
216 ShowMsg(it->second.labelUpdId, ""); in ClearText()
221 if (auto [res, it] = CheckMode(); res) { in ClearLog()
222 ShowMsg(it->second.labelLogId, ""); in ClearLog()
223 ShowMsg(it->second.labelLogResId, ""); in ClearLog()
243 auto [res, it] = CheckMode(); in SetLogoProgress()
247 const ProgressPage &progressPage { it->second.progressPage }; in SetLogoProgress()