Lines Matching defs:xmlInputSource

578      * @param xmlInputSource    the input source, with sufficient information
587 public String setupCurrentEntity(String name, XMLInputSource xmlInputSource,
592 final String publicId = xmlInputSource.getPublicId();
593 String literalSystemId = xmlInputSource.getSystemId();
594 String baseSystemId = xmlInputSource.getBaseSystemId();
595 String encoding = xmlInputSource.getEncoding();
601 Reader reader = xmlInputSource.getCharacterStream();
609 stream = xmlInputSource.getByteStream();
620 if (xmlInputSource instanceof HTTPInputSource) {
622 final HTTPInputSource httpInputSource = (HTTPInputSource) xmlInputSource;
958 XMLInputSource xmlInputSource = null;
983 xmlInputSource = fEntityResolver.resolveEntity(ri);
984 if(xmlInputSource != null) {
989 if(xmlInputSource != null){
991 staxInputSource = new StaxXMLInputSource(xmlInputSource, fISCreatedByResolver);
1007 System.err.println(" = " + xmlInputSource);
1063 XMLInputSource xmlInputSource = null;
1068 xmlInputSource = fEntityResolver.resolveEntity(resourceIdentifier);
1074 // an input source (xmlInputSource == null)?
1076 if (xmlInputSource == null) {
1080 xmlInputSource = new XMLInputSource(publicId, literalSystemId, baseSystemId);
1085 System.err.println(" = " + xmlInputSource);
1088 return xmlInputSource;
1194 XMLInputSource xmlInputSource = null ;
1203 xmlInputSource = staxInputSource.getXMLInputSource() ;
1221 xmlInputSource = new XMLInputSource(null, null, null, reader, null);
1225 startEntity(entityName, xmlInputSource, literal, external);
1233 * @param xmlInputSource The input source of the document entity.
1238 public void startDocumentEntity(XMLInputSource xmlInputSource)
1240 startEntity(XMLEntity, xmlInputSource, false, true);
1248 * @param xmlInputSource The input source of the DTD entity.
1253 public void startDTDEntity(XMLInputSource xmlInputSource)
1255 startEntity(DTDEntity, xmlInputSource, false, true);
1275 * @param xmlInputSource The input source of the entity.
1284 XMLInputSource xmlInputSource,
1288 String encoding = setupCurrentEntity(name, xmlInputSource, literal, isExternal);