• Home
  • Raw
  • Download

Lines Matching +defs:xml +defs:node +defs:name

715 char* XMLDocument::Identify( char* p, XMLNode** node, bool first )  in Identify()
799 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { in Accept() local
925 void XMLNode::DeleteChild( XMLNode* node ) in DeleteChild()
1039 for( const XMLNode* node = _firstChild; node; node = node->_next ) { in FirstChildElement() local
1051 for( const XMLNode* node = _lastChild; node; node = node->_prev ) { in LastChildElement() local
1063 for( const XMLNode* node = _next; node; node = node->_next ) { in NextSiblingElement() local
1075 for( const XMLNode* node = _prev; node; node = node->_prev ) { in PreviousSiblingElement() local
1110 XMLNode* node = 0; in ParseDeep() local
1201 /*static*/ void XMLNode::DeleteNode( XMLNode* node ) in DeleteNode()
1640 const char* XMLElement::Attribute( const char* name, const char* value ) const in Attribute() argument
1652 int XMLElement::IntAttribute(const char* name, int defaultValue) const in IntAttribute() argument
1659 unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const in UnsignedAttribute() argument
1666 int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const in Int64Attribute() argument
1673 uint64_t XMLElement::Unsigned64Attribute(const char* name, uint64_t defaultValue) const in Unsigned64Attribute() argument
1680 bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const in BoolAttribute() argument
1687 double XMLElement::DoubleAttribute(const char* name, double defaultValue) const in DoubleAttribute() argument
1694 float XMLElement::FloatAttribute(const char* name, float defaultValue) const in FloatAttribute() argument
1704 const XMLNode* node = FirstChild(); in GetText() local
1925 XMLAttribute* XMLElement::FindOrCreateAttribute( const char* name ) in FindOrCreateAttribute()
1953 void XMLElement::DeleteAttribute( const char* name ) in DeleteAttribute()
2052 XMLElement* XMLElement::InsertNewChildElement(const char* name) in InsertNewChildElement()
2054 XMLElement* node = _document->NewElement(name); in InsertNewChildElement() local
2060 XMLComment* node = _document->NewComment(comment); in InsertNewComment() local
2066 XMLText* node = _document->NewText(text); in InsertNewText() local
2072 XMLDeclaration* node = _document->NewDeclaration(text); in InsertNewDeclaration() local
2078 XMLUnknown* node = _document->NewUnknown(text); in InsertNewUnknown() local
2160 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { in Accept() local
2224 void XMLDocument::MarkInUse(const XMLNode* const node) in MarkInUse()
2279 for (const XMLNode* node = this->FirstChild(); node; node = node->NextSibling()) { in DeepCopy() local
2284 XMLElement* XMLDocument::NewElement( const char* name ) in NewElement()
2339 void XMLDocument::DeleteNode( XMLNode* node ) { in DeleteNode()
2460 XMLError XMLDocument::Parse( const char* xml, size_t nBytes ) in Parse()
2760 void XMLPrinter::OpenElement( const char* name, bool compactMode ) in OpenElement()
2773 void XMLPrinter::PushAttribute( const char* name, const char* value ) in PushAttribute()
2784 void XMLPrinter::PushAttribute( const char* name, int v ) in PushAttribute()
2792 void XMLPrinter::PushAttribute( const char* name, unsigned v ) in PushAttribute()
2800 void XMLPrinter::PushAttribute(const char* name, int64_t v) in PushAttribute()
2808 void XMLPrinter::PushAttribute(const char* name, uint64_t v) in PushAttribute()
2816 void XMLPrinter::PushAttribute( const char* name, bool v ) in PushAttribute()
2824 void XMLPrinter::PushAttribute( const char* name, double v ) in PushAttribute()
2835 const char* name = _stack.Pop(); in CloseElement() local