Searched refs:avfactory (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/ast/ |
D | modules.cc | 102 AstValueFactory* avfactory, in FromStringOrUndefined() argument 105 return avfactory->GetString(Handle<String>::cast(object)); in FromStringOrUndefined() 121 Isolate* isolate, AstValueFactory* avfactory, in Deserialize() argument 123 Entry* result = new (avfactory->zone()) Entry(Scanner::Location::invalid()); in Deserialize() 125 isolate, avfactory, handle(entry->export_name(), isolate)); in Deserialize() 127 isolate, avfactory, handle(entry->local_name(), isolate)); in Deserialize() 129 isolate, avfactory, handle(entry->import_name(), isolate)); in Deserialize() 187 Isolate* isolate, AstValueFactory* avfactory, in DeserializeRegularExports() argument 199 new (avfactory->zone()) Entry(Scanner::Location::invalid()); in DeserializeRegularExports() 200 entry->local_name = avfactory->GetString(local_name); in DeserializeRegularExports() [all …]
|
D | modules.h | 114 static Entry* Deserialize(Isolate* isolate, AstValueFactory* avfactory, 194 void DeserializeRegularExports(Isolate* isolate, AstValueFactory* avfactory,
|
D | scopes.cc | 211 AstValueFactory* avfactory) in ModuleScope() argument 212 : DeclarationScope(avfactory->zone(), MODULE_SCOPE, scope_info) { in ModuleScope() 213 Zone* zone = avfactory->zone(); in ModuleScope() 225 ModuleDescriptor::Entry::Deserialize(isolate, avfactory, in ModuleScope() 227 avfactory->zone()); in ModuleScope() 231 module_descriptor_->DeserializeRegularExports(isolate, avfactory, in ModuleScope() 241 ModuleDescriptor::Entry::Deserialize(isolate, avfactory, in ModuleScope() 243 avfactory->zone()); in ModuleScope() 252 isolate, avfactory, serialized_entry)); in ModuleScope()
|
/external/v8/src/parsing/ |
D | parser.cc | 1997 auto avfactory = ast_value_factory(); in InitializeForOfStatement() local 1999 Variable* iterator = NewTemporary(avfactory->dot_iterator_string()); in InitializeForOfStatement() 2000 Variable* next = NewTemporary(avfactory->empty_string()); in InitializeForOfStatement() 2001 Variable* result = NewTemporary(avfactory->dot_result_string()); in InitializeForOfStatement() 2002 Variable* completion = NewTemporary(avfactory->empty_string()); in InitializeForOfStatement() 2019 avfactory->next_string(), kNoSourcePosition), in InitializeForOfStatement() 2053 factory()->NewStringLiteral(avfactory->value_string(), nopos); in InitializeForOfStatement() 2061 Variable* tmp = NewTemporary(avfactory->empty_string()); in InitializeForOfStatement()
|