Home
last modified time | relevance | path

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

/external/v8/src/ast/
Dmodules.cc142 ModuleInfo::kRegularExportLength * regular_exports_.size(), zone); in SerializeRegularExports()
145 for (auto it = regular_exports_.begin(); it != regular_exports_.end();) { in SerializeRegularExports()
154 } while (next != regular_exports_.end() && next->first == it->first); in SerializeRegularExports()
210 for (auto it = regular_exports_.begin(); it != regular_exports_.end();) { in MakeIndirectExportsExplicit()
234 it = regular_exports_.erase(it); in MakeIndirectExportsExplicit()
250 for (auto it = regular_exports_.begin(); it != regular_exports_.end();) { in AssignCellIndices()
262 } while (it != regular_exports_.end() && it->first == current_key); in AssignCellIndices()
304 for (const auto& elem : regular_exports_) { in FindDuplicateExport()
332 for (const auto& elem : regular_exports_) { in Validate()
Dmodules.h26 regular_exports_(zone), in ModuleDescriptor()
158 const RegularExportMap& regular_exports() const { return regular_exports_; } in regular_exports()
165 regular_exports_.insert(std::make_pair(entry->local_name, entry)); in AddRegularExport()
201 RegularExportMap regular_exports_; variable