MCPcopy Create free account
hub / github.com/Exiv2/exiv2 / RDF_NodeElementList

Function RDF_NodeElementList

xmpsdk/src/ParseRDF.cpp:661–674  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

659// ws* ( nodeElement ws* )*
660
661static void
662RDF_NodeElementList ( XMP_Node * xmpParent, const XML_Node & xmlParent, bool isTopLevel )
663{
664 XMP_Assert ( isTopLevel );
665
666 XML_cNodePos currChild = xmlParent.content.begin(); // *** Change these loops to the indexed pattern.
667 XML_cNodePos endChild = xmlParent.content.end();
668
669 for ( ; currChild != endChild; ++currChild ) {
670 if ( (*currChild)->IsWhitespaceNode() ) continue;
671 RDF_NodeElement ( xmpParent, **currChild, isTopLevel );
672 }
673
674} // RDF_NodeElementList
675
676
677// =================================================================================================

Callers 1

RDF_RDFFunction · 0.85

Calls 4

RDF_NodeElementFunction · 0.85
IsWhitespaceNodeMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected