MCPcopy Create free account
hub / github.com/KhronosGroup/OpenCOLLADA / next

Method next

DAEValidator/library/src/XmlNode.cpp:117–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115 }
116
117 XmlNode XmlNode::next(const string & name) const
118 {
119 xmlNodePtr next = mNode ? mNode->next : nullptr;
120 while (next && name != reinterpret_cast<const XmlChar*>(next->name))
121 {
122 next = next->next;
123 }
124 return XmlNode(next);
125 }
126
127 size_t XmlNode::line() const
128 {

Callers 15

operator++Method · 0.45
TEST_METHODFunction · 0.45
sampleConstraintMethod · 0.45
writerMethod · 0.45
setBindPoseInverseMethod · 0.45
restoreParamClipMethod · 0.45
saveParamClipMethod · 0.45
getGravityFieldMethod · 0.45

Calls 1

XmlNodeClass · 0.50

Tested by 1

TEST_METHODFunction · 0.36