Lines Matching defs:node
276 // We now have something we presume to be a node of
277 // some sort. Identify it, and call the node to
279 TiXmlNode* node = Identify( tag->c_str() + tagIndex );
281 if ( node )
283 node->StreamIn( in, tag );
284 bool isElement = node->ToElement() != 0;
285 delete node;
286 node = 0;
325 TiXmlNode* node = Identify( p );
326 if ( node )
328 p = node->Parse( p );
329 LinkEndChild( node );
444 // another node.
456 // What follows text is a closing tag or another node.
461 // We now have either a closing tag...or another node.
505 TiXmlNode* node = Identify( tagloc );
506 if ( !node )
508 node->StreamIn( in, tag );
509 delete node;
510 node = 0;
512 // No return: go around from the beginning: text, closing tag, or node.
651 TiXmlNode* node = Identify( p );
652 if ( node )
654 p = node->Parse( p );
655 LinkEndChild( node );