Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A Dtinyxml2.cpp514 returnNode = new (commentPool.Alloc()) XMLDeclaration( this ); in Identify()
515 returnNode->memPool = &commentPool; in Identify()
519 returnNode = new (commentPool.Alloc()) XMLComment( this ); in Identify()
520 returnNode->memPool = &commentPool; in Identify()
531 returnNode = new (commentPool.Alloc()) XMLUnknown( this ); in Identify()
532 returnNode->memPool = &commentPool; in Identify()
1477 commentPool.Trace( "comment" ); in ~XMLDocument()
1483 TIXMLASSERT( commentPool.CurrentAllocs() == 0 ); in ~XMLDocument()
1511 XMLComment* comment = new (commentPool.Alloc()) XMLComment( this ); in NewComment()
1512 comment->memPool = &commentPool; in NewComment()
[all …]
H A Dtinyxml2.h1478 MemPoolT< sizeof(XMLComment) > commentPool; variable