HomeSort by relevance Sort by last modified time
    Searched refs:systemId (Results 51 - 75 of 316) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 192 if fp is None and options.systemId:
194 fp = urllib2.urlopen(input.systemId)
215 def resolveEntity(self, publicId, systemId):
216 assert systemId is not None
219 source.systemId = systemId
220 source.byteStream = self._get_opener().open(systemId)
227 parts = urlparse.urlparse(systemId)
258 'encoding', 'publicId', 'systemId', 'baseURI')
266 self.systemId = Non
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 192 if fp is None and options.systemId:
194 fp = urllib2.urlopen(input.systemId)
215 def resolveEntity(self, publicId, systemId):
216 assert systemId is not None
219 source.systemId = systemId
220 source.byteStream = self._get_opener().open(systemId)
227 parts = urlparse.urlparse(systemId)
258 'encoding', 'publicId', 'systemId', 'baseURI')
266 self.systemId = Non
    [all...]
  /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);
110 public void unparsedEntityDecl(String name, String publicId, String systemId,
112 logger.add("unparsedEntityDecl", name, publicId, systemId, notationName);
139 public void startDTD(String name, String publicId, String systemId) throws SAXException {
140 logger.add("startDTD", name, publicId, systemId);
NoSubclassParser.java 36 public void parse(String systemId) {
MockParser.java 44 public void parse(String systemId) throws SAXException, IOException {
45 logger.add("parse", systemId);
DoNothingParser.java 37 public void parse(String systemId) {
DoNothingXMLReader.java 58 public void parse(String systemId) {
NoAccessParser.java 37 public void parse(String systemId) {
NoAccessXMLReader.java 58 public void parse(String systemId) {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 79 * @param systemId The system identifier provided in the XML
89 public InputSource resolveEntity (String publicId, String systemId)
113 * @param systemId The notation system identifier.
118 public void notationDecl (String name, String publicId, String systemId)
135 * @param systemId The entity system identifier.
142 String systemId, String notationName)
XMLFilterImpl.java 342 * @param systemId The system identifier as a fully-qualified URI.
349 public void parse (String systemId)
352 parse(new InputSource(systemId));
367 * @param systemId The entity's system identifier.
375 public InputSource resolveEntity (String publicId, String systemId)
379 return entityResolver.resolveEntity(publicId, systemId);
398 * @param systemId The notation's system identifier, or null.
402 public void notationDecl (String name, String publicId, String systemId)
406 dtdHandler.notationDecl(name, publicId, systemId);
416 * @param systemId The entity's system identifier, or null
    [all...]
  /external/libxml2/
testHTML.c 150 const xmlChar *ExternalID, const xmlChar *SystemID)
157 if (SystemID == NULL)
160 fprintf(stdout, " %s)\n", SystemID);
167 * @systemId: The system ID of the entity
178 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
188 if (systemId != NULL)
189 fprintf(stdout, ", %s)\n", (char *)systemId);
193 if (systemId != NULL) {
194 return(xmlNewInputFromFile(ctxt, (char *) systemId));
239 * @systemId: The system ID of the entit
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSInput.java 42 * <code>LSInput.systemId</code>
148 public void setSystemId(String systemId);
169 * resolving a relative <code>systemId</code> to an absolute URI.
176 * resolving a relative <code>systemId</code> to an absolute URI.
  /libcore/luni/src/main/java/org/xml/sax/ext/
EntityResolver2.java 175 * @param systemId The system identifier of the external entity
194 String systemId
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
createDocumentType03.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
70 String systemId = "myDoc.dtd";
79 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype02.java 48 * systemId should create an empty DocumentType node.
51 * and a valid publicId and systemId. Check if the the DocumentType node was created
84 String systemId = "dom2.dtd";
106 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype04.java 82 String systemId = "dom2.dtd";
108 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 48 String publicId, String systemId) throws DOMException {
49 return new DocumentTypeImpl(null, qualifiedName, publicId, systemId);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 200 * @param systemID Base URI for the source tree.
202 public void setSystemId(String systemID)
204 m_baseSystemID = systemID;
205 m_dtm.setDocumentBaseURI(systemID);
211 * @return The systemID that was set with {@link #setSystemId}.
237 * @param systemId The entity's system identifier.
248 public InputSource resolveEntity(String publicId, String systemId)
254 return m_entityResolver.resolveEntity(publicId, systemId);
271 * @param systemId The notation's system identifier, or null.
276 public void notationDecl(String name, String publicId, String systemId)
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_adapters/
default.js 49 exports.setDocumentType = function (document, name, publicId, systemId) {
62 doctypeNode.systemId = systemId;
70 systemId: systemId
182 return doctypeNode.systemId;
  /prebuilts/tools/common/m2/repository/xml-resolver/xml-resolver/1.2/
xml-resolver-1.2.jar 
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
doctype.js 94 exports.isQuirks = function (name, publicId, systemId) {
98 if (systemId && systemId.toLowerCase() === QUIRKS_MODE_SYSTEM_ID)
109 if (systemId === null)
121 exports.serializeContent = function (name, publicId, systemId) {
127 else if (systemId !== null)
130 if (systemId !== null)
131 str += ' ' + enquoteDoctypeId(systemId);
  /external/libxml2/include/libxml/
SAX.h 50 const xmlChar *SystemID);
55 const xmlChar *SystemID);
65 const xmlChar *systemId);
72 const xmlChar *systemId,
91 const xmlChar *systemId);
96 const xmlChar *systemId,
SAX2.h 48 const xmlChar *SystemID);
53 const xmlChar *SystemID);
63 const xmlChar *systemId);
70 const xmlChar *systemId,
89 const xmlChar *systemId);
94 const xmlChar *systemId,
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 60 * @param systemId The external subset system identifier.
78 String systemId) throws DOMException {

Completed in 7417 milliseconds

1 23 4 5 6 7 8 91011>>