/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
notationgetsystemidnull.java | 65 String systemId; 72 systemId = notationNode.getSystemId(); 73 assertNull("systemId", systemId);
|
entitygetpublicid.java | 71 String systemId; 81 systemId = entityNode.getSystemId(); 82 assertURIEquals("systemId", null, null, null, "entityFile", null, null, null, null, systemId);
|
/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); }
|
/libcore/luni/src/test/java/tests/api/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"));
|
/external/chromium_org/third_party/libxml/src/ |
entities.c | 114 if ((entity->SystemID != NULL) && 115 (!xmlDictOwns(dict, entity->SystemID))) 116 xmlFree((char *) entity->SystemID); 129 if (entity->SystemID != NULL) 130 xmlFree((char *) entity->SystemID); 148 const xmlChar *ExternalID, const xmlChar *SystemID, 169 if (SystemID != NULL) 170 ret->SystemID = xmlStrdup(SystemID); 175 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/libxml2/ |
entities.c | 114 if ((entity->SystemID != NULL) && 115 (!xmlDictOwns(dict, entity->SystemID))) 116 xmlFree((char *) entity->SystemID); 129 if (entity->SystemID != NULL) 130 xmlFree((char *) entity->SystemID); 148 const xmlChar *ExternalID, const xmlChar *SystemID, 169 if (SystemID != NULL) 170 ret->SystemID = xmlStrdup(SystemID); 175 if (SystemID != NULL [all...] |
/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);
|
/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/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}.
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/ |
HandlerBaseTest.java | 40 h.resolveEntity("publicID", "systemID"); 47 h.notationDecl("name", "publicID", "systemID"); 51 h.unparsedEntityDecl("name", "publicID", "systemID", "notationName");
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
entities.h | 54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */ 86 const xmlChar *SystemID, 93 const xmlChar *SystemID, 100 const xmlChar *SystemID,
|
/external/libxml2/include/libxml/ |
entities.h | 54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */ 86 const xmlChar *SystemID, 93 const xmlChar *SystemID, 100 const xmlChar *SystemID,
|
/libcore/luni/src/test/java/libcore/xml/ |
ExpatSaxParserTest.java | 374 assertEquals("tee", handler.systemId); 412 String systemId; 426 public void startDTD(String name, String publicId, String systemId) { 429 this.systemId = systemId; 443 public void notationDecl(String name, String publicId, String systemId) { 446 this.ndSystemId = systemId; 450 public void unparsedEntityDecl(String entityName, String publicId, String systemId, String notationName) { 453 this.ueSystemId = systemId; 528 public InputSource resolveEntity(String publicId, String systemId) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentType.cpp | 31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId) 35 , m_systemId(systemId)
|