Lines Matching full:child
305 Node child = suiteChildren.iterator().next();
309 + getAttribute(child, ATTRIBUTE_NAME);
310 setAttribute(child, ATTRIBUTE_NAME, newName);
315 parentNode.appendChild(child);
317 mergeEmptySuites(child);
322 * Get the unmuatable child nodes for specified node.
325 * @return A collection of copied child node.
352 for (Node child : children) {
353 String childName = child.getAttributes().getNamedItem(ATTRIBUTE_NAME)
359 appendTestCases(child, testSuite.mCases);
362 appendSuiteToElement(child, testSuite);
374 * Get the test suite child nodes of a specified element.
377 * @return The matched child nodes.
384 Node child = children.item(i);
386 if (child.getNodeName().equals(DescriptionGenerator.TAG_SUITE)) {
387 suites.add(child);