HomeSort by relevance Sort by last modified time
    Searched full:publicid (Results 26 - 50 of 299) sorted by null

12 3 4 5 6 7 8 91011>>

  /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".
71 String publicId = "STAFF";
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
69 String publicId = "http://www.localhost.com";
79 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype01.java 34 * The method createDocumentType with valid values for qualifiedName, publicId and
71 String publicId;
84 publicId = (String) publicIds.get(indexN1005D);
87 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype02.java 47 * The method createDocumentType with valid values for qualifiedName, publicId and
51 * and a valid publicId and systemId. Check if the the DocumentType node was created
83 String publicId = "http://www.w3.org/DOM/Test/dom2.dtd";
106 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
  /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)
134 * @param publicId The public identifier of the external entity being
154 public InputSource resolveEntity (String name, String publicId,
167 * @param publicId The public identifier of the external entity being
182 public InputSource resolveEntity (String publicId, String systemId)
184 { return resolveEntity (null, publicId, null, systemId); }
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
NodeLocator.java 43 * @param publicId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId,
51 this.m_publicId = publicId;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
HandlerBaseTest.java 40 h.resolveEntity("publicID", "systemID");
47 h.notationDecl("name", "publicID", "systemID");
51 h.unparsedEntityDecl("name", "publicID", "systemID", "notationName");
  /external/libxml2/include/libxml/
SAX.h 64 const xmlChar *publicId,
71 const xmlChar *publicId,
90 const xmlChar *publicId,
95 const xmlChar *publicId,
SAX2.h 62 const xmlChar *publicId,
69 const xmlChar *publicId,
88 const xmlChar *publicId,
93 const xmlChar *publicId,
  /external/libxml2/test/catalogs/
stylesheet.xml 10 <public publicId="toto" uri="file:///usr/share/xml/toto/toto.dtd"/>
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
entitygetpublicid.java 70 String publicId;
79 publicId = entityNode.getPublicId();
80 assertEquals("publicId", "entityURI", publicId);
notationgetpublicidnull.java 69 String publicId;
76 publicId = notationNode.getPublicId();
77 assertNull("publicId", publicId);
entitygetpublicidnull.java 69 String publicId;
76 publicId = entityNode.getPublicId();
77 assertNull("entityGetPublicIdNullAssert", publicId);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
DefaultHandler2Test.java 52 h.startDTD("name", "publicId", "systemId");
108 h.externalEntityDecl("name", "publicId", "systemId");
134 assertNull(h.resolveEntity("publicId", "systemId"));
144 assertNull(h.resolveEntity("name", "publicId", "http://some.uri",
  /libcore/luni/src/main/java/org/xml/sax/helpers/
LocatorImpl.java 103 return publicId;
157 * @param publicId The new public identifier, or null
161 public void setPublicId (String publicId)
163 this.publicId = publicId;
210 private String publicId;
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 57 private final String publicId;
80 boolean processNamespaces, String publicId, String systemId) {
81 this.publicId = publicId;
104 String publicId, String systemId) {
109 this.publicId = publicId;
203 /*package*/ void startDtd(String name, String publicId, String systemId)
207 lexicalHandler.startDTD(name, publicId, systemId);
226 /*package*/ void notationDecl(String name, String publicId, String systemId) throws SAXException
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
dom.py 119 publicId = token["publicId"]
123 doctype = domimpl.createDocumentType(name, publicId, systemId)
176 if element.publicId or element.systemId:
177 publicId = element.publicId or ""
180 (' ' * indent, element.name, publicId, systemId))
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_adapters/
htmlparser2.js 123 exports.setDocumentType = function (document, name, publicId, systemId) {
124 var data = Doctype.serializeContent(name, publicId, systemId),
137 doctypeNode['x-publicId'] = publicId;
147 'x-publicId': publicId,
294 return doctypeNode['x-publicId'];
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
xmlbuilder.py 215 def resolveEntity(self, publicId, systemId):
218 source.publicId = publicId
258 'encoding', 'publicId', 'systemId', 'baseURI')
265 self.publicId = None
290 return self.publicId
291 def _set_publicId(self, publicId):
292 self.publicId = publicId
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
xmlbuilder.py 215 def resolveEntity(self, publicId, systemId):
218 source.publicId = publicId
258 'encoding', 'publicId', 'systemId', 'baseURI')
265 self.publicId = None
290 return self.publicId
291 def _set_publicId(self, publicId):
292 self.publicId = publicId
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 215 def resolveEntity(self, publicId, systemId):
218 source.publicId = publicId
258 'encoding', 'publicId', 'systemId', 'baseURI')
265 self.publicId = None
290 return self.publicId
291 def _set_publicId(self, publicId):
292 self.publicId = publicId
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 215 def resolveEntity(self, publicId, systemId):
218 source.publicId = publicId
258 'encoding', 'publicId', 'systemId', 'baseURI')
265 self.publicId = None
290 return self.publicId
291 def _set_publicId(self, publicId):
292 self.publicId = publicId
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
_base.py 108 def doctype(self, name, publicId=None, systemId=None, correct=True):
110 assert is_text_or_none(publicId), type(publicId)
115 "publicId": to_text(publicId),
  /libcore/luni/src/main/java/org/xml/sax/
DTDHandler.java 62 * <p>At least one of publicId and systemId must be non-null.
71 * @param publicId The notation's public identifier, or null if
81 String publicId,
102 * @param publicId The entity's public identifier, or null if none
110 String publicId,
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
simple_api_parser_test.js 23 doctype: function (name, publicId, systemId) {
26 if (publicId !== null)
27 actual += ' PUBLIC "' + publicId + '"';

Completed in 789 milliseconds

12 3 4 5 6 7 8 91011>>