Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:node

672 			// We now have something we presume to be a node of 
673 // some sort. Identify it, and call the node to
675 TiXmlNode* node = Identify( tag->c_str() + tagIndex, TIXML_DEFAULT_ENCODING );
677 if ( node )
679 node->StreamIn( in, tag );
680 bool isElement = node->ToElement() != 0;
681 delete node;
682 node = 0;
756 TiXmlNode* node = Identify( p, encoding );
757 if ( node )
759 p = node->Parse( p, &data, encoding );
760 LinkEndChild( node );
769 && node->ToDeclaration() )
771 TiXmlDeclaration* dec = node->ToDeclaration();
938 // cdata text (which looks like another node)
940 // another node.
952 // What follows text is a closing tag or another node.
957 // We now have either a closing tag...or another node.
1029 TiXmlNode* node = Identify( tagloc, TIXML_DEFAULT_ENCODING );
1030 if ( !node )
1032 node->StreamIn( in, tag );
1033 delete node;
1034 node = 0;
1036 // No return: go around from the beginning: text, closing tag, or node.
1161 TiXmlAttribute* node = attributeSet.Find( attrib->NameTStr() );
1163 TiXmlAttribute* node = attributeSet.Find( attrib->Name() );
1165 if ( node )
1226 TiXmlNode* node = Identify( p, encoding );
1227 if ( node )
1229 p = node->Parse( p, data, encoding );
1230 LinkEndChild( node );