Home
last modified time | relevance | path

Searched refs:commentPool (Results 1 – 2 of 2) sorted by relevance

/external/tinyxml2/
Dtinyxml2.cpp490 returnNode = new (commentPool.Alloc()) XMLDeclaration( this ); in Identify()
491 returnNode->memPool = &commentPool; in Identify()
495 returnNode = new (commentPool.Alloc()) XMLComment( this ); in Identify()
496 returnNode->memPool = &commentPool; in Identify()
507 returnNode = new (commentPool.Alloc()) XMLUnknown( this ); in Identify()
508 returnNode->memPool = &commentPool; in Identify()
1440 commentPool.Trace( "comment" ); in ~XMLDocument()
1446 TIXMLASSERT( commentPool.CurrentAllocs() == 0 ); in ~XMLDocument()
1474 XMLComment* comment = new (commentPool.Alloc()) XMLComment( this ); in NewComment()
1475 comment->memPool = &commentPool; in NewComment()
[all …]
Dtinyxml2.h1199 MemPoolT< sizeof(XMLComment) > commentPool; variable