HomeSort by relevance Sort by last modified time
    Searched refs:NodeFactory (Results 1 - 13 of 13) sorted by null

  /frameworks/compile/mclinker/unittests/
GCFactoryListTraitsTest.h 35 class NodeFactory;
39 friend class NodeFactory;
59 class NodeFactory : public mcld::GCFactory<Node, 0> {
61 NodeFactory() : mcld::GCFactory<Node, 0>(16) { }
89 NodeFactory m_NodeFactory;
FactoriesTest.h 19 * \brief Test cases for factories - NodeFactory and MCLDFileFactory.
39 typedef mcld::NodeFactory<int> NodeAlloc;
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 21 /** \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>
55 void delegate(NodeFactory& pClient) {
79 void replace(NodeFactory& pClient) {
87 void concatenate(NodeFactory& pClient)
    [all...]
BinTree.h 283 class TreeImpl : public NodeFactory<DataType>
285 typedef typename NodeFactory<DataType>::iterator iterator;
286 typedef typename NodeFactory<DataType>::const_iterator const_iterator;
293 : NodeFactory<DataType>() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
MockNodeProxy.java 42 * @param factory A {@link NodeFactory} to create unique children nodes.
44 public MockNodeProxy(String fqcn, Rectangle bounds, NodeFactory factory) {
NodeFactoryTest.java 32 private NodeFactory m;
37 m = new NodeFactory(null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeFactory.java 34 public class NodeFactory {
40 public NodeFactory(LayoutCanvas canvas) {
NodeProxy.java 59 private final NodeFactory mFactory;
68 * This method is package protected. To create a node, please use {@link NodeFactory} instead.
76 * @param factory A {@link NodeFactory} to create unique children nodes.
78 /*package*/ NodeProxy(UiViewElementNode uiNode, Rectangle bounds, NodeFactory factory) {
118 * This is a package-protected method, only the {@link NodeFactory} uses this method.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderService.java 43 import com.android.ide.eclipse.adt.internal.editors.layout.gre.NodeFactory;
427 final NodeFactory mNodeFactory = mEditor.getCanvasControl().getNodeFactory();
LayoutCanvas.java 32 import com.android.ide.eclipse.adt.internal.editors.layout.gre.NodeFactory;
148 private final NodeFactory mNodeFactory = new NodeFactory(this);
444 /* package */ NodeFactory getNodeFactory() {
    [all...]
MoveGesture.java 24 import com.android.ide.eclipse.adt.internal.editors.layout.gre.NodeFactory;
414 NodeFactory nodeFactory = mCanvas.getNodeFactory();
417 NodeProxy node = nodeFactory.create((UiViewElementNode) uiNode);
    [all...]
DynamicContextMenu.java 39 import com.android.ide.eclipse.adt.internal.editors.layout.gre.NodeFactory;
523 NodeFactory nodeFactory = canvas.getNodeFactory();
524 NodeProxy rootNode = nodeFactory.create(uiViewNode);
PaletteControl.java 43 import com.android.ide.eclipse.adt.internal.editors.layout.gre.NodeFactory;
    [all...]

Completed in 665 milliseconds