Home
last modified time | relevance | path

Searched refs:systemId (Results 1 – 25 of 94) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xml/utils/
DSystemIDResolver.java107 public static boolean isAbsoluteURI(String systemId) in isAbsoluteURI() argument
120 if(isWindowsAbsolutePath(systemId)){ in isAbsoluteURI()
124 final int fragmentIndex = systemId.indexOf('#'); in isAbsoluteURI()
125 final int queryIndex = systemId.indexOf('?'); in isAbsoluteURI()
126 final int slashIndex = systemId.indexOf('/'); in isAbsoluteURI()
127 final int colonIndex = systemId.indexOf(':'); in isAbsoluteURI()
130 int index = systemId.length() -1; in isAbsoluteURI()
148 public static boolean isAbsolutePath(String systemId) in isAbsolutePath() argument
150 if(systemId == null) in isAbsolutePath()
152 final File file = new File(systemId); in isAbsolutePath()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DSystemIDResolver.java114 public static boolean isAbsoluteURI(String systemId) in isAbsoluteURI() argument
127 if(isWindowsAbsolutePath(systemId)){ in isAbsoluteURI()
131 final int fragmentIndex = systemId.indexOf('#'); in isAbsoluteURI()
132 final int queryIndex = systemId.indexOf('?'); in isAbsoluteURI()
133 final int slashIndex = systemId.indexOf('/'); in isAbsoluteURI()
134 final int colonIndex = systemId.indexOf(':'); in isAbsoluteURI()
137 int index = systemId.length() -1; in isAbsoluteURI()
155 public static boolean isAbsolutePath(String systemId) in isAbsolutePath() argument
157 if(systemId == null) in isAbsolutePath()
159 final File file = new File(systemId); in isAbsolutePath()
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
DProtectionSystemSpecificHeaderBox.java41 byte[] systemId; field in ProtectionSystemSpecificHeaderBox
45 return systemId; in getSystemId()
48 public void setSystemId(byte[] systemId) { in setSystemId() argument
49 assert systemId.length == 16; in setSystemId()
50 this.systemId = systemId; in setSystemId()
73 assert systemId.length == 16; in getContent()
74 byteBuffer.put(systemId, 0, 16); in getContent()
82 systemId = new byte[16]; in _parseDetails()
83 content.get(systemId); in _parseDetails()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
DUuidBasedProtectionSystemSpecificHeaderBox.java31 UUID systemId; field in UuidBasedProtectionSystemSpecificHeaderBox
52 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getMostSignificantBits()); in getContent()
53 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getLeastSignificantBits()); in getContent()
65 systemId = UUIDConverter.convert(systemIdBytes); in _parseDetails()
67 protectionSpecificHeader = ProtectionSpecificHeader.createFor(systemId, content); in _parseDetails()
71 return systemId; in getSystemId()
74 public void setSystemId(UUID systemId) { in setSystemId() argument
75 this.systemId = systemId; in setSystemId()
79 return systemId.toString(); in getSystemIdString()
98 sb.append("{systemId=").append(systemId.toString()); in toString()
/external/expat/xmlwf/
Dxmlfile.c117 resolveSystemId(const XML_Char *base, const XML_Char *systemId, in resolveSystemId() argument
121 if (! base || *systemId == T('/') in resolveSystemId()
123 || *systemId == T('\\') in resolveSystemId()
124 || (isAsciiLetter(systemId[0]) && systemId[1] == T(':')) in resolveSystemId()
127 return systemId; in resolveSystemId()
128 *toFree = (XML_Char *)malloc((tcslen(base) + tcslen(systemId) + 2) in resolveSystemId()
131 return systemId; in resolveSystemId()
140 tcscpy(s, systemId); in resolveSystemId()
146 const XML_Char *base, const XML_Char *systemId, in externalEntityRefFilemap() argument
157 filename = resolveSystemId(base, systemId, &s); in externalEntityRefFilemap()
[all …]
Dxmlwf.c57 const XML_Char *systemId; member
317 free((void *)notationListHead->systemId); in freeNotations()
393 if (notations[i]->systemId != NULL) { in endDoctypeDecl()
396 fputts(notations[i]->systemId, data->fp); in endDoctypeDecl()
399 } else if (notations[i]->systemId != NULL) { in endDoctypeDecl()
401 fputts(notations[i]->systemId, data->fp); in endDoctypeDecl()
419 const XML_Char *systemId, const XML_Char *publicId) { in notationDecl() argument
435 if (systemId != NULL) { in notationDecl()
436 entry->systemId = xcsdup(systemId); in notationDecl()
437 if (entry->systemId == NULL) { in notationDecl()
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
DLocalEntityResolver.java32 public InputSource resolveEntity(final String publicId, String systemId) in resolveEntity() argument
34 final int sep = systemId.lastIndexOf('/'); in resolveEntity()
36 systemId = systemId.substring(sep + 1); in resolveEntity()
38 final InputStream in = resourceDelegate.getResourceAsStream(systemId); in resolveEntity()
40 throw new IOException("No local copy for " + systemId); in resolveEntity()
/external/python/cpython2/Lib/xml/dom/
Dxmlbuilder.py192 if fp is None and options.systemId:
194 fp = urllib2.urlopen(input.systemId)
215 def resolveEntity(self, publicId, systemId): argument
216 assert systemId is not None
219 source.systemId = systemId
220 source.byteStream = self._get_opener().open(systemId)
227 parts = urlparse.urlparse(systemId)
266 self.systemId = None
295 return self.systemId
296 def _set_systemId(self, systemId): argument
[all …]
Dexpatbuilder.py240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId, argument
243 doctypeName, publicId, systemId)
310 base, systemId, publicId, notationName): argument
317 systemId, notationName)
327 def notation_decl_handler(self, notationName, base, systemId, publicId): argument
328 node = self.document._create_notation(notationName, publicId, systemId)
347 def external_entity_ref_handler(self, context, base, systemId, publicId): argument
639 % (doctype.publicId, doctype.systemId))
640 elif doctype.systemId:
641 ident = 'SYSTEM "%s"' % doctype.systemId
[all …]
/external/python/cpython3/Lib/xml/dom/
Dxmlbuilder.py193 if fp is None and options.systemId:
195 fp = urllib.request.urlopen(input.systemId)
216 def resolveEntity(self, publicId, systemId): argument
217 assert systemId is not None
220 source.systemId = systemId
221 source.byteStream = self._get_opener().open(systemId)
228 parts = urllib.parse.urlparse(systemId)
267 self.systemId = None
296 return self.systemId
297 def _set_systemId(self, systemId): argument
[all …]
Dexpatbuilder.py240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId, argument
243 doctypeName, publicId, systemId)
306 base, systemId, publicId, notationName): argument
313 systemId, notationName)
323 def notation_decl_handler(self, notationName, base, systemId, publicId): argument
324 node = self.document._create_notation(notationName, publicId, systemId)
343 def external_entity_ref_handler(self, context, base, systemId, publicId): argument
632 % (doctype.publicId, doctype.systemId))
633 elif doctype.systemId:
634 ident = 'SYSTEM "%s"' % doctype.systemId
[all …]
/external/python/cpython2/Lib/xml/sax/
Dhandler.py214 def notationDecl(self, name, publicId, systemId): argument
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument
230 def resolveEntity(self, publicId, systemId): argument
234 return systemId
Dsaxutils.py265 def notationDecl(self, name, publicId, systemId): argument
266 self._dtd_handler.notationDecl(name, publicId, systemId)
268 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument
269 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata)
273 def resolveEntity(self, publicId, systemId): argument
274 return self._ent_handler.resolveEntity(publicId, systemId)
/external/python/cpython3/Lib/xml/sax/
Dhandler.py214 def notationDecl(self, name, publicId, systemId): argument
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument
230 def resolveEntity(self, publicId, systemId): argument
234 return systemId
Dsaxutils.py293 def notationDecl(self, name, publicId, systemId): argument
294 self._dtd_handler.notationDecl(name, publicId, systemId)
296 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument
297 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata)
301 def resolveEntity(self, publicId, systemId): argument
302 return self._ent_handler.resolveEntity(publicId, systemId)
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerHandlerImpl.java248 public InputSource resolveEntity(String publicId, String systemId) in resolveEntity() argument
254 return m_entityResolver.resolveEntity(publicId, systemId); in resolveEntity()
276 public void notationDecl(String name, String publicId, String systemId) in notationDecl() argument
282 m_dtdHandler.notationDecl(name, publicId, systemId); in notationDecl()
298 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName); in unparsedEntityDecl()
768 public void startDTD(String name, String publicId, String systemId) in startDTD() argument
774 + publicId + ", " + systemId); in startDTD()
778 m_lexicalHandler.startDTD(name, publicId, systemId); in startDTD()
1025 String name, String publicId, String systemId) throws SAXException in externalEntityDecl() argument
[all …]
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/
DPsshAtomUtil.java40 public static byte[] buildPsshAtom(UUID systemId, @Nullable byte[] data) { in buildPsshAtom() argument
41 return buildPsshAtom(systemId, null, data); in buildPsshAtom()
53 UUID systemId, @Nullable UUID[] keyIds, @Nullable byte[] data) { in buildPsshAtom() argument
63 psshBox.putLong(systemId.getMostSignificantBits()); in buildPsshAtom()
64 psshBox.putLong(systemId.getLeastSignificantBits()); in buildPsshAtom()
/external/libxml2/
DtestSAX.c364 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) in resolveEntityDebug() argument
377 if (systemId != NULL) in resolveEntityDebug()
378 fprintf(stdout, ", %s)\n", (char *)systemId); in resolveEntityDebug()
441 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) in entityDeclDebug() argument
447 if (systemId == NULL) in entityDeclDebug()
448 systemId = nullstr; in entityDeclDebug()
455 name, type, publicId, systemId, content); in entityDeclDebug()
514 const xmlChar *publicId, const xmlChar *systemId) in notationDeclDebug() argument
520 (char *) name, (char *) publicId, (char *) systemId); in notationDeclDebug()
535 const xmlChar *publicId, const xmlChar *systemId, in unparsedEntityDeclDebug() argument
[all …]
DtestHTML.c178 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) in resolveEntityDebug() argument
188 if (systemId != NULL) in resolveEntityDebug()
189 fprintf(stdout, ", %s)\n", (char *)systemId); in resolveEntityDebug()
246 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) in entityDeclDebug() argument
249 name, type, publicId, systemId, content); in entityDeclDebug()
297 const xmlChar *publicId, const xmlChar *systemId) in notationDeclDebug() argument
300 (char *) name, (char *) publicId, (char *) systemId); in notationDeclDebug()
315 const xmlChar *publicId, const xmlChar *systemId, in unparsedEntityDeclDebug() argument
319 (char *) name, (char *) publicId, (char *) systemId, in unparsedEntityDeclDebug()
/external/cldr/tools/java/org/unicode/cldr/util/
DXMLFileReader.java73 public void handleStartDtd(String name, String publicId, String systemId) { in handleStartDtd() argument
216 public void startDTD(String name, String publicId, String systemId) throws SAXException { in startDTD() argument
249 …public void externalEntityDecl(String name, String publicId, String systemId) throws SAXException { in externalEntityDecl() argument
250 if (SHOW_ALL) Log.logln("Internal Entity\t" + name + "\t" + publicId + "\t" + systemId); in externalEntityDecl()
253 public void notationDecl(String name, String publicId, String systemId) { in notationDecl() argument
256 + ", " + systemId); in notationDecl()
270 String systemId, String notationName) { in unparsedEntityDecl() argument
273 + ", " + systemId in unparsedEntityDecl()
379 public void startDTD(String name, String publicId, String systemId) throws SAXException { in startDTD() argument
382 + ", systemId: " + systemId); in startDTD()
[all …]
/external/libxml2/include/libxml/
DSAX.h65 const xmlChar *systemId);
72 const xmlChar *systemId,
91 const xmlChar *systemId);
96 const xmlChar *systemId,
DSAX2.h63 const xmlChar *systemId);
70 const xmlChar *systemId,
89 const xmlChar *systemId);
94 const xmlChar *systemId,
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorInclude.java224 String systemId = handler.peekImportURL(); in parse() local
228 if (systemId != null) in parse()
229 handler.pushBaseIndentifier(systemId); in parse()
231 … TreeWalker walker = new TreeWalker(handler, new org.apache.xml.utils.DOM2Helper(), systemId); in parse()
241 if (systemId != null) in parse()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DNodeLocator.java48 public NodeLocator(String publicId, String systemId, in NodeLocator() argument
52 this.m_systemId = systemId; in NodeLocator()
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DDOMOutputImpl.java143 public void setSystemId(String systemId){ in setSystemId() argument
144 fSystemId = systemId; in setSystemId()

1234