Lines Matching refs:mDoc
267 Document mDoc; field in DescriptionGenerator.XMLGenerator
272 mDoc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); in XMLGenerator()
274 Node testPackageElem = mDoc.appendChild(mDoc.createElement(TAG_PACKAGE)); in XMLGenerator()
281 appendSuiteToElement(mDoc.getDocumentElement(), tc); in addTestClass()
297 t.transform(new DOMSource(mDoc), in dump()
306 Collection<Node> suiteElems = getUnmutableChildNodes(mDoc.getDocumentElement()); in rebuildDocument()
434 Node caseNode = elem.appendChild(mDoc.createElement(TAG_TEST)); in appendTestCases()
448 caseNode.appendChild(mDoc.createElement(TAG_DESCRIPTION)) in appendTestCases()
463 Attr attr = mDoc.createAttribute(name); in setAttribute()
495 Node suiteElem = parent.appendChild(mDoc.createElement(TAG_SUITE)); in appendSuiteToElementImpl()
502 Node leafSuiteElem = parent.appendChild(mDoc.createElement(TAG_CASE)); in appendSuiteToElementImpl()