/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...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ |
HandlerBaseTest.java | 47 h.notationDecl("name", "publicID", "systemID");
|
/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);
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/ |
DefaultHandlerTest.java | 51 h.notationDecl("name", "publicID", "systemID");
|
/external/libxml2/include/libxml/ |
SAX.h | 88 notationDecl (void *ctx,
|
parser.h | 727 notationDeclSAXFunc notationDecl; 768 notationDeclSAXFunc notationDecl; [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/harmony-tests/src/test/java/org/apache/harmony/tests/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/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);
|