Searched refs:export_name (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/ast/ |
D | modules.cc | 13 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()
|
D | modules.h | 31 void AddLocalExport(const AstRawString* export_name, 65 const AstRawString* LookupLocalExport(const AstRawString* export_name, 82 const AstRawString* export_name() const { in export_name() function
|
D | scopeinfo.cc | 848 info->set_name(i, *(it.export_name()->string())); in Create()
|
/external/v8/src/parsing/ |
D | parser.cc | 1390 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/ |
D | test-parsing.cc | 5777 const i::AstRawString* export_name = in TEST() local 5780 descriptor->LookupLocalExport(export_name, &zone); in TEST()
|