• Home
  • Raw
  • Download

Lines Matching defs:allocator

224 …Variable *AddDecl(ArenaAllocator *allocator, Decl *decl, [[maybe_unused]] ScriptExtension extensio…  in AddDecl()
232 …Variable *AddTsDecl(ArenaAllocator *allocator, Decl *decl, [[maybe_unused]] ScriptExtension extens… in AddTsDecl()
261 ArenaMap<util::StringView, Variable *> OrderedBindings(ArenaAllocator *allocator) const in OrderedBindings()
289 explicit Scope(ArenaAllocator *allocator, Scope *parent) in Scope()
294 explicit Scope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) in Scope()
406 explicit VariableScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in VariableScope()
447 explicit ParamScope(ArenaAllocator *allocator, Scope *parent) in ParamScope()
462 …explicit FunctionParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, pare… in FunctionParamScope()
501 …explicit ScopeWithParamScope(ArenaAllocator *allocator, Scope *parent) : E(allocator, parent), par… in ScopeWithParamScope()
534 explicit LocalScope(ArenaAllocator *allocator, Scope *parent) : Scope(allocator, parent) {} in LocalScope()
535 …explicit LocalScope(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) : Scope(allocator,… in LocalScope()
548 explicit LocalScopeWithTypeAlias(ArenaAllocator *allocator, Scope *parent) in LocalScopeWithTypeAlias()
553 explicit LocalScopeWithTypeAlias(ArenaAllocator *allocator, Scope *parent, ScopeFlags flags) in LocalScopeWithTypeAlias()
580 explicit FunctionScope(ArenaAllocator *allocator, Scope *parent) in FunctionScope()
629 explicit ClassScope(ArenaAllocator *allocator, Scope *parent) in ClassScope()
762 …explicit AnnotationScope(ArenaAllocator *allocator, Scope *parent) : ClassScope(allocator, parent)… in AnnotationScope()
772 …explicit AnnotationParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, pa… in AnnotationParamScope()
785 …explicit CatchParamScope(ArenaAllocator *allocator, Scope *parent) : ParamScope(allocator, parent)… in CatchParamScope()
800 …explicit CatchScope(ArenaAllocator *allocator, Scope *parent) : ScopeWithParamScope(allocator, par… in CatchScope()
815 …explicit LoopDeclarationScope(ArenaAllocator *allocator, Scope *parent) : VariableScope(allocator,… in LoopDeclarationScope()
822 Variable *AddBinding(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl, in AddBinding()
848 explicit LoopScope(ArenaAllocator *allocator, Scope *parent) : VariableScope(allocator, parent) in LoopScope()
874 Variable *AddBinding(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl, in AddBinding()
889 explicit GlobalScope(ArenaAllocator *allocator) in GlobalScope()
929 explicit ModuleScope(ArenaAllocator *allocator) in ModuleScope()
979 Variable *VariableScope::AddVar(ArenaAllocator *allocator, Variable *currentVariable, Decl *newDecl) in AddVar()
1001 Variable *VariableScope::AddFunction(ArenaAllocator *allocator, Variable *currentVariable, Decl *ne… in AddFunction()
1027 Variable *VariableScope::AddTSBinding(ArenaAllocator *allocator, [[maybe_unused]] Variable *current… in AddTSBinding()
1035 Variable *VariableScope::AddLexical(ArenaAllocator *allocator, Variable *currentVariable, Decl *new… in AddLexical()
1045 T *Scope::NewDecl(ArenaAllocator *allocator, Args &&...args) in NewDecl()
1054 VariableType *Scope::AddDecl(ArenaAllocator *allocator, util::StringView name, VariableFlags flags) in AddDecl()
1071 VariableType *Scope::CreateVar(ArenaAllocator *allocator, util::StringView name, VariableFlags flag… in CreateVar()
1080 Variable *Scope::PropagateBinding(ArenaAllocator *allocator, util::StringView name, Args &&...args) in PropagateBinding()