Home
last modified time | relevance | path

Searched refs:export_name (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/ast/
Dmodules.cc13 void ModuleDescriptor::AddLocalExport(const AstRawString* export_name, in AddLocalExport() argument
17 void* key = const_cast<AstRawString*>(export_name); in AddLocalExport()
28 exports_->LookupOrInsert(key, export_name->hash(), allocator); in AddLocalExport()
50 const AstRawString* export_name, Zone* zone) { in LookupLocalExport() argument
53 const_cast<AstRawString*>(export_name), export_name->hash()); in LookupLocalExport()
Dmodules.h31 void AddLocalExport(const AstRawString* export_name,
65 const AstRawString* LookupLocalExport(const AstRawString* export_name,
82 const AstRawString* export_name() const { in export_name() function
Dscopeinfo.cc848 info->set_name(i, *(it.export_name()->string())); in Create()
/external/v8/src/parsing/
Dparser.cc1390 const AstRawString* export_name = NULL; in ParseExportClause() local
1392 export_name = ParseIdentifierName(CHECK_OK); in ParseExportClause()
1394 if (export_name == NULL) { in ParseExportClause()
1395 export_name = local_name; in ParseExportClause()
1397 export_names->Add(export_name, zone()); in ParseExportClause()
/external/v8/test/cctest/
Dtest-parsing.cc5777 const i::AstRawString* export_name = in TEST() local
5780 descriptor->LookupLocalExport(export_name, &zone); in TEST()