Lines Matching refs:CXmlElement

38 CXmlElement::CXmlElement(_xmlNode* pXmlElement) : _pXmlElement(pXmlElement)  in CXmlElement()  function in CXmlElement
42 CXmlElement::CXmlElement() : _pXmlElement(NULL) in CXmlElement() function in CXmlElement
46 void CXmlElement::setXmlElement(_xmlNode* pXmlElement) in setXmlElement()
51 string CXmlElement::getType() const in getType()
56 string CXmlElement::getPath() const in getPath()
65 CXmlElement parentElement; in getPath()
75 string CXmlElement::getNameAttribute() const in getNameAttribute()
80 bool CXmlElement::hasAttribute(const string& strAttributeName) const in hasAttribute()
85 string CXmlElement::getAttributeString(const string &strAttributeName) const in getAttributeString()
103 bool CXmlElement::getAttributeBoolean(const string& strAttributeName, const string& strTrueValue) c… in getAttributeBoolean()
108 bool CXmlElement::getAttributeBoolean(const string& strAttributeName) const in getAttributeBoolean()
115 uint32_t CXmlElement::getAttributeInteger(const string &strAttributeName) const in getAttributeInteger()
122 int32_t CXmlElement::getAttributeSignedInteger(const string &strAttributeName) const in getAttributeSignedInteger()
129 double CXmlElement::getAttributeDouble(const string &strAttributeName) const in getAttributeDouble()
136 string CXmlElement::getTextContent() const in getTextContent()
150 bool CXmlElement::getChildElement(const string& strType, CXmlElement& childElement) const in getChildElement()
164 bool CXmlElement::getChildElement(const string& strType, const string& strNameAttribute, CXmlElemen… in getChildElement()
178 size_t CXmlElement::getNbChildElements() const in getNbChildElements()
180 CXmlElement childElement; in getNbChildElements()
192 bool CXmlElement::getParentElement(CXmlElement& parentElement) const in getParentElement()
206 void CXmlElement::setAttributeBoolean(const string& strAttributeName, bool bValue) in setAttributeBoolean()
212 void CXmlElement::setAttributeString(const string& strAttributeName, const string& strValue) in setAttributeString()
217 void CXmlElement::setAttributeInteger(const string& strAttributeName, uint32_t uiValue) in setAttributeInteger()
224 void CXmlElement::setAttributeSignedInteger(const string& strAttributeName, int32_t iValue) in setAttributeSignedInteger()
231 void CXmlElement::setNameAttribute(const string& strValue) in setNameAttribute()
236 void CXmlElement::setTextContent(const string& strContent) in setTextContent()
242 void CXmlElement::createChild(CXmlElement& childElement, const string& strType) in createChild()
252 CXmlElement::CChildIterator::CChildIterator(const CXmlElement& xmlElement) : _pCurNode(xmlElement._… in CChildIterator()
256 bool CXmlElement::CChildIterator::next(CXmlElement& xmlChildElement) in next()