Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/executor/
DxeTestCase.cpp319 static void addNodeAndParents (std::set<const TestNode*>& nodeSet, const TestNode* node) in addNodeAndParents() argument
323 nodeSet.insert(node); in addNodeAndParents()
328 static void addChildren (std::set<const TestNode*>& nodeSet, const TestGroup* group) in addChildren() argument
333 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() argument
345 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() argument
356 if (nodeSet.find(group->getChild(ndx)) != nodeSet.end()) in hasChildrenInSet()
[all …]
/third_party/libxml2/python/
Dlibxml.c3495 xmlNodeSetPtr nodeSet; in PyxmlNodeSet_Convert() local
3512 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 …]