Lines Matching defs:otherSmartCasts
82 void CheckerContext::RestoreSmartCasts(SmartCastArray const &otherSmartCasts)
85 if (!otherSmartCasts.empty()) {
86 for (auto [variable, type] : otherSmartCasts) {
92 void CheckerContext::RemoveSmartCasts(SmartCastArray const &otherSmartCasts) noexcept
97 if (std::find_if(otherSmartCasts.begin(), otherSmartCasts.end(), [&it](auto const &item) -> bool {
99 }) == otherSmartCasts.end()) {
122 void CheckerContext::CombineSmartCasts(SmartCastArray const &otherSmartCasts)
126 for (auto [variable, type] : otherSmartCasts) {
143 RemoveSmartCasts(otherSmartCasts);