Lines Matching refs:elem
369 void appendSuiteToElement(Node elem, TestClass testSuite) { in appendSuiteToElement() argument
371 Collection<Node> children = getSuiteChildren(elem); in appendSuiteToElement()
393 appendSuiteToElementImpl(elem, testSuite); in appendSuiteToElement()
403 Collection<Node> getSuiteChildren(Node elem) { in getSuiteChildren() argument
406 NodeList children = elem.getChildNodes(); in getSuiteChildren()
425 void appendTestCases(Node elem, Collection<TestMethod> cases) { in appendTestCases() argument
428 elem.getParentNode().removeChild(elem); in appendTestCases()
434 Node caseNode = elem.appendChild(mDoc.createElement(TAG_TEST)); in appendTestCases()
462 protected void setAttribute(Node elem, String name, String value) { in setAttribute() argument
466 elem.getAttributes().setNamedItem(attr); in setAttribute()
476 private String getAttribute(Node elem, String name) { in getAttribute() argument
477 return elem.getAttributes().getNamedItem(name).getNodeValue(); in getAttribute()
487 void appendSuiteToElementImpl(Node elem, TestClass testSuite) { in appendSuiteToElementImpl() argument
488 Node parent = elem; in appendSuiteToElementImpl()