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

1 2 34 5 6 7 8 9

  /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) {
NoInstanceXMLReader.java 61 public void parse(String systemId) {
NoSubclassXMLReader.java 58 public void parse(String systemId) {
MockFilter.java 85 public void parse(String systemId) throws SAXException, IOException {
86 logger.add("parse", systemId);
MockReader.java 91 public void parse(String systemId) throws IOException, SAXException {
92 logger.add("parse", systemId);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
ProtectionSpecificHeader.java 38 public static ProtectionSpecificHeader createFor(UUID systemId, ByteBuffer bufferWrapper) {
39 final Class<? extends ProtectionSpecificHeader> aClass = uuidRegistry.get(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/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java 117 * @param systemId Provide a base for resolving relative URIs.
124 public Document parse(InputStream is, String systemId)
131 in.setSystemId(systemId);
SAXParser.java 142 * @param systemId The systemId which is needed for resolving relative URIs.
155 String systemId)
162 input.setSystemId(systemId);
197 * @param systemId The systemId which is needed for resolving relative URIs.
208 String systemId)
215 input.setSystemId(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...]
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 71 protected String systemId;
163 public String getSystemId() { return systemId; }
273 systemId = source.getSystemId();
283 systemId = source.getSystemId();
284 if(systemId == null) {
286 "null source systemId" , this);
292 final URL url = new URL(systemId);
296 stream = new FileInputStream(systemId);
299 "could not open file with systemId "+systemId, this, fnfe)
    [all...]
  /external/chromium_org/third_party/libxml/src/
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/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
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.idl 34 [TreatNullAs=NullString, TreatUndefinedAs=NullString,Default=Undefined] optional DOMString systemId);
DOMImplementation.h 52 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionState&);
  /frameworks/base/telephony/java/android/telephony/cdma/
CdmaCellLocation.java 72 this.mSystemId = bundle.getInt("systemId", mSystemId);
149 int baseStationLongitude, int systemId, int networkId) {
154 this.mSystemId = systemId;
215 bundleToFill.putInt("systemId", this.mSystemId);
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 100 String systemId = source.getSystemId();
103 document.setDocumentURI(systemId);
114 } else if (systemId != null) {
115 URL url = new URL(systemId);
142 locator.setSystemId(systemId);
206 String systemId = parser.getSystemId();
207 document.appendChild(new DocumentTypeImpl(document, name, publicId, systemId));
  /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...]
  /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/apache-xml/src/main/java/org/apache/xalan/transformer/
TrAXFilter.java 178 * @param systemId The system identifier as a fully-qualified URI.
186 public void parse (String systemId)
189 parse(new InputSource(systemId));

Completed in 942 milliseconds

1 2 34 5 6 7 8 9