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

1 2 3 4 5 6 7 8

  /libcore/luni/src/main/java/org/xml/sax/
EntityResolver.java 45 * public InputSource resolveEntity (String publicId, String systemId)
113 public abstract InputSource resolveEntity (String publicId,
HandlerBase.java 73 * @see org.xml.sax.EntityResolver#resolveEntity
75 public InputSource resolveEntity (String publicId, String systemId)
  /libcore/luni/src/main/java/org/xml/sax/ext/
EntityResolver2.java 21 * {@link EntityResolver2#resolveEntity EntityResolver2.resolveEntity()}
23 * {@link EntityResolver#resolveEntity EntityResolver.resolveEntity()} method.
97 * {@link #resolveEntity resolveEntity()} to gain benefits such as use
190 public InputSource resolveEntity (
DefaultHandler2.java 18 * original SAX1 {@link DefaultHandler#resolveEntity resolveEntity()}
124 * {@link DefaultHandler#resolveEntity DefaultHandler.resolveEntity()},
154 public InputSource resolveEntity (String name, String publicId,
163 * {@link EntityResolver2#resolveEntity EntityResolver2.resolveEntity()}
182 public InputSource resolveEntity (String publicId, String systemId)
184 { return resolveEntity (null, publicId, null, systemId); }
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
LocalEntityResolver.java 32 public InputSource resolveEntity(final String publicId, String systemId)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockResolver.java 42 public InputSource resolveEntity(String publicId, String systemId)
  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 87 * @see org.xml.sax.EntityResolver#resolveEntity
89 public InputSource resolveEntity (String publicId, String systemId)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
saxutils.py 273 def resolveEntity(self, publicId, systemId):
274 return self._ent_handler.resolveEntity(publicId, systemId)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
saxutils.py 245 def resolveEntity(self, publicId, systemId):
246 return self._ent_handler.resolveEntity(publicId, systemId)
  /external/python/cpython2/Lib/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
saxutils.py 273 def resolveEntity(self, publicId, systemId):
274 return self._ent_handler.resolveEntity(publicId, systemId)
  /external/python/cpython3/Lib/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 229 @Override public InputSource resolveEntity(String publicId, String systemId) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
saxutils.py 266 def resolveEntity(self, publicId, systemId):
267 return self._ent_handler.resolveEntity(publicId, systemId)
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
saxutils.py 266 def resolveEntity(self, publicId, systemId):
267 return self._ent_handler.resolveEntity(publicId, systemId)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
saxutils.py 266 def resolveEntity(self, publicId, systemId):
267 return self._ent_handler.resolveEntity(publicId, systemId)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 230 def resolveEntity(self, publicId, systemId):
saxutils.py 266 def resolveEntity(self, publicId, systemId):
267 return self._ent_handler.resolveEntity(publicId, systemId)
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 91 public InputSource resolveEntity(
  /external/libxml2/
legacy.c 108 "SAX function resolveEntity",
213 } else if (!strcmp(name, "SAX function resolveEntity")) {
214 *((resolveEntitySAXFunc *) result) = ctxt->sax->resolveEntity;
331 } else if (!strcmp(name, "SAX function resolveEntity")) {
332 ctxt->sax->resolveEntity = *((resolveEntitySAXFunc *) value);
904 * resolveEntity:
911 * - override this resolveEntity() callback in the SAX block
919 resolveEntity(void *ctx, const xmlChar * publicId,
922 DEPRECATED("resolveEntity")
    [all...]

Completed in 1054 milliseconds

1 2 3 4 5 6 7 8