/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.
|
/external/expat/amiga/include/libraries/ |
expat.h | 237 const XML_Char *systemId, 249 const XML_Char *systemId, 257 const XML_Char *systemId, 275 const XML_Char *systemId,
|
/external/webkit/Source/WebCore/bindings/objc/ |
DOMImplementationFront.h | 48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
|
/frameworks/base/telephony/java/android/telephony/cdma/ |
CdmaCellLocation.java | 72 this.mSystemId = bundle.getInt("systemId", mSystemId); 149 int baseStationLongitude, int systemId, int networkId) { 154 this.mSystemId = systemId; 215 bundleToFill.putInt("systemId", this.mSystemId);
|
/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);
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
NoInstanceXMLReader.java | 61 public void parse(String 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;
|
/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 | 336 * @systemId: The system ID of the entity 349 const xmlChar *systemId); 355 * @SystemID: the SYSTEM ID (e.g. filename or URL) 362 const xmlChar *SystemID); 368 * @SystemID: the SYSTEM ID (e.g. filename or URL) 375 const xmlChar *SystemID); 404 * @systemId: The system ID of the entity 413 const xmlChar *systemId, 420 * @systemId: The system ID of the entity 427 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...] |
TrAXFilter.java | 178 * @param systemId The system identifier as a fully-qualified URI. 186 public void parse (String systemId) 189 parse(new InputSource(systemId));
|
/external/libxml2/ |
SAX2.c | 331 * @SystemID: the SYSTEM ID (e.g. filename or URL) 337 const xmlChar *ExternalID, const xmlChar *SystemID) 345 name, ExternalID, SystemID); 359 xmlCreateIntSubset(ctxt->myDoc, name, ExternalID, SystemID); 369 * @SystemID: the SYSTEM ID (e.g. filename or URL) 375 const xmlChar *ExternalID, const xmlChar *SystemID) 382 name, ExternalID, SystemID); 384 if (((ExternalID != NULL) || (SystemID != NULL)) && 403 SystemID); 408 xmlNewDtd(ctxt->myDoc, name, ExternalID, SystemID); [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Parser.java | 452 public void parse (String systemid) throws IOException, SAXException { 453 parse(new InputSource(systemid)); 485 String systemid = s.getSystemId(); local 487 if (i == null) i = getInputStream(publicid, systemid); 505 // Get an InputStream based on a publicid and a systemid 506 private InputStream getInputStream(String publicid, String systemid) throws IOException, SAXException { 508 URL url = new URL(basis, systemid); 834 String systemid = null; local 843 systemid = v[3]; 848 systemid = v[4] [all...] |
/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)
|
/libcore/luni/src/main/java/org/xml/sax/ |
Parser.java | 191 * parse(new InputSource(systemId)); 197 * @param systemId The system identifier (URI). 205 public abstract void parse (String systemId)
|
/libcore/luni/src/test/java/libcore/xml/ |
SaxTest.java | 229 @Override public InputSource resolveEntity(String publicId, String systemId) { 232 @Override public void notationDecl(String name, String publicId, String systemId) { 236 String name, String publicId, String systemId, String notationName) {
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
TransformerFactoryImpl.java | 193 * The systemID that was specified in 194 * processFromNode(Node node, String systemID). 199 * The systemID that was specified in 200 * processFromNode(Node node, String systemID). 202 * @return The systemID, or null. 216 * @param systemID The systemID from where xsl:includes and xsl:imports 223 javax.xml.transform.Templates processFromNode(Node node, String systemID) 227 m_DOMsystemID = systemID;
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 82 * @param systemId System identifier for the document. 85 public TreeWalker(ContentHandler contentHandler, DOMHelper dh, String systemId) 89 if (systemId != null) 90 m_locator.setSystemId(systemId);
|
/external/expat/xmlwf/ |
xmlwf.c | 462 const XML_Char *systemId, 470 if (systemId) { 472 characterData(fp, systemId, (int)tcslen(systemId)); 487 const XML_Char *systemId, 506 characterData(fp, systemId, (int)tcslen(systemId)); 517 characterData(fp, systemId, (int)tcslen(systemId));
|
/external/webkit/Source/WebCore/dom/ |
DOMImplementation.h | 48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
|
/external/expat/lib/ |
expat.h | 316 be non-NULL and systemId, publicID, and notationName will be NULL. 321 For external entities, value will be NULL and systemId will be 336 const XML_Char *systemId, 350 entityName, systemId and notationName arguments will never be 357 const XML_Char *systemId, 369 const XML_Char *systemId, 405 XML_ExternalEntityParserCreate. The systemId argument is the 410 the base for resolving systemId if systemId was relative; this is 436 const XML_Char *systemId, [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
JTidyDOMImplementation.java | 60 * @param systemId The external subset system identifier. 78 String systemId) throws DOMException {
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
importNode01.java | 46 * The returned node should belong to this document whose systemId is "staff.dtd" 104 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, system);
|
/libcore/luni/src/main/java/javax/xml/parsers/ |
SAXParser.java | 142 * @param systemId The systemId which is needed for resolving relative URIs. 155 String systemId) 162 input.setSystemId(systemId); 197 * @param systemId The systemId which is needed for resolving relative URIs. 208 String systemId) 215 input.setSystemId(systemId);
|