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

1 2 3 4 5

  /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)
  /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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
saxutils.py 265 def notationDecl(self, name, publicId, systemId):
266 self._dtd_handler.notationDecl(name, publicId, systemId)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
saxutils.py 237 def notationDecl(self, name, publicId, systemId):
238 self._dtd_handler.notationDecl(name, publicId, systemId)
  /external/python/cpython2/Lib/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
saxutils.py 265 def notationDecl(self, name, publicId, systemId):
266 self._dtd_handler.notationDecl(name, publicId, systemId)
  /external/python/cpython3/Lib/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
saxutils.py 294 def notationDecl(self, name, publicId, systemId):
295 self._dtd_handler.notationDecl(name, publicId, systemId)
  /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);
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 232 @Override public void notationDecl(String name, String publicId, String 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)
  /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,
  /external/libxml2/
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...]

Completed in 329 milliseconds

1 2 3 4 5