Home | History | Annotate | Download | only in xmlserializer

Lines Matching refs:_pXmlElement

39 CXmlElement::CXmlElement(_xmlNode *pXmlElement) : _pXmlElement(pXmlElement)
43 CXmlElement::CXmlElement() : _pXmlElement(nullptr)
49 _pXmlElement = pXmlElement;
54 return (const char *)_pXmlElement->name;
78 return xmlHasProp(_pXmlElement, (const xmlChar *)strAttributeName.c_str()) != nullptr;
85 xmlChar *pucXmlValue = xmlGetProp((xmlNode *)_pXmlElement, (const xmlChar *)name.c_str());
124 xmlChar *pucXmlContent = xmlNodeGetContent(_pXmlElement);
182 _xmlNode *pXmlNode = _pXmlElement->parent;
212 xmlNewProp(_pXmlElement, BAD_CAST name.c_str(), BAD_CAST value);
228 xmlAddChild(_pXmlElement, xmlNewText(BAD_CAST strContent.c_str()));
235 xmlNodePtr pChildNode = xmlNewChild(_pXmlElement, nullptr, BAD_CAST strType.c_str(), nullptr);
243 : _pCurNode(xmlElement._pXmlElement->children)