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

1 2 3

  /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/chromium_org/third_party/libxml/src/
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...]
  /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...]
  /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");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
saxutils.py 258 def notationDecl(self, name, publicId, systemId):
259 self._dtd_handler.notationDecl(name, publicId, systemId)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
saxutils.py 258 def notationDecl(self, name, publicId, systemId):
259 self._dtd_handler.notationDecl(name, publicId, systemId)
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
DefaultHandlerTest.java 51 h.notationDecl("name", "publicID", "systemID");
  /external/chromium_org/third_party/libxml/src/include/libxml/
SAX.h 88 notationDecl (void *ctx,
parser.h 724 notationDeclSAXFunc notationDecl;
765 notationDeclSAXFunc notationDecl;
    [all...]
  /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,
  /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,

Completed in 1501 milliseconds

1 2 3