HomeSort by relevance Sort by last modified time
    Searched full:systemid (Results 76 - 100 of 276) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId,
243 doctypeName, publicId, systemId)
310 base, systemId, publicId, notationName):
317 systemId, notationName)
327 def notation_decl_handler(self, notationName, base, systemId, publicId):
328 node = self.document._create_notation(notationName, publicId, systemId)
347 def external_entity_ref_handler(self, context, base, systemId, publicId):
639 % (doctype.publicId, doctype.systemId))
640 elif doctype.systemId:
641 ident = 'SYSTEM "%s"' % doctype.systemId
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId,
243 doctypeName, publicId, systemId)
310 base, systemId, publicId, notationName):
317 systemId, notationName)
327 def notation_decl_handler(self, notationName, base, systemId, publicId):
328 node = self.document._create_notation(notationName, publicId, systemId)
347 def external_entity_ref_handler(self, context, base, systemId, publicId):
639 % (doctype.publicId, doctype.systemId))
640 elif doctype.systemId:
641 ident = 'SYSTEM "%s"' % doctype.systemId
    [all...]
  /external/chromium_org/third_party/libxml/src/
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/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,
  /libcore/luni/src/main/java/org/xml/sax/
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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 258 def notationDecl(self, name, publicId, systemId):
259 self._dtd_handler.notationDecl(name, publicId, systemId)
261 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
262 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata)
266 def resolveEntity(self, publicId, systemId):
267 return self._ent_handler.resolveEntity(publicId, systemId)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 258 def notationDecl(self, name, publicId, systemId):
259 self._dtd_handler.notationDecl(name, publicId, systemId)
261 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
262 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata)
266 def resolveEntity(self, publicId, systemId):
267 return self._ent_handler.resolveEntity(publicId, systemId)
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 50 public void parse(String systemId)
54 xmlReader.parse(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);

Completed in 2666 milliseconds

1 2 34 5 6 7 8 91011>>