HomeSort by relevance Sort by last modified time
    Searched full:systemid (Results 26 - 50 of 377) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMSource.java 49 private String systemID;
87 * @param systemID Specifies the base URI associated with node.
89 public DOMSource(Node node, String systemID) {
91 setSystemId(systemID);
116 * @param systemID Base URL for this DOM tree.
118 public void setSystemId(String systemID) {
119 this.systemID = systemID;
129 return this.systemID;
DOMResult.java 47 * <code>systemId</code>
66 * <code>systemId</code>
89 * @param systemId The system identifier which may be used in association with this node.
91 public DOMResult(Node node, String systemId) {
94 setSystemId(systemId);
116 * <p><code>systemId</code> will be set to <code>null</code>.</p>
163 * then the behavior is the same as calling {@link #DOMResult(Node node, String systemId)},
168 * @param systemId The system identifier which may be used in association with this node.
175 public DOMResult(Node node, Node nextSibling, String systemId) {
192 setSystemId(systemId);
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
DefaultHandler2.java 54 public void startDTD (String name, String publicId, String systemId)
87 String publicId, String systemId)
121 * Tells the parser to resolve the systemId against the baseURI
127 * with the <em>systemId</em> already absolutized.
142 * @param systemId The system identifier of the external entity
155 String baseURI, String systemId)
170 * @param systemId The system identifier of the external entity
182 public InputSource resolveEntity (String publicId, String systemId)
184 { return resolveEntity (null, publicId, null, systemId); }
  /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);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMImplementationCreateDocumentType.java 35 * and systemId should create an empty DocumentType node.
82 String systemId;
96 systemId = (String) systemIds.get(indexN10061);
98 publicId, systemId);
115 String systemId = "dom2.dtd";
138 systemId);
152 String systemId = "dom2.dtd";
175 systemId);
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
etree.py 162 def __init__(self, name, publicId, systemId):
166 self.systemId = systemId
178 return self._element.get("systemId", "")
182 self._element.set("systemId", value)
184 systemId = property(_getSystemId, _setSystemId)
201 if element.get("publicId") or element.get("systemId"):
203 systemId = element.get("systemId") or ""
205 (element.text, publicId, systemId))
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/dom/src/test/java/org/w3c/domts/level2/core/
createDocumentType01.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
39 * Invoke method createDocumentType(qualifiedName,publicId,systemId)
41 * string "prefix::local", publicId as "STAFF", and systemId as "staff".
72 String systemId = "staff.xml";
83 newType = domImpl.createDocumentType(malformedName, publicId, systemId);
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);
domimplementationcreatedocumenttype01.java 35 * systemId should create an empty DocumentType node.
72 String systemId;
86 systemId = (String) systemIds.get(indexN10061);
87 newDocType = 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);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 286 String systemId = input.getSystemId();
287 if (systemId == null) {
292 in = ExpatParser.openUrl(systemId);
294 parse(in, encoding, input.getPublicId(), systemId);
300 private void parse(Reader in, String publicId, String systemId)
307 systemId
312 private void parse(InputStream in, String charsetName, String publicId, String systemId)
315 new ExpatParser(charsetName, this, processNamespaces, publicId, systemId);
319 public void parse(String systemId) throws IOException, SAXException {
320 parse(new InputSource(systemId));
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
NodeLocator.java 44 * @param systemId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId,
52 this.m_systemId = systemId;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
HandlerBaseTest.java 40 h.resolveEntity("publicID", "systemID");
47 h.notationDecl("name", "publicID", "systemID");
51 h.unparsedEntityDecl("name", "publicID", "systemID", "notationName");
  /libcore/luni/src/main/java/javax/xml/transform/sax/
TemplatesHandler.java 51 * @param systemID Base URI for this stylesheet.
53 public void setSystemId(String systemID);
58 * @return The systemID that was set with {@link #setSystemId}.
TransformerHandler.java 50 * @param systemID Base URI for the source tree.
52 public void setSystemId(String systemID);
57 * @return The systemID that was set with {@link #setSystemId}.
  /external/libxml2/
entities.c 116 if ((entity->SystemID != NULL) &&
117 (!xmlDictOwns(dict, entity->SystemID)))
118 xmlFree((char *) entity->SystemID);
131 if (entity->SystemID != NULL)
132 xmlFree((char *) entity->SystemID);
150 const xmlChar *ExternalID, const xmlChar *SystemID,
171 if (SystemID != NULL)
172 ret->SystemID = xmlStrdup(SystemID);
177 if (SystemID != NULL
    [all...]
testSAX.c 309 const xmlChar *ExternalID, const xmlChar *SystemID)
319 if (SystemID == NULL)
322 fprintf(stdout, " %s)\n", SystemID);
333 const xmlChar *ExternalID, const xmlChar *SystemID)
343 if (SystemID == NULL)
346 fprintf(stdout, " %s)\n", SystemID);
353 * @systemId: The system ID of the entity
364 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
377 if (systemId != NULL)
378 fprintf(stdout, ", %s)\n", (char *)systemId);
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
simple_api_parser_test.js 23 doctype: function (name, publicId, systemId) {
29 else if (systemId !== null)
32 if (systemId !== null)
33 actual += ' "' + systemId + '"';
  /external/libxml2/include/libxml/
entities.h 54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */
87 const xmlChar *SystemID,
94 const xmlChar *SystemID,
101 const xmlChar *SystemID,
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
entitygetpublicid.java 71 String systemId;
81 systemId = entityNode.getSystemId();
82 assertURIEquals("systemId", null, null, null, "entityFile", null, null, null, null, systemId);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
DefaultHandler2Test.java 52 h.startDTD("name", "publicId", "systemId");
108 h.externalEntityDecl("name", "publicId", "systemId");
134 assertNull(h.resolveEntity("publicId", "systemId"));
145 "systemId"));

Completed in 440 milliseconds

12 3 4 5 6 7 8 91011>>