Searched refs:addChild (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_call_policies.cpp50 void addChild(Child *) { } function in class:Parent
57 .def("addChild", &Parent::addChild)
58 .def("addChildKeepAlive", &Parent::addChild, py::keep_alive<1, 2>())
H A Dtest_call_policies.py12 p.addChild(m.Child())
/gem5/ext/mcpat/
H A DxmlParser.h396 * node with the "createXMLTopNode" function and then add new nodes with the "addChild" function. The parameter 'pos' gives
407 XMLNode addChild(XMLCSTR lpszName, char isDeclaration=FALSE, XMLElementPosition pos=-1); ///< Add a new child node
408 XMLNode addChild(XMLNode nodeToAdd, XMLElementPosition pos=-1); ///< If the "nodeToAdd" has some parents, it will be detached from it's parents before being attached to the current XMLNode
502 * methods is to be used as last parameter (parameter 'pos') of addChild, addText or addClear.
H A DxmlParser.cc2497 XMLNode XMLNode::addChild(XMLNode childNode, int pos) { function in class:XMLNode
2504 addChild(dc->pChild[0], j);
2787 if (createIfMissing) xn = xbase.addChild(path);
2799 if (xn.isEmpty() && createIfMissing) xn = xbase.addChild(path);
3002 XMLNode XMLNode::addChild(XMLCSTR lpszName, char isDeclaration, function in class:XMLNode

Completed in 22 milliseconds