Searched refs:nodeSet (Results 1 – 2 of 2) sorted by relevance
319 static void addNodeAndParents (std::set<const TestNode*>& nodeSet, const TestNode* node) in addNodeAndParents() argument323 nodeSet.insert(node); in addNodeAndParents()328 static void addChildren (std::set<const TestNode*>& nodeSet, const TestGroup* group) in addChildren() argument333 nodeSet.insert(child); in addChildren()336 addChildren(nodeSet, static_cast<const TestGroup*>(child)); in addChildren()340 static void removeChildren (std::set<const TestNode*>& nodeSet, const TestGroup* group) in removeChildren() argument345 nodeSet.erase(child); in removeChildren()348 removeChildren(nodeSet, static_cast<const TestGroup*>(child)); in removeChildren()352 static bool hasChildrenInSet (const std::set<const TestNode*>& nodeSet, const TestGroup* group) in hasChildrenInSet() argument356 if (nodeSet.find(group->getChild(ndx)) != nodeSet.end()) in hasChildrenInSet()[all …]
3495 xmlNodeSetPtr nodeSet; in PyxmlNodeSet_Convert() local3512 nodeSet = (xmlNodeSetPtr) xmlMalloc(sizeof(xmlNodeSet)); in PyxmlNodeSet_Convert()3513 if (nodeSet == NULL) { in PyxmlNodeSet_Convert()3518 nodeSet->nodeNr = 0; in PyxmlNodeSet_Convert()3519 nodeSet->nodeMax = (is_tuple in PyxmlNodeSet_Convert()3522 nodeSet->nodeTab in PyxmlNodeSet_Convert()3523 = (xmlNodePtr *) xmlMalloc (nodeSet->nodeMax in PyxmlNodeSet_Convert()3525 if (nodeSet->nodeTab == NULL) { in PyxmlNodeSet_Convert()3526 xmlFree(nodeSet); in PyxmlNodeSet_Convert()3530 memset(nodeSet->nodeTab, 0 , in PyxmlNodeSet_Convert()[all …]