Home
last modified time | relevance | path

Searched refs:xmlValue (Results 1 – 2 of 2) sorted by relevance

/developtools/global_resource_tool/src/
Dsolid_xml_compiler.cpp93 xmlChar * xmlValue = xmlGetProp(node, BAD_CAST "id"); in ParseNodeId() local
94 if (xmlValue != nullptr) { in ParseNodeId()
95 idValue = string(reinterpret_cast<const char *>(xmlValue)); in ParseNodeId()
96 xmlFree(xmlValue); in ParseNodeId()
/developtools/global_resource_tool/src/xml/
Dsolid_xml.cpp128 xmlChar *xmlValue = xmlNodeListGetString(attrPtr->doc, attrPtr->children, 1); in CompileAttr() local
129 string value(reinterpret_cast<const char *>(xmlValue)); in CompileAttr()
131 xmlFree(xmlValue); in CompileAttr()