Home | History | Annotate | Download | only in tinyxml2

Lines Matching defs:returnNode

453     XMLNode* returnNode = 0;

490 returnNode = new (commentPool.Alloc()) XMLDeclaration( this );
491 returnNode->memPool = &commentPool;
495 returnNode = new (commentPool.Alloc()) XMLComment( this );
496 returnNode->memPool = &commentPool;
501 returnNode = text;
502 returnNode->memPool = &textPool;
507 returnNode = new (commentPool.Alloc()) XMLUnknown( this );
508 returnNode->memPool = &commentPool;
512 returnNode = new (elementPool.Alloc()) XMLElement( this );
513 returnNode->memPool = &elementPool;
517 returnNode = new (textPool.Alloc()) XMLText( this );
518 returnNode->memPool = &textPool;
522 *node = returnNode;