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

1 2 3 45 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
createDocumentType04.java 61 String systemId = "myDoc.dtd";
71 docType = domImpl.createDocumentType("", publicId, systemId);
domimplementationcreatedocumenttype04.java 82 String systemId = "dom2.dtd";
108 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
importNode03.java 42 * systemId is "staff.dtd"
86 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, system);
importNode09.java 40 * Method should return a node of type Entity whose publicId, systemId and
42 * The returned node should belong to this document whose systemId is "staff.dtd"
importNode10.java 44 * belongs to this document whose systemId is "staff.dtd".
89 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, system);
importNode12.java 41 * The returned node should belong to this document whose systemId is "staffNS.dtd"
91 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, system);
importNode13.java 42 * The returned node should belong to this document whose systemId is "staff.dtd"
90 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, system);
importNode14.java 41 * parameters. The returned PI should belong to this document whose systemId is "staff.dtd".
88 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, system);
importNode15.java 42 * whose systemId is "staff.dtd"
86 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, system);
  /libcore/luni/src/main/java/javax/xml/transform/
Result.java 69 * @param systemId The system identifier as a URI string.
71 public void setSystemId(String systemId);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 55 * systemId is "staff.dtd"
120 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
173 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
351 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
403 // assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
435 // assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
461 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
485 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
DocumentTypeInternalSubset.java 12 * Create a new DocumentType node with null values for publicId and systemId.
  /frameworks/base/telephony/java/android/telephony/cdma/
CdmaCellLocation.java 72 this.mSystemId = bundle.getInt("systemId", mSystemId);
150 int baseStationLongitude, int systemId, int networkId) {
155 this.mSystemId = systemId;
216 bundleToFill.putInt("systemId", this.mSystemId);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
DoNothingXMLReader.java 58 public void parse(String systemId) {
NoInstanceXMLReader.java 61 public void parse(String systemId) {
  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXSource.java 141 * @param systemId The system identifier as a URI string.
143 public void setSystemId(String systemId) {
146 inputSource = new InputSource(systemId);
148 inputSource.setSystemId(systemId);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMOutputImpl.java 49 * 3.LSOutput.systemId
143 public void setSystemId(String systemId){
144 fSystemId = systemId;
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/
test_utils.js 177 systemId = treeAdapter.getDocumentTypeNodeSystemId(node);
183 if (publicId !== null || systemId !== null) {
185 parts.push('"' + (systemId || '') + '"');
  /external/libxml2/os400/libxmlrpg/
entities.rpgle 76 d SystemID * value options(*string) const xmlChar *
86 d SystemID * value options(*string) const xmlChar *
96 d SystemID * value options(*string) const xmlChar *
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/serializer/
htmlserializer.py 203 elif token["systemId"]:
205 if token["systemId"]:
206 if token["systemId"].find('"') >= 0:
207 if token["systemId"].find("'") >= 0:
212 doctype += " %s%s%s" % (quote_char, token["systemId"], quote_char)
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 100 String systemId = source.getSystemId();
103 document.setDocumentURI(systemId);
114 } else if (systemId != null) {
115 URL url = new URL(systemId);
142 locator.setSystemId(systemId);
206 String systemId = parser.getSystemId();
207 document.appendChild(new DocumentTypeImpl(document, name, publicId, systemId));
  /external/libxml2/include/libxml/
parser.h 339 * @systemId: The system ID of the entity
352 const xmlChar *systemId);
358 * @SystemID: the SYSTEM ID (e.g. filename or URL)
365 const xmlChar *SystemID);
371 * @SystemID: the SYSTEM ID (e.g. filename or URL)
378 const xmlChar *SystemID);
407 * @systemId: The system ID of the entity
416 const xmlChar *systemId,
423 * @systemId: The system ID of the entity
430 const xmlChar *systemId);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerIdentityImpl.java 119 * @param systemID Base URI for the source tree.
121 public void setSystemId(String systemID)
123 m_systemID = systemID;
129 * @return The systemID that was set with {@link #setSystemId}.
350 String systemID = source.getSystemId();
354 if (systemID != null) {
355 source.setSystemId(systemID);
819 * @param systemId The notation system identifier.
826 public void notationDecl(String name, String publicId, String systemId)
830 m_resultDTDHandler.notationDecl(name, publicId, systemId);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
minidom.py     [all...]

Completed in 433 milliseconds

1 2 3 45 6 7 8 91011>>