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

/gem5/ext/mcpat/
H A DxmlParser.h442 void deleteAttribute(int i=0); ///< Delete the ith attribute of the current XMLNode
443 void deleteAttribute(XMLCSTR lpszName); ///< Delete the attribute with the given name (the "strcmp" function is used to find the right attribute)
444 void deleteAttribute(XMLAttribute *anAttribute); ///< Delete the attribute with the name "anAttribute->lpszName" (the "strcmp" function is used to find the right attribute)
H A DxmlParser.cc2522 void XMLNode::deleteAttribute(int i) { function in class:XMLNode
2537 void XMLNode::deleteAttribute(XMLAttribute *a) { function in class:XMLNode
2538 if (a) deleteAttribute(a->lpszName);
2540 void XMLNode::deleteAttribute(XMLCSTR lpszName) { function in class:XMLNode
2543 if (j) deleteAttribute(j - 1);

Completed in 20 milliseconds