Home
last modified time | relevance | path

Searched refs:notationDecl (Results 1 – 13 of 13) sorted by relevance

/libcore/luni/src/main/java/org/xml/sax/
DDTDHandler.java80 public abstract void notationDecl (String name, in notationDecl() method
DHandlerBase.java100 public void notationDecl (String name, String publicId, String systemId) in notationDecl() method in HandlerBase
/libcore/luni/src/main/java/org/xml/sax/helpers/
DXMLFilterImpl.java400 public void notationDecl (String name, String publicId, String systemId) in notationDecl() method in XMLFilterImpl
404 dtdHandler.notationDecl(name, publicId, systemId); in notationDecl()
DDefaultHandler.java116 public void notationDecl (String name, String publicId, String systemId) in notationDecl() method in DefaultHandler
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
DHandlerBaseTest.java47 h.notationDecl("name", "publicID", "systemID"); in testNotationDecl()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
DDefaultHandlerTest.java51 h.notationDecl("name", "publicID", "systemID"); in testNotationDecl()
DXMLFilterImplTest.java273 parent.notationDecl("foo", "bar", "foobar"); in testNotationDecl()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
DMockHandler.java77 public void notationDecl(String name, String publicId, String systemId) throws SAXException { in notationDecl() method in MockHandler
/libcore/luni/src/main/java/org/apache/harmony/xml/
DExpatParser.java237 … /*package*/ void notationDecl(String name, String publicId, String systemId) throws SAXException { in notationDecl() method in ExpatParser
240 dtdHandler.notationDecl(name, publicId, systemId); in notationDecl()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DSAXParserTestSupport.java267 public void notationDecl(String name, String publicId, in notationDecl() method in SAXParserTestSupport.MyDefaultHandler
438 public void notationDecl(String name, String publicId, in notationDecl() method in SAXParserTestSupport.MyHandler
/libcore/luni/src/test/java/libcore/xml/
DSaxTest.java232 @Override public void notationDecl(String name, String publicId, String systemId) { in notationDecl() method in SaxTest.ThrowingHandler
DExpatSaxParserTest.java444 public void notationDecl(String name, String publicId, String systemId) { in notationDecl() method in ExpatSaxParserTest.TestDtdHandler
/libcore/luni/src/main/native/
Dorg_apache_harmony_xml_ExpatParser.cpp951 static void notationDecl(void* data, const char* name, const char* /*base*/, const char* systemId, … in notationDecl() function
1013 XML_SetNotationDeclHandler(parser, notationDecl); in ExpatParser_initialize()