Searched refs:deleteClear (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/mcpat/
H A DxmlParser.h447 void deleteClear(int i=0); ///< Delete the Ith clear tag inside the current XMLNode
448 void deleteClear(XMLCSTR lpszValue); ///< Delete the clear tag "lpszValue" inside the current XMLNode (direct "pointer-to-pointer" comparison is used to find the clear tag)
449 void deleteClear(XMLClear *p); ///< Delete the clear tag "p" inside the current XMLNode (direct "pointer-to-pointer" comparison on the lpszName of the clear tag is used to find the clear tag)
H A DxmlParser.cc1523 deleteClear(i);
2648 void XMLNode::deleteClear(int i) { function in class:XMLNode
2673 void XMLNode::deleteClear(XMLCSTR lpszValue) { function in class:XMLNode
2674 deleteClear(indexClear(lpszValue));
2676 void XMLNode::deleteClear(XMLClear *a) { function in class:XMLNode
2677 if (a) deleteClear(a->lpszValue);

Completed in 24 milliseconds