Searched defs:notationDecl (Results 1 - 17 of 17) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/xml/sax/
H A DDTDHandler.java80 public abstract void notationDecl (String name, method in interface:DTDHandler
90 * reported by the {@link #notationDecl notationDecl} event.
106 * @see #notationDecl
H A DHandlerBase.java99 * @see org.xml.sax.DTDHandler#notationDecl method in class:HandlerBase
101 public void notationDecl (String name, String publicId, String systemId)
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java107 * @see org.xml.sax.DTDHandler#notationDecl
109 public void notationDecl(StylesheetHandler handler, String name, method in class:XSLTElementProcessor
H A DStylesheetHandler.java328 * @see org.xml.sax.DTDHandler#notationDecl
330 public void notationDecl(String name, String publicId, String systemId) method in class:StylesheetHandler
332 getCurrentProcessor().notationDecl(this, name, publicId, systemId);
/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
H A DDefaultHandler.java117 * @see org.xml.sax.DTDHandler#notationDecl method in class:DefaultHandler
119 public void notationDecl (String name, String publicId, String systemId)
H A DXMLFilterImpl.java405 public void notationDecl (String name, String publicId, String systemId)
409 dtdHandler.notationDecl(name, publicId, systemId);
400 public void notationDecl (String name, String publicId, String systemId) method in class:XMLFilterImpl
/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/support/
H A DMockHandler.java77 public void notationDecl(String name, String publicId, String systemId) throws SAXException { method in class:MockHandler
78 logger.add("notationDecl", name, publicId, systemId);
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java274 * @see org.xml.sax.DTDHandler#notationDecl
276 public void notationDecl(String name, String publicId, String systemId) method in class:TransformerHandlerImpl
282 m_dtdHandler.notationDecl(name, publicId, systemId);
H A DTransformerIdentityImpl.java822 * @see org.xml.sax.DTDHandler#notationDecl
826 public void notationDecl(String name, String publicId, String systemId) method in class:TransformerIdentityImpl
830 m_resultDTDHandler.notationDecl(name, publicId, systemId);
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java230 /*package*/ void notationDecl(String name, String publicId, String systemId) throws SAXException { method in class:ExpatParser
233 dtdHandler.notationDecl(name, publicId, systemId);
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource_Filter.java404 public void notationDecl(String a, String b, String c) throws SAXException method in class:IncrementalSAXSource_Filter
407 clientDTDHandler.notationDecl(a,b,c);
/dalvik/libcore/xml/src/test/java/org/apache/harmony/xml/
H A DExpatParserTest.java586 public void notationDecl(String name, String publicId, String systemId) { method in class:ExpatParserTest.TestDtdHandler
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/
H A DSAXParserTestSupport.java61 public static final String KEY_NOTATION_DECL = "notationDecl";
267 public void notationDecl(String name, String publicId, method in class:SAXParserTestSupport.MyDefaultHandler
438 public void notationDecl(String name, String publicId, method in class:SAXParserTestSupport.MyHandler
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java1597 * @see org.xml.sax.DTDHandler#notationDecl
1601 public void notationDecl(String name, String publicId, String systemId) method in class:SAX2DTM
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DSerializerBase.java1315 * @see org.xml.sax.DTDHandler#notationDecl(java.lang.String, java.lang.String, java.lang.String)
1317 public void notationDecl(String arg0, String arg1, String arg2) method in class:SerializerBase
H A DToStream.java3487 * @see org.xml.sax.DTDHandler#notationDecl(java.lang.String, java.lang.String, java.lang.String)
3489 public void notationDecl(String name, String pubID, String sysID) throws SAXException { method in class:ToStream
/dalvik/libcore/xml/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp958 static void notationDecl(void* data, const char* name, const char* base, const char* systemId, const char* publicId) { function
1053 XML_SetNotationDeclHandler(parser, notationDecl);
1475 notationDeclMethod = env->GetMethodID(clazz, "notationDecl",

Completed in 595 milliseconds