Home | History | Annotate | Download | only in ADT

Lines Matching defs:AL

60     AllocatorList &AL;
62 Cloner(AllocatorList &AL) : AL(AL) {}
64 Node *operator()(const Node &N) const { return AL.create(N.V); }
68 AllocatorList &AL;
70 Disposer(AllocatorList &AL) : AL(AL) {}
74 AL.getAlloc().Deallocate(N);