Home | History | Annotate | Download | only in xml

Lines Matching refs:inputSource

30 import org.xml.sax.InputSource;
283 InputSource inputSource = entityResolver.resolveEntity(
285 if (inputSource == null) {
290 * new InputSource(systemId).
304 String encoding = pickEncoding(inputSource);
308 pointer, inputSource.getPublicId(),
309 inputSource.getSystemId());
311 parseExternalEntity(entityParser, inputSource);
320 private String pickEncoding(InputSource inputSource) {
321 Reader reader = inputSource.getCharacterStream();
326 String encoding = inputSource.getEncoding();
334 InputSource inputSource) throws IOException, SAXException {
341 Reader reader = inputSource.getCharacterStream();
354 InputStream in = inputSource.getByteStream();
369 String systemId = inputSource.getSystemId();