Lines Matching refs:child
24 for child in parent.childNodes:
25 if (child.nodeType == Node.ELEMENT_NODE) and (child.tagName == tagName):
27 # " " + child.getAttribute("name")
28 children.append(child)
36 for child in childSuites:
37 for failure in parseSuite(child, parentName + child.getAttribute("name")):
40 for child in childTestCases:
41 className = parentName + child.getAttribute("name")
42 for test in getChildrenWithTag(child, "Test"):