Searched refs:XMLAttribute (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/mcpat/
H A DxmlParser.h239 typedef struct XMLAttribute { struct
242 } XMLAttribute; typedef in typeref:struct:XMLAttribute
367 XMLAttribute getAttribute(int i=0) const; ///< return ith attribute
391 static XMLAttribute emptyXMLAttribute;
409 XMLAttribute *addAttribute(XMLCSTR lpszName, XMLCSTR lpszValuev); ///< Add a new attribute
424 XMLAttribute *updateAttribute(XMLAttribute *newAttribute, XMLAttribute *oldAttribute); ///< if the attribute to update is missing, a new one will be added
425 XMLAttribute *updateAttribute(XMLCSTR lpszNewValue, XMLCSTR lpszNewName=NULL, int i=0); ///< if the attribute to update is missing, a new one will be added
426 XMLAttribute *updateAttribut
[all...]
H A DxmlParser.cc708 XMLAttribute XMLNode::emptyXMLAttribute = { NULL, NULL};
1370 XMLAttribute *XMLNode::addAttribute_priv(int memoryIncrease, XMLSTR lpszName,
1379 d->pAttribute = (XMLAttribute*)myRealloc(d->pAttribute, (nc + 1),
1381 sizeof(XMLAttribute));
1382 XMLAttribute *pAttr = d->pAttribute + nc;
1482 d->pAttribute = (XMLAttribute*)realloc(d->pAttribute, d->nAttribute *
1483 sizeof(XMLAttribute));
2137 XMLAttribute *pAttr = pEntry->pAttribute;
2457 p->pAttribute = (XMLAttribute*)malloc(n * sizeof(XMLAttribute));
[all...]
/gem5/ext/testlib/
H A Dresult.py195 class XMLAttribute(object): class in inherits:object
226 return XMLAttribute(self.result_map[result], count)
241 XMLAttribute('name', suite_result.name)
252 return XMLAttribute(self.result_map[result], count)
258 XMLAttribute('name', test_result.name),
260 XMLAttribute('classname', str(test_result.uid)),
261 XMLAttribute('status', str(test_result.result)),

Completed in 19 milliseconds