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

1 2

  /dalvik/libcore/xml/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 99 * @see org.xml.sax.DTDHandler#notationDecl
101 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...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 117 * @see org.xml.sax.DTDHandler#notationDecl
119 public void notationDecl (String name, String publicId, String systemId)
XMLFilterImpl.java 405 public void notationDecl (String name, String publicId, String systemId)
409 dtdHandler.notationDecl(name, publicId, systemId);
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/
HandlerBaseTest.java 58 method = "notationDecl",
62 h.notationDecl("name", "publicID", "systemID");
  /dalvik/libcore/xml/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/libxml2/include/libxml/
SAX.h 88 notationDecl (void *ctx,
parser.h 716 notationDeclSAXFunc notationDecl;
757 notationDeclSAXFunc notationDecl;
    [all...]
  /dalvik/libcore/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...]
  /dalvik/libcore/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);
  /dalvik/libcore/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...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
DefaultHandlerTest.java 61 method = "notationDecl",
66 h.notationDecl("name", "publicID", "systemID");
XMLFilterImplTest.java 387 method = "notationDecl",
392 parent.notationDecl("foo", "bar", "foobar");
398 assertEquals("notationDecl", logger.getMethod());
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
ExpatParser.java 230 /*package*/ void notationDecl(String name, String publicId, String systemId) throws SAXException {
233 dtdHandler.notationDecl(name, publicId, systemId);
  /dalvik/libcore/xml/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,
  /dalvik/libcore/xml/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 958 static void notationDecl(void* data, const char* name, const char* base, const char* systemId, const char* publicId) {
1053 XML_SetNotationDeclHandler(parser, notationDecl);
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java     [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
SerializerBase.java     [all...]
  /dalvik/libcore/xml/src/test/java/org/apache/harmony/xml/
ExpatParserTest.java 586 public void notationDecl(String name, String publicId, String systemId) {
  /external/jdiff/
xerces.jar 

Completed in 4911 milliseconds

1 2