• Home
  • Raw
  • Download

Lines Matching refs:AstRawString

50                                const AstRawString* name, VariableMode mode,  in Declare()
59 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(), in Declare()
71 Variable* VariableMap::DeclareName(Zone* zone, const AstRawString* name, in DeclareName()
74 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(), in DeclareName()
86 const AstRawString* name = var->raw_name(); in Remove()
87 ZoneHashMap::Remove(const_cast<AstRawString*>(name), name->Hash()); in Remove()
91 const AstRawString* name = var->raw_name(); in Add()
93 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(), in Add()
100 Variable* VariableMap::Lookup(const AstRawString* name) { in Lookup()
101 Entry* p = ZoneHashMap::Lookup(const_cast<AstRawString*>(name), name->Hash()); in Lookup()
103 DCHECK(reinterpret_cast<const AstRawString*>(p->key) == name); in Lookup()
119 void SloppyBlockFunctionMap::Declare(Zone* zone, const AstRawString* name, in Declare()
126 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(), in Declare()
193 bool DeclarationScope::IsDeclaredParameter(const AstRawString* name) { in IsDeclaredParameter()
285 Scope::Scope(Zone* zone, const AstRawString* catch_variable_name, in Scope()
502 const AstRawString* name, Scope* scope, in DeclareSloppyBlockFunction()
526 ZoneMap<int, const AstRawString*> names_to_declare(zone()); in HoistSloppyBlockFunctions()
531 const AstRawString* name = static_cast<AstRawString*>(p->key); in HoistSloppyBlockFunctions()
609 const AstRawString* name = index_and_name.second; in HoistSloppyBlockFunctions()
758 Variable* DeclarationScope::DeclareFunctionVar(const AstRawString* name) { in DeclareFunctionVar()
775 const AstRawString* name) { in DeclareGeneratorObjectVar()
785 Variable* DeclarationScope::DeclarePromiseVar(const AstRawString* name) { in DeclarePromiseVar()
873 Variable* Scope::Declare(Zone* zone, const AstRawString* name, in Declare()
963 Variable* Scope::LookupInScopeInfo(const AstRawString* name) { in LookupInScopeInfo()
1013 Variable* Scope::Lookup(const AstRawString* name) { in Lookup()
1022 const AstRawString* name, VariableMode mode, bool is_optional, bool is_rest, in DeclareParameter()
1051 const AstRawString* name, bool is_rest, AstValueFactory* ast_value_factory, in DeclareParameterName()
1078 Variable* Scope::DeclareLocal(const AstRawString* name, VariableMode mode, in DeclareLocal()
1114 const AstRawString* name = proxy->raw_name(); in DeclareVariable()
1164 map->Lookup(const_cast<AstRawString*>(name), in DeclareVariable()
1211 Variable* Scope::DeclareVariableName(const AstRawString* name, in DeclareVariableName()
1248 void Scope::DeclareCatchVariableName(const AstRawString* name) { in DeclareCatchVariableName()
1268 Variable* DeclarationScope::DeclareDynamicGlobal(const AstRawString* name, in DeclareDynamicGlobal()
1295 Variable* Scope::NewTemporary(const AstRawString* name) { in NewTemporary()
1299 Variable* Scope::NewTemporary(const AstRawString* name, in NewTemporary()
1345 const ZonePtrList<const AstRawString>& names) { in CheckLexDeclarationsConflictingWith()
1352 const AstRawString* name = names.at(i); in CheckLexDeclarationsConflictingWith()
1616 void PrintName(const AstRawString* name) { in PrintName()
1698 const AstRawString* name = params_[i]->raw_name(); in PrintParameters()
1828 Variable* Scope::NonLocal(const AstRawString* name, VariableMode mode) { in NonLocal()