Home
last modified time | relevance | path

Searched refs:regular_exports_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/ast/
Dmodules.cc119 ModuleInfo::kRegularExportLength * regular_exports_.size(), zone); in SerializeRegularExports()
122 for (auto it = regular_exports_.begin(); it != regular_exports_.end();) { in SerializeRegularExports()
131 } while (next != regular_exports_.end() && next->first == it->first); in SerializeRegularExports()
187 for (auto it = regular_exports_.begin(); it != regular_exports_.end();) { in MakeIndirectExportsExplicit()
211 it = regular_exports_.erase(it); in MakeIndirectExportsExplicit()
227 for (auto it = regular_exports_.begin(); it != regular_exports_.end();) { in AssignCellIndices()
239 } while (it != regular_exports_.end() && it->first == current_key); in AssignCellIndices()
281 for (const auto& elem : regular_exports_) { in FindDuplicateExport()
309 for (const auto& elem : regular_exports_) { in Validate()
Dmodules.h26 regular_exports_(zone), in ModuleDescriptor()
140 return regular_exports_; in regular_exports()
148 regular_exports_.insert(std::make_pair(entry->local_name, entry)); in AddRegularExport()
185 ZoneMultimap<const AstRawString*, Entry*> regular_exports_; variable