Home
last modified time | relevance | path

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

1234

/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/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/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()
DProtectionSpecificHeader.java38 public static ProtectionSpecificHeader createFor(UUID systemId, ByteBuffer bufferWrapper) { in createFor() argument
39 final Class<? extends ProtectionSpecificHeader> aClass = uuidRegistry.get(systemId); in createFor()
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/common/
Ddoctype.js94 exports.isQuirks = function (name, publicId, systemId) { argument
98 if (systemId && systemId.toLowerCase() === QUIRKS_MODE_SYSTEM_ID)
109 if (systemId === null)
121 exports.serializeContent = function (name, publicId, systemId) { argument
127 else if (systemId !== null)
130 if (systemId !== null)
131 str += ' ' + enquoteDoctypeId(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 …]
DTransformerIdentityImpl.java826 public void notationDecl(String name, String publicId, String systemId) in notationDecl() argument
830 m_resultDTDHandler.notationDecl(name, publicId, systemId); in notationDecl()
852 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument
857 m_resultDTDHandler.unparsedEntityDecl(name, publicId, systemId, in unparsedEntityDecl()
1219 public void startDTD(String name, String publicId, String systemId) in startDTD() argument
1224 m_resultLexicalHandler.startDTD(name, publicId, systemId); in startDTD()
1418 String systemId) in externalEntityDecl() argument
1422 m_resultDeclHandler.externalEntityDecl(name, publicId, systemId); in externalEntityDecl()
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_adapters/
Ddefault.js49 exports.setDocumentType = function (document, name, publicId, systemId) { argument
62 doctypeNode.systemId = systemId;
70 systemId: systemId property
182 return doctypeNode.systemId;
Dhtmlparser2.js123 exports.setDocumentType = function (document, name, publicId, systemId) { argument
124 var data = Doctype.serializeContent(name, publicId, systemId),
138 doctypeNode['x-systemId'] = systemId;
148 'x-systemId': systemId
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/
Dsimple_api_parser_test.js23 doctype: function (name, publicId, systemId) { argument
29 else if (systemId !== null)
32 if (systemId !== null)
33 actual += ' "' + systemId + '"';
/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()
Dlegacy.c920 const xmlChar * systemId) in resolveEntity() argument
923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId)); in resolveEntity()
975 const xmlChar * publicId, const xmlChar * systemId, in entityDecl() argument
979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content); in entityDecl()
1035 const xmlChar * publicId, const xmlChar * systemId) in notationDecl() argument
1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId); in notationDecl()
1054 const xmlChar * publicId, const xmlChar * systemId, in unparsedEntityDecl() argument
1058 xmlSAX2UnparsedEntityDecl(ctx, name, publicId, systemId, in unparsedEntityDecl()
DSAX2.c518 xmlSAX2ResolveEntity(void *ctx, const xmlChar *publicId, const xmlChar *systemId) in xmlSAX2ResolveEntity() argument
531 URI = xmlBuildURI(systemId, (const xmlChar *) base); in xmlSAX2ResolveEntity()
535 "SAX.xmlSAX2ResolveEntity(%s, %s)\n", publicId, systemId); in xmlSAX2ResolveEntity()
664 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) in xmlSAX2EntityDecl() argument
673 name, type, publicId, systemId, content); in xmlSAX2EntityDecl()
677 systemId, content); in xmlSAX2EntityDecl()
682 if ((ent != NULL) && (ent->URI == NULL) && (systemId != NULL)) { in xmlSAX2EntityDecl()
691 URI = xmlBuildURI(systemId, (const xmlChar *) base); in xmlSAX2EntityDecl()
696 systemId, content); in xmlSAX2EntityDecl()
701 if ((ent != NULL) && (ent->URI == NULL) && (systemId != NULL)) { in xmlSAX2EntityDecl()
[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()
DXSLTElementProcessor.java92 StylesheetHandler handler, String publicId, String systemId) in resolveEntity() argument
110 String publicId, String systemId) in notationDecl() argument
129 String publicId, String systemId, in unparsedEntityDecl() argument
/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()
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/
Dtest_utils.js177 systemId = treeAdapter.getDocumentTypeNodeSystemId(node);
183 if (publicId !== null || systemId !== null) {
185 parts.push('"' + (systemId || '') + '"');
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tokenization/
Dtest2.test31 {"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",
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
DSAX1ParserAdapter.java50 public void parse(String systemId) in parse() argument
54 xmlReader.parse(systemId); in parse()
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tokenization/
Dtokenizer.js325 systemId: null property
2082 this.currentToken.systemId = '';
2087 this.currentToken.systemId = '';
2116 this.currentToken.systemId = '';
2122 this.currentToken.systemId = '';
2146 this.currentToken.systemId = '';
2151 this.currentToken.systemId = '';
2181 this.currentToken.systemId = '';
2186 this.currentToken.systemId = '';
2222 this.currentToken.systemId += UNICODE.REPLACEMENT_CHARACTER;
[all …]

1234