Home
last modified time | relevance | path

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

/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/
DDocumentBuilderFactoryTest.java478 Document document = parser.parse(getClass().getResourceAsStream( in test_setCoalescingZ() local
506 Document document = parser.parse(getClass().getResourceAsStream( in test_setCoalescingZ() local
547 Document document = parser.parse(getClass().getResourceAsStream( in test_setExpandEntityReferencesZ() local
570 Document document = parser.parse(getClass().getResourceAsStream( in test_setExpandEntityReferencesZ() local
665 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringCommentsZ() local
688 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringCommentsZ() local
720 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringElementContentWhitespaceZ() local
739 Document document = parser.parse(getClass().getResourceAsStream( in test_setIgnoringElementContentWhitespaceZ() local
769 Document document = parser.parse(getClass().getResourceAsStream( in test_setNamespaceAwareZ() local
788 Document document = parser.parse(getClass().getResourceAsStream( in test_setNamespaceAwareZ() local
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
DDocumentFragmentImpl.java36 DocumentFragmentImpl(DocumentImpl document) { in DocumentFragmentImpl()
DCDATASectionImpl.java35 CDATASectionImpl(DocumentImpl document, String data) { in CDATASectionImpl()
DCommentImpl.java35 CommentImpl(DocumentImpl document, String data) { in CommentImpl()
DEntityReferenceImpl.java37 EntityReferenceImpl(DocumentImpl document, String name) { in EntityReferenceImpl()
DLeafNodeImpl.java42 LeafNodeImpl(DocumentImpl document) { in LeafNodeImpl()
DAttrImpl.java49 AttrImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { in AttrImpl()
82 AttrImpl(DocumentImpl document, String name) { in AttrImpl()
DTextImpl.java36 TextImpl(DocumentImpl document, String data) { in TextImpl()
DNotationImpl.java41 NotationImpl(DocumentImpl document, String notationName, String publicID, in NotationImpl()
DNamedNodeMapImpl.java124 Document document = list.get(0).getOwnerDocument(); in setNamedItem() local
154 Document document = list.get(0).getOwnerDocument(); in setNamedItemNS() local
DEntityImpl.java41 EntityImpl(DocumentImpl document, String notationName, String publicID, in EntityImpl()
DProcessingInstructionImpl.java41 ProcessingInstructionImpl(DocumentImpl document, String target, String data) { in ProcessingInstructionImpl()
DNodeImpl.java42 DocumentImpl document; field in NodeImpl
44 NodeImpl(DocumentImpl document) { in NodeImpl()
DCharacterDataImpl.java38 CharacterDataImpl(DocumentImpl document, String data) { in CharacterDataImpl()
DInnerNodeImpl.java45 public InnerNodeImpl(DocumentImpl document) { in InnerNodeImpl()
DElementImpl.java52 ElementImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { in ElementImpl()
75 ElementImpl(DocumentImpl document, String name) { in ElementImpl()
/dalvik/libcore/xml/src/test/java/tests/xml/
DSimpleBuilderTest.java74 Document document = builder.parse(getClass().getResourceAsStream( in testGoodFile1() local
132 Document document = builder.parse(getClass().getResourceAsStream( in testGoodFile2() local
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderImpl.java110 Document document = newDocument(); in parse() local
181 private void parse(XmlPullParser parser, Document document, Node node, in parse()
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
DExpatPullParser.java51 private Document document; field in ExpatPullParser