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

1 2 34 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
dom.py 11 return _base.DOCTYPE, node.name, node.publicId, node.systemId
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tokenization/
test2.test 31 {"description":"DOCTYPE with systemId",
35 {"description":"DOCTYPE with publicId and systemId",
47 {"description":"DOCTYPE with > in double-quoted systemId",
51 {"description":"DOCTYPE with > in single-quoted systemId",
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
DoNothingParser.java 37 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/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/libcore/xml/
ExpatSaxParserTest.java 375 assertEquals("tee", handler.systemId);
413 String systemId;
427 public void startDTD(String name, String publicId, String systemId) {
430 this.systemId = systemId;
444 public void notationDecl(String name, String publicId, String systemId) {
447 this.ndSystemId = systemId;
451 public void unparsedEntityDecl(String entityName, String publicId, String systemId, String notationName) {
454 this.ueSystemId = systemId;
529 public InputSource resolveEntity(String publicId, String systemId)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/gdb/darwin-x86/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/gdb/linux-x86/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/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-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
etree_lxml.py 34 def __init__(self, name, publicId, systemId):
37 self.systemId = systemId
292 systemId = token["systemId"]
302 doctype = self.doctypeClass(coercedName, publicId, systemId)
325 self.doctype.systemId is not None):
328 if self.doctype.systemId:
329 sysid = self.doctype.systemId
  /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
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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);

Completed in 2899 milliseconds

1 2 34 5 6 7 8 91011>>