HomeSort by relevance Sort by last modified time
    Searched refs:notationDecl (Results 1 - 25 of 45) sorted by null

1 2

  /libcore/luni/src/main/java/org/xml/sax/
DTDHandler.java 80 public abstract void notationDecl (String name,
90 * reported by the {@link #notationDecl notationDecl} event.
106 * @see #notationDecl
HandlerBase.java 100 * @see org.xml.sax.DTDHandler#notationDecl
102 public void notationDecl (String name, String publicId, String systemId)
  /external/libxml2/
SAX.c 59 hdlr->notationDecl = xmlSAX2NotationDecl;
107 hdlr->notationDecl = NULL;
154 hdlr->notationDecl = NULL;
legacy.c 111 "SAX function notationDecl",
219 } else if (!strcmp(name, "SAX function notationDecl")) {
220 *((notationDeclSAXFunc *) result) = ctxt->sax->notationDecl;
337 } else if (!strcmp(name, "SAX function notationDecl")) {
338 ctxt->sax->notationDecl = *((notationDeclSAXFunc *) value);
1024 * notationDecl:
1034 notationDecl(void *ctx, const xmlChar * name,
1037 DEPRECATED("notationDecl")
    [all...]
SAX2.c     [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 116 * @see org.xml.sax.DTDHandler#notationDecl
118 public void notationDecl (String name, String publicId, String systemId)
XMLFilterImpl.java 402 public void notationDecl (String name, String publicId, String systemId)
406 dtdHandler.notationDecl(name, publicId, systemId);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/
HandlerBaseTest.java 47 h.notationDecl("name", "publicID", "systemID");
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
DefaultHandlerTest.java 51 h.notationDecl("name", "publicID", "systemID");
XMLFilterImplTest.java 273 parent.notationDecl("foo", "bar", "foobar");
279 assertEquals("notationDecl", logger.getMethod());
  /external/libxml2/include/libxml/
SAX.h 88 notationDecl (void *ctx,
parser.h 724 notationDeclSAXFunc notationDecl;
765 notationDeclSAXFunc notationDecl;
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockHandler.java 77 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
78 logger.add("notationDecl", name, publicId, systemId);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 274 * @see org.xml.sax.DTDHandler#notationDecl
276 public void notationDecl(String name, String publicId, String systemId)
282 m_dtdHandler.notationDecl(name, publicId, systemId);
TransformerIdentityImpl.java 822 * @see org.xml.sax.DTDHandler#notationDecl
826 public void notationDecl(String name, String publicId, String systemId)
830 m_resultDTDHandler.notationDecl(name, publicId, systemId);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource_Filter.java 404 public void notationDecl(String a, String b, String c) throws SAXException
407 clientDTDHandler.notationDecl(a,b,c);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 107 * @see org.xml.sax.DTDHandler#notationDecl
109 public void notationDecl(StylesheetHandler handler, String name,
StylesheetHandler.java 328 * @see org.xml.sax.DTDHandler#notationDecl
330 public void notationDecl(String name, String publicId, String systemId)
332 getCurrentProcessor().notationDecl(this, name, publicId, systemId);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 226 /*package*/ void notationDecl(String name, String publicId, String systemId) throws SAXException {
229 dtdHandler.notationDecl(name, publicId, systemId);
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserTestSupport.java 61 public static final String KEY_NOTATION_DECL = "notationDecl";
267 public void notationDecl(String name, String publicId,
438 public void notationDecl(String name, String publicId,
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 232 @Override public void notationDecl(String name, String publicId, String systemId) {
ExpatSaxParserTest.java 443 public void notationDecl(String name, String publicId, String systemId) {
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 932 static void notationDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId) {
994 XML_SetNotationDeclHandler(parser, notationDecl);
    [all...]
  /prebuilts/tools/common/m2/internal/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /prebuilts/tools/common/m2/internal/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 

Completed in 431 milliseconds

1 2