Home | History | Annotate | Download | only in utils

Lines Matching defs:child

317                 Node child = suiteChildren.iterator().next();
321 + getAttribute(child, ATTRIBUTE_NAME);
322 setAttribute(child, ATTRIBUTE_NAME, newName);
327 parentNode.appendChild(child);
329 mergeEmptySuites(child);
334 * Get the unmuatable child nodes for specified node.
337 * @return A collection of copied child node.
364 for (Node child : children) {
365 String childName = child.getAttributes().getNamedItem(ATTRIBUTE_NAME)
371 appendTestCases(child, testSuite.mCases);
374 appendSuiteToElement(child, testSuite);
386 * Get the test suite child nodes of a specified element.
389 * @return The matched child nodes.
396 Node child = children.item(i);
398 if (child.getNodeName().equals(DescriptionGenerator.TAG_SUITE)) {
399 suites.add(child);