/libcore/luni/src/main/java/org/xml/sax/ |
EntityResolver.java | 45 * public InputSource resolveEntity (String publicId, String systemId) 47 * if (systemId.equals("http://www.myhost.com/today")) { 101 * @param systemId The system identifier of the external entity 114 String systemId)
|
HandlerBase.java | 67 * @param systemId The system identifier provided in the XML 75 public InputSource resolveEntity (String publicId, String systemId) 99 * @param systemId The notation system identifier. 102 public void notationDecl (String name, String publicId, String systemId) 118 * @param systemId The entity system identifier. 123 String systemId, String notationName)
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
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) {
|
NoInstanceParser.java | 40 public void parse(String systemId) {
|
NoSubclassParser.java | 36 public void parse(String systemId) {
|
NoSubclassXMLReader.java | 58 public void parse(String systemId) {
|
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/ |
SAXParserTestSupport.java | 49 public static final String XML_SYSTEM_ID = "." + "/systemid/"; 268 String systemId) { 271 systemId + ParsingSupport.SEPARATOR_STRING); 282 public InputSource resolveEntity(String publicId, String systemId) { 284 // ParsingSupport.SEPARATOR_STRING + systemId); 331 String systemId, String notationName) { 335 // + systemId + ParsingSupport.SEPARATOR_STRING + notationName); 439 String systemId) { 450 public InputSource resolveEntity(String publicId, String systemId) { 483 String systemId, String notationName) [all...] |
/external/libxml2/ |
legacy.c | 872 * @SystemID: the SYSTEM ID (e.g. filename or URL) 879 const xmlChar * ExternalID, const xmlChar * SystemID) 882 xmlSAX2InternalSubset(ctx, name, ExternalID, SystemID); 890 * @SystemID: the SYSTEM ID (e.g. filename or URL) 897 const xmlChar * ExternalID, const xmlChar * SystemID) 900 xmlSAX2ExternalSubset(ctx, name, ExternalID, SystemID); 907 * @systemId: The system ID of the entity 920 const xmlChar * systemId) 923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId)); 967 * @systemId: The system ID of the entit [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorInclude.java | 224 String systemId = handler.peekImportURL(); 228 if (systemId != null) 229 handler.pushBaseIndentifier(systemId); 231 TreeWalker walker = new TreeWalker(handler, new org.apache.xml.utils.DOM2Helper(), systemId); 241 if (systemId != null) 365 * object for the stylsheet from it, and get the systemId
|
XSLTElementProcessor.java | 86 * @param systemId The system identifier provided in the XML 92 StylesheetHandler handler, String publicId, String systemId) 106 * @param systemId The notation system identifier. 110 String publicId, String systemId) 124 * @param systemId The entity system identifier. 129 String publicId, String systemId,
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/ |
SAX1ParserAdapter.java | 50 public void parse(String systemId) 54 xmlReader.parse(systemId);
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodereplacechild40.js | 92 var systemId = null; 109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
|
/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);
|