Searched defs:NodeFactory (Results 1 - 2 of 2) sorted by last modified time

/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h21 /** \class NodeFactory
22 * \brief NodeFactory manages the creation and destruction of mcld::Node.
24 * NodeFactory guarantees all allocated memory are released finally. When
25 * the destructor of NodeFactory is called, all allocated memory are freed.
27 * NodeFactory provides delegation of memory. Sometimes, we have to merge two
28 * NodeFactories, and NodeFactory::delegate() can move the memory from one
34 class NodeFactory : public GCFactory<Node<DataType>, 64> class in namespace:mcld
55 void delegate(NodeFactory& pClient) {
79 void replace(NodeFactory& pClient) {
87 void concatenate(NodeFactory
[all...]
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h35 class NodeFactory;
39 friend class NodeFactory;
59 class NodeFactory : public mcld::GCFactory<Node, 0> { class in class:mcldtest::GCFactoryListTraitsTest
61 NodeFactory() : mcld::GCFactory<Node, 0>(16) { } function in class:mcldtest::GCFactoryListTraitsTest::NodeFactory
89 NodeFactory m_NodeFactory;

Completed in 5 milliseconds