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

/gem5/ext/mcpat/
H A DxmlParser.h425 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 *updateAttribute(XMLCSTR lpszNewValue, XMLCSTR lpszNewName, XMLCSTR lpszOldName);///< set lpszNewName=NULL if you don't want to change the name of the attribute if the attribute to update is missing, a new one will be added
427 XMLCSTR updateText(XMLCSTR lpszNewValue, int i=0); ///< if the text to update is missing, a new one will be added
428 XMLCSTR updateText(XMLCSTR lpszNewValue, XMLCSTR lpszOldValue); ///< if the text to update is missing, a new one will be added
431 XMLClear *updateClear(XMLCSTR lpszNewValue, XMLCSTR lpszOldValue); ///< if the clearTag to update is missing, a new one will be added
489 XMLAttribute *updateAttribute_WOSD(XMLSTR lpszNewValue, XMLSTR lpszNewName=NULL, int i=0); ///< if the attribute to update is missing, a new one will be added
490 XMLAttribute *updateAttribute_WOSD(XMLSTR lpszNewValue, XMLSTR lpszNewName, XMLCSTR lpszOldName); ///< set lpszNewName=NULL if you don't want to change the name of the attribute if the attribute to update is missing, a new one will be added
491 XMLCSTR updateText_WOSD(XMLSTR lpszNewValue, int i=0); ///< if the text to update is missing, a new one will be added
492 XMLCSTR updateText_WOSD(XMLSTR lpszNewValue, XMLCSTR lpszOldValue); ///< if the text to update is missing, a new one will be added
495 XMLClear *updateClear_WOSD(XMLSTR lpszNewValue, XMLCST
[all...]
H A DxmlParser.cc2546 XMLAttribute *XMLNode::updateAttribute_WOSD(XMLSTR lpszNewValue, argument
2549 if (lpszNewValue) free(lpszNewValue);
2554 if (lpszNewName) return addAttribute_WOSD(lpszNewName, lpszNewValue);
2558 if (p->lpszValue && p->lpszValue != lpszNewValue) {
2561 p->lpszValue = lpszNewValue;
2580 XMLAttribute *XMLNode::updateAttribute_WOSD(XMLSTR lpszNewValue, argument
2585 if (j) return updateAttribute_WOSD(lpszNewValue, lpszNewName, j - 1);
2588 return addAttribute_WOSD(lpszNewName, lpszNewValue);
2590 return addAttribute_WOSD(stringDup(lpszOldName), lpszNewValue);
2624 updateText_WOSD(XMLSTR lpszNewValue, int i) argument
2638 updateText_WOSD(XMLSTR lpszNewValue, XMLCSTR lpszOldValue) argument
3039 updateAttribute(XMLCSTR lpszNewValue, XMLCSTR lpszNewName, int i) argument
3044 updateAttribute(XMLCSTR lpszNewValue, XMLCSTR lpszNewName, XMLCSTR lpszOldName) argument
3050 updateText(XMLCSTR lpszNewValue, int i) argument
3053 updateText(XMLCSTR lpszNewValue, XMLCSTR lpszOldValue) argument
3059 updateClear(XMLCSTR lpszNewValue, XMLCSTR lpszOldValue) argument
[all...]

Completed in 30 milliseconds