Home | History | Annotate | Download | only in utils

Lines Matching defs:mDoc

267         Document mDoc;
272 mDoc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
274 Node testPackageElem = mDoc.appendChild(mDoc.createElement(TAG_PACKAGE));
281 appendSuiteToElement(mDoc.getDocumentElement(), tc);
297 t.transform(new DOMSource(mDoc),
306 Collection<Node> suiteElems = getUnmutableChildNodes(mDoc.getDocumentElement());
434 Node caseNode = elem.appendChild(mDoc.createElement(TAG_TEST));
448 caseNode.appendChild(mDoc.createElement(TAG_DESCRIPTION))
463 Attr attr = mDoc.createAttribute(name);
495 Node suiteElem = parent.appendChild(mDoc.createElement(TAG_SUITE));
502 Node leafSuiteElem = parent.appendChild(mDoc.createElement(TAG_CASE));