MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / findNode

Method findNode

src/openms/source/DATASTRUCTURES/Param.cpp:233–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231 }
232
233 Param::ParamNode::NodeIterator Param::ParamNode::findNode(const std::string& local_name)
234 {
235 for (NodeIterator it = nodes.begin(); it != nodes.end(); ++it)
236 {
237 if (it->name == local_name)
238 {
239 return it;
240 }
241 }
242 return nodes.end();
243 }
244
245 Param::ParamNode* Param::ParamNode::findParentOf(const std::string& local_name)
246 {

Callers 7

insertMethod · 0.80
Param.cppFile · 0.80
removeMethod · 0.80
removeAllMethod · 0.80
copySubsetMethod · 0.80
setSectionDescriptionMethod · 0.80
Param_test.cppFile · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected