Home
last modified time | relevance | path

Searched defs:document (Results 1 – 25 of 25) sorted by relevance

/libcore/luni/src/test/java/libcore/xml/
DDomSerializationTest.java42 Document document = documentBuilder.newDocument(); in testWriteDocument() local
54 Document document = documentBuilder.newDocument(); in testWriteSpecialCharactersInText() local
61 private String toXml(Document document) throws Exception { in toXml()
67 private void assertXmlEquals(String expectedXml, Document document) throws Exception { in assertXmlEquals()
DNodeTest.java42 Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(bis); in test_getNextSibling() local
50 Document document = builder.parse(file); in testGetBaseUri() local
DSimpleBuilderTest.java58 Document document = builder.parse(getClass().getResourceAsStream( in testGoodFile1() local
111 Document document = builder.parse(getClass().getResourceAsStream( in testGoodFile2() local
DNormalizeTest.java56 private Document document; field in NormalizeTest
591 private String domToString(Document document) throws TransformerException { in domToString()
DXsltXPathConformanceTestSuite.java164 Document document = DocumentBuilderFactory.newInstance() in suite() local
502 Document document = (Document) node; in emitNode() local
DDomTest.java98 private Document document; field in DomTest
1712 private String domToString(Document document) throws TransformerException { in domToString()
1736 private String domToStringStripElementWhitespace(Document document) in domToStringStripElementWhitespace()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DDocumentBuilderFactoryTest.java384 Document document = parser.parse(getClass().getResourceAsStream( in test_setCoalescingZ() local
412 Document document = parser.parse(getClass().getResourceAsStream( in test_setCoalescingZ() local
447 Document document = parser.parse(getClass().getResourceAsStream( in test_setExpandEntityReferencesZ() local
470 Document document = parser.parse(getClass().getResourceAsStream( in test_setExpandEntityReferencesZ() local
545 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringCommentsZ() local
568 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringCommentsZ() local
594 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringElementContentWhitespaceZ() local
613 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringElementContentWhitespaceZ() local
637 Document document = parser.parse(getClass().getResourceAsStream( in test_setNamespaceAwareZ() local
656 Document document = parser.parse(getClass().getResourceAsStream( in test_setNamespaceAwareZ() local
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DDocumentFragmentImpl.java35 DocumentFragmentImpl(DocumentImpl document) { in DocumentFragmentImpl()
DCommentImpl.java34 CommentImpl(DocumentImpl document, String data) { in CommentImpl()
DEntityReferenceImpl.java36 EntityReferenceImpl(DocumentImpl document, String name) { in EntityReferenceImpl()
DAttrImpl.java48 AttrImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { in AttrImpl()
53 AttrImpl(DocumentImpl document, String name) { in AttrImpl()
DLeafNodeImpl.java41 LeafNodeImpl(DocumentImpl document) { in LeafNodeImpl()
DCDATASectionImpl.java34 public CDATASectionImpl(DocumentImpl document, String data) { in CDATASectionImpl()
DNotationImpl.java40 NotationImpl(DocumentImpl document, String notationName, String publicID, in NotationImpl()
DProcessingInstructionImpl.java40 ProcessingInstructionImpl(DocumentImpl document, String target, String data) { in ProcessingInstructionImpl()
DEntityImpl.java40 EntityImpl(DocumentImpl document, String notationName, String publicID, in EntityImpl()
DDocumentTypeImpl.java42 public DocumentTypeImpl(DocumentImpl document, String qualifiedName, in DocumentTypeImpl()
DCharacterDataImpl.java37 CharacterDataImpl(DocumentImpl document, String data) { in CharacterDataImpl()
DTextImpl.java35 public TextImpl(DocumentImpl document, String data) { in TextImpl()
DElementImpl.java49 ElementImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { in ElementImpl()
54 ElementImpl(DocumentImpl document, String name) { in ElementImpl()
DInnerNodeImpl.java47 protected InnerNodeImpl(DocumentImpl document) { in InnerNodeImpl()
DNodeImpl.java68 DocumentImpl document; field in NodeImpl
70 NodeImpl(DocumentImpl document) { in NodeImpl()
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderImpl.java101 DocumentImpl document = new DocumentImpl( in parse() local
178 private void parse(KXmlParser parser, DocumentImpl document, Node node, in parse()
337 private void appendText(DocumentImpl document, Node parent, int token, String text) { in appendText()
/libcore/benchmarks/src/benchmarks/
DXmlParseBenchmark.java108 Document document = documentBuilder.parse(inputStream); in timeDom() local
/libcore/benchmarks/src/benchmarks/regression/
DParseBenchmark.java44 @Param Document document; field in ParseBenchmark