Lines Matching refs:XMLInputSource

68 import com.sun.org.apache.xerces.internal.xni.parser.XMLInputSource;
535 public void loadGrammar(XMLInputSource source[])
553 public Grammar loadGrammar(XMLInputSource source)
584 } // loadGrammar(XMLInputSource): Grammar
598 XMLInputSource source,
618 } // loadSchema(XSDDescription, XMLInputSource): SchemaGrammar
632 public static XMLInputSource resolveDocument(XSDDescription desc, Map locationPairs,
739 * XMLInputSource. Valid types are: String, org.xml.sax.InputSource,
754 XMLInputSource xis = null;
857 private XMLInputSource xsdToXMLInputSource(
866 XMLInputSource xis = null;
877 return new XMLInputSource(null, loc, null);
883 return new XMLInputSource(null, null, null,
895 return new XMLInputSource(null, null, null, is, null);
905 //Convert a SAX InputSource to an equivalent XNI XMLInputSource
907 private static XMLInputSource saxToXMLInputSource(InputSource sis) {
913 return new XMLInputSource(publicId, systemId, null, charStream,
919 return new XMLInputSource(publicId, systemId, null, byteStream,
923 return new XMLInputSource(publicId, systemId, null);
1133 Grammar g = loadGrammar(new XMLInputSource(null, uri, null));
1151 (SchemaGrammar) loadGrammar(new XMLInputSource(null, uriList.item(i), null));
1344 XMLInputSource dom2xmlInputSource(LSInput is) {
1345 // need to wrap the LSInput with an XMLInputSource
1346 XMLInputSource xis = null;
1358 xis = new XMLInputSource(is.getPublicId(), is.getSystemId(),
1364 xis = new XMLInputSource(is.getPublicId(), is.getSystemId(),
1371 xis = new XMLInputSource(is.getPublicId(), is.getSystemId(),
1377 xis = new XMLInputSource(is.getPublicId(), is.getSystemId(),