Home | History | Annotate | Download | only in utils

Lines Matching defs:mDoc

255         Document mDoc;
260 mDoc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
262 Node testPackageElem = mDoc.appendChild(mDoc.createElement(TAG_PACKAGE));
269 appendSuiteToElement(mDoc.getDocumentElement(), tc);
285 t.transform(new DOMSource(mDoc),
294 Collection<Node> suiteElems = getUnmutableChildNodes(mDoc.getDocumentElement());
422 Node caseNode = elem.appendChild(mDoc.createElement(TAG_TEST));
430 caseNode.appendChild(mDoc.createElement(TAG_DESCRIPTION))
445 Attr attr = mDoc.createAttribute(name);
477 Node suiteElem = parent.appendChild(mDoc.createElement(TAG_SUITE));
484 Node leafSuiteElem = parent.appendChild(mDoc.createElement(TAG_CASE));