• Home
  • Raw
  • Download

Lines Matching defs:allocator

212 …Variable *AddDecl(ArenaAllocator *allocator, Decl *decl, [[maybe_unused]] ScriptExtension extensio…  in AddDecl()
219 …Variable *AddTsDecl(ArenaAllocator *allocator, Decl *decl, [[maybe_unused]] ScriptExtension extens… in AddTsDecl()
267 explicit Scope(ArenaAllocator *allocator, Scope *parent) in Scope()
272 explicit Scope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) in Scope()
384 explicit VariableScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in VariableScope()
425 explicit ParamScope(ArenaAllocator *allocator, Scope *parent) in ParamScope()
440 …explicit FunctionParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, pare… in FunctionParamScope()
479 explicit ScopeWithParamScope(ArenaAllocator *allocator, Scope *parent) : E(allocator, parent) {} in ScopeWithParamScope()
512 …explicit FunctionScope(ArenaAllocator *allocator, Scope *parent) : ScopeWithParamScope(allocator, … in FunctionScope()
549 explicit LocalScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in LocalScope()
550 …explicit LocalScope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) : Scope(allocator,… in LocalScope()
563 explicit ClassScope(ArenaAllocator *allocator, Scope *parent) in ClassScope()
703 …explicit CatchParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, parent)… in CatchParamScope()
718 …explicit CatchScope(ArenaAllocator *allocator, Scope *parent) : ScopeWithParamScope(allocator, par… in CatchScope()
733 …explicit LoopDeclarationScope(ArenaAllocator *allocator, Scope *parent) : VariableScope(allocator,… in LoopDeclarationScope()
740 Variable *AddBinding(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl, in AddBinding()
766 … explicit LoopScope(ArenaAllocator *allocator, Scope *parent) : VariableScope(allocator, parent) {} in LoopScope()
786 Variable *AddBinding(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl, in AddBinding()
801 explicit GlobalScope(ArenaAllocator *allocator) in GlobalScope()
841 explicit ModuleScope(ArenaAllocator *allocator) in ModuleScope()
891 Variable *VariableScope::AddVar(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl) in AddVar()
913 Variable *VariableScope::AddFunction(ArenaAllocator *allocator, Variable *currentVariable, Decl *ne… in AddFunction()
939 Variable *VariableScope::AddTSBinding(ArenaAllocator *allocator, [[maybe_unused]] Variable *current… in AddTSBinding()
947 Variable *VariableScope::AddLexical(ArenaAllocator *allocator, Variable *currentVariable, Decl *new… in AddLexical()
957 T *Scope::NewDecl(ArenaAllocator *allocator, Args &&...args) in NewDecl()
966 VariableType *Scope::AddDecl(ArenaAllocator *allocator, util::StringView name, VariableFlags flags) in AddDecl()
982 VariableType *Scope::CreateVar(ArenaAllocator *allocator, util::StringView name, VariableFlags flag… in CreateVar()
991 Variable *Scope::PropagateBinding(ArenaAllocator *allocator, util::StringView name, Args &&...args) in PropagateBinding()