Searched refs:activeIndexVars_ (Results 1 – 2 of 2) sorted by relevance
268 auto it{activeIndexVars_.find(*root)}; in CheckIndexVarRedefine()269 if (it != activeIndexVars_.end()) { in CheckIndexVarRedefine()306 activeIndexVars_.emplace(*root, IndexVarInfo{name.source, kind}); in ActivateIndexVar()314 auto it{activeIndexVars_.find(*root)}; in DeactivateIndexVar()315 if (it != activeIndexVars_.end() && it->second.location == name.source) { in DeactivateIndexVar()316 activeIndexVars_.erase(it); in DeactivateIndexVar()324 for (const auto &[symbol, info] : activeIndexVars_) { in GetIndexVars()
199 std::map<SymbolRef, const IndexVarInfo> activeIndexVars_; variable