Lines Matching defs:allocator
218 …Variable *AddDecl(ArenaAllocator *allocator, Decl *decl, [[maybe_unused]] ScriptExtension extensio… in AddDecl()
226 …Variable *AddTsDecl(ArenaAllocator *allocator, Decl *decl, [[maybe_unused]] ScriptExtension extens… in AddTsDecl()
255 ArenaMap<util::StringView, Variable *> OrderedBindings(ArenaAllocator *allocator) const in OrderedBindings()
283 explicit Scope(ArenaAllocator *allocator, Scope *parent) in Scope()
288 explicit Scope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) in Scope()
400 explicit VariableScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in VariableScope()
441 explicit ParamScope(ArenaAllocator *allocator, Scope *parent) in ParamScope()
456 …explicit FunctionParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, pare… in FunctionParamScope()
495 …explicit ScopeWithParamScope(ArenaAllocator *allocator, Scope *parent) : E(allocator, parent), par… in ScopeWithParamScope()
528 explicit LocalScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in LocalScope()
529 …explicit LocalScope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) : Scope(allocator,… in LocalScope()
542 explicit LocalScopeWithTypeAlias(ArenaAllocator *allocator, Scope *parent) in LocalScopeWithTypeAlias()
547 explicit LocalScopeWithTypeAlias(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) in LocalScopeWithTypeAlias()
574 explicit FunctionScope(ArenaAllocator *allocator, Scope *parent) in FunctionScope()
623 explicit ClassScope(ArenaAllocator *allocator, Scope *parent) in ClassScope()
756 …explicit CatchParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, parent)… in CatchParamScope()
771 …explicit CatchScope(ArenaAllocator *allocator, Scope *parent) : ScopeWithParamScope(allocator, par… in CatchScope()
786 …explicit LoopDeclarationScope(ArenaAllocator *allocator, Scope *parent) : VariableScope(allocator,… in LoopDeclarationScope()
793 Variable *AddBinding(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl, in AddBinding()
819 … explicit LoopScope(ArenaAllocator *allocator, Scope *parent) : VariableScope(allocator, parent) {} in LoopScope()
839 Variable *AddBinding(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl, in AddBinding()
854 explicit GlobalScope(ArenaAllocator *allocator) in GlobalScope()
894 explicit ModuleScope(ArenaAllocator *allocator) in ModuleScope()
944 Variable *VariableScope::AddVar(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl) in AddVar()
966 Variable *VariableScope::AddFunction(ArenaAllocator *allocator, Variable *currentVariable, Decl *ne… in AddFunction()
992 Variable *VariableScope::AddTSBinding(ArenaAllocator *allocator, [[maybe_unused]] Variable *current… in AddTSBinding()
1000 Variable *VariableScope::AddLexical(ArenaAllocator *allocator, Variable *currentVariable, Decl *new… in AddLexical()
1010 T *Scope::NewDecl(ArenaAllocator *allocator, Args &&...args) in NewDecl()
1019 VariableType *Scope::AddDecl(ArenaAllocator *allocator, util::StringView name, VariableFlags flags) in AddDecl()
1036 VariableType *Scope::CreateVar(ArenaAllocator *allocator, util::StringView name, VariableFlags flag… in CreateVar()
1045 Variable *Scope::PropagateBinding(ArenaAllocator *allocator, util::StringView name, Args &&...args) in PropagateBinding()