Lines Matching refs:XMLElement

708         returnNode =  CreateUnlinkedNode<XMLElement>( _elementPool );  in Identify()
940 const XMLElement* XMLNode::FirstChildElement( const char* name ) const in FirstChildElement()
943 const XMLElement* element = node->ToElementWithName( name ); in FirstChildElement()
952 const XMLElement* XMLNode::LastChildElement( const char* name ) const in LastChildElement()
955 const XMLElement* element = node->ToElementWithName( name ); in LastChildElement()
964 const XMLElement* XMLNode::NextSiblingElement( const char* name ) const in NextSiblingElement()
967 const XMLElement* element = node->ToElementWithName( name ); in NextSiblingElement()
976 const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const in PreviousSiblingElement()
979 const XMLElement* element = node->ToElementWithName( name ); in PreviousSiblingElement()
1063 XMLElement* ele = node->ToElement(); in ParseDeep()
1066 if ( ele->ClosingType() == XMLElement::CLOSING ) { in ParseDeep()
1079 if ( ele->ClosingType() == XMLElement::OPEN ) { in ParseDeep()
1084 if ( ele->ClosingType() != XMLElement::OPEN ) { in ParseDeep()
1131 const XMLElement* XMLNode::ToElementWithName( const char* name ) const in ToElementWithName()
1133 const XMLElement* element = this->ToElement(); in ToElementWithName()
1498 XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), in XMLElement() function in tinyxml2::XMLElement
1505 XMLElement::~XMLElement() in ~XMLElement()
1515 const XMLAttribute* XMLElement::FindAttribute( const char* name ) const in FindAttribute()
1526 const char* XMLElement::Attribute( const char* name, const char* value ) const in Attribute()
1538 int XMLElement::IntAttribute(const char* name, int defaultValue) const in IntAttribute()
1545 unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const in UnsignedAttribute()
1552 int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const in Int64Attribute()
1559 bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const in BoolAttribute()
1566 double XMLElement::DoubleAttribute(const char* name, double defaultValue) const in DoubleAttribute()
1573 float XMLElement::FloatAttribute(const char* name, float defaultValue) const in FloatAttribute()
1580 const char* XMLElement::GetText() const in GetText()
1589 void XMLElement::SetText( const char* inText ) in SetText()
1600 void XMLElement::SetText( int v ) in SetText()
1608 void XMLElement::SetText( unsigned v ) in SetText()
1616 void XMLElement::SetText(int64_t v) in SetText()
1624 void XMLElement::SetText( bool v ) in SetText()
1632 void XMLElement::SetText( float v ) in SetText()
1640 void XMLElement::SetText( double v ) in SetText()
1648 XMLError XMLElement::QueryIntText( int* ival ) const in QueryIntText()
1661 XMLError XMLElement::QueryUnsignedText( unsigned* uval ) const in QueryUnsignedText()
1674 XMLError XMLElement::QueryInt64Text(int64_t* ival) const in QueryInt64Text()
1687 XMLError XMLElement::QueryBoolText( bool* bval ) const in QueryBoolText()
1700 XMLError XMLElement::QueryDoubleText( double* dval ) const in QueryDoubleText()
1713 XMLError XMLElement::QueryFloatText( float* fval ) const in QueryFloatText()
1725 int XMLElement::IntText(int defaultValue) const in IntText()
1732 unsigned XMLElement::UnsignedText(unsigned defaultValue) const in UnsignedText()
1739 int64_t XMLElement::Int64Text(int64_t defaultValue) const in Int64Text()
1746 bool XMLElement::BoolText(bool defaultValue) const in BoolText()
1753 double XMLElement::DoubleText(double defaultValue) const in DoubleText()
1760 float XMLElement::FloatText(float defaultValue) const in FloatText()
1768 XMLAttribute* XMLElement::FindOrCreateAttribute( const char* name ) in FindOrCreateAttribute()
1796 void XMLElement::DeleteAttribute( const char* name ) in DeleteAttribute()
1815 char* XMLElement::ParseAttributes( char* p, int* curLineNumPtr ) in ParseAttributes()
1874 void XMLElement::DeleteAttribute( XMLAttribute* attribute ) in DeleteAttribute()
1884 XMLAttribute* XMLElement::CreateAttribute() in CreateAttribute()
1898 char* XMLElement::ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ) in ParseDeep()
1927 XMLNode* XMLElement::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1932XMLElement* element = doc->NewElement( Value() ); // fixme: this will always allocate memory. … in ShallowClone()
1940 bool XMLElement::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1943 const XMLElement* other = compare->ToElement(); in ShallowEqual()
1966 bool XMLElement::Accept( XMLVisitor* visitor ) const in Accept()
2094 XMLElement* XMLDocument::NewElement( const char* name ) in NewElement()
2096 XMLElement* ele = CreateUnlinkedNode<XMLElement>( _elementPool ); in NewElement()
2788 bool XMLPrinter::VisitEnter( const XMLElement& element, const XMLAttribute* attribute ) in VisitEnter()
2790 const XMLElement* parentElem = 0; in VisitEnter()
2804 bool XMLPrinter::VisitExit( const XMLElement& element ) in VisitExit()