/libcore/luni/src/main/java/org/xml/sax/helpers/ |
LocatorImpl.java | 117 return systemId; 170 * @param systemId The new system identifier, or null 174 public void setSystemId (String systemId) 176 this.systemId = systemId; 211 private String systemId;
|
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...] |
/libcore/luni/src/main/java/org/xml/sax/ |
InputSource.java | 86 * @param systemId The system identifier (URI). 93 public InputSource (String systemId) 95 setSystemId(systemId); 188 * @param systemId The system identifier as a string. 194 public void setSystemId (String systemId) 196 this.systemId = systemId; 214 return systemId; 331 private String systemId;
|
DTDHandler.java | 62 * <p>At least one of publicId and systemId must be non-null. 73 * @param systemId The notation's system identifier, or null if 82 String systemId) 104 * @param systemId The entity's system identifier. 111 String systemId,
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documentimportnode19.java | 87 String systemId; 108 systemId = entity2.getSystemId(); 110 assertEquals("documentimportnode19_Ent2SystemId", systemId, systemIdImp); 111 systemId = entity6.getSystemId(); 113 assertEquals("documentimportnode19_Ent6SystemId", systemId, systemIdImp);
|
importNode08.java | 42 * to this document whose systemId is "staff.dtd" 46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
|
createDocumentType02.java | 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a 38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on 70 String systemId = "myDoc.dtd"; 113 docType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
notationgetsystemid.java | 68 String systemId; 76 systemId = notationNode.getSystemId(); 77 assertURIEquals("uriEquals", null, null, null, "notation2File", null, null, null, null, systemId);
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
DefaultHandlerTest.java | 41 h.resolveEntity("publicID", "systemID"); 51 h.notationDecl("name", "publicID", "systemID"); 59 h.unparsedEntityDecl("name", "publicID", "systemID",
|
/libcore/xml/src/main/java/org/xmlpull/v1/sax2/ |
Driver.java | 71 protected String systemId; 163 public String getSystemId() { return systemId; } 273 systemId = source.getSystemId(); 283 systemId = source.getSystemId(); 284 if(systemId == null) { 286 "null source systemId" , this); 292 final URL url = new URL(systemId); 296 stream = new FileInputStream(systemId); 299 "could not open file with systemId "+systemId, this, fnfe) [all...] |
/external/expat/xmlwf/ |
xmlwin32url.cxx | 36 const XML_Char *systemId, const XML_Char *publicId); 214 const XML_Char *systemId, 218 XML_SetBase(entParser, systemId); 219 int ret = processURL(entParser, baseMoniker_, systemId); 250 const XML_Char *systemId, 253 return ((Callback *)arg)->externalEntityRef(context, systemId, publicId);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMException.java | 225 String systemID = locator.getSystemId(); 229 if (null != systemID) { 230 sbuffer.append("; SystemID: "); 231 sbuffer.append(systemID); 258 String systemID = locator.getSystemId(); 262 if (null != systemID) { 263 sbuffer.append("; SystemID: "); 264 sbuffer.append(systemID);
|
/external/webkit/LayoutTests/dom/html/level2/core/ |
createDocumentType04.js | 83 var systemId = "myDoc.dtd"; 93 docType = domImpl.createDocumentType("",publicId,systemId);
|
/external/webkit/LayoutTests/dom/xhtml/level2/core/ |
createDocumentType04.js | 83 var systemId = "myDoc.dtd"; 93 docType = domImpl.createDocumentType("",publicId,systemId);
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
documentgetxmlstandalone05.js | 78 Cretae a new DocumentType node whose systemId is StaffNS.DTD. Create a new Document 114 sysId = docType.systemId;
|
/external/webkit/Source/WebCore/bindings/objc/ |
DOMImplementationFront.cpp | 57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode& ec) 59 return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, systemId, ec);
|
/external/webkit/Source/WebCore/dom/ |
DocumentType.cpp | 31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId) 35 , m_systemId(systemId)
|
DOMImplementation.idl | 36 in [ConvertUndefinedOrNullToNullString] DOMString systemId)
|
DocumentType.idl | 35 readonly attribute [ConvertNullStringTo=Null] DOMString systemId;
|
Entity.h | 34 String systemId() const { ASSERT_NOT_REACHED(); return String(); }
|
Entity.idl | 24 readonly attribute [ConvertNullStringTo=Null] DOMString 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);
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
MockFilter.java | 85 public void parse(String systemId) throws SAXException, IOException { 86 logger.add("parse", systemId);
|
MockReader.java | 91 public void parse(String systemId) throws IOException, SAXException { 92 logger.add("parse", 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...] |