HomeSort by relevance Sort by last modified time
    Searched refs:systemId (Results 26 - 50 of 202) sorted by null

12 3 4 5 6 7 8 9

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
systemId01.java 42 * @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>
68 String systemId;
72 systemId = docType.getSystemId();
73 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, systemId);
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);
createDocumentType04.java 61 String systemId = "myDoc.dtd";
71 docType = domImpl.createDocumentType("", 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);
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);
  /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)
Parser.java 191 * parse(new InputSource(systemId));
197 * @param systemId The system identifier (URI).
205 public abstract void parse (String systemId)
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentTypeSystemId.java 34 * Create a new DocumentType node with the value "SYS" for its systemId and PUB for
35 * its publicId. Check the value of the systemId and pbulicId attributes.
38 * @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>
72 String systemId;
77 systemId = docType.getSystemId();
79 assertEquals("documenttypesystemid01", "SYS", systemId);
SystemId.java 39 * 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>
41 public final class SystemId extends DOMTestCase {
73 String systemId;
77 systemId = docType.getSystemId();
78 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
79 null, null, null, systemId);
CreateDocumentType.java 35 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
40 * createDocumentType(qualifiedName,publicId,systemId) on the retrieved
42 * "prefix::local", publicId as "STAFF", and systemId as "staff". Method should
85 String systemId = "staff.xml";
96 domImpl.createDocumentType(malformedName, publicId, systemId);
105 String systemId = "myDoc.dtd";
148 systemId);
160 String systemId = "myDoc.dtd";
169 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
177 String systemId = "myDoc.dtd"
    [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;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentType.h 35 static PassRefPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId)
37 return adoptRef(new DocumentType(document, name, publicId, systemId));
46 const String& systemId() const { return m_systemId; }
50 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
Entity.h 33 String systemId() const { ASSERT_NOT_REACHED(); return String(); }
DocumentType.idl 31 [TreatReturnedNullStringAs=Null] readonly attribute DOMString systemId;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMOutputImpl.java 49 * 3.LSOutput.systemId
143 public void setSystemId(String systemId){
144 fSystemId = systemId;
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java 40 * @param systemId The external subset system identifier.
55 String systemId)
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSOutput.java 40 * <li> <code>LSOutput.systemId</code>
85 public void setSystemId(String systemId);
  /libcore/luni/src/main/java/org/xml/sax/ext/
DeclHandler.java 135 * @param systemId The entity's system identifier.
141 String systemId)
LexicalHandler.java 76 * @param systemId The declared system identifier for the
86 String systemId)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
234 return systemId
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
234 return systemId
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
entitygetpublicid.java 71 String systemId;
81 systemId = entityNode.getSystemId();
82 assertURIEquals("systemId", null, null, null, "entityFile", null, null, null, null, systemId);
notationgetsystemid.java 68 String systemId;
76 systemId = notationNode.getSystemId();
77 assertURIEquals("uriEquals", null, null, null, "notation2File", null, null, null, null, systemId);
  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXSource.java 141 * @param systemId The system identifier as a URI string.
143 public void setSystemId(String systemId) {
146 inputSource = new InputSource(systemId);
148 inputSource.setSystemId(systemId);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 58 private final String systemId;
80 boolean processNamespaces, String publicId, String systemId) {
82 this.systemId = systemId;
104 String publicId, String systemId) {
108 this.systemId = systemId;
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...]

Completed in 313 milliseconds

12 3 4 5 6 7 8 9