/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
D | SystemIDResolver.java | 114 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/ |
D | SystemIDResolver.java | 107 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/ |
D | ProtectionSystemSpecificHeaderBox.java | 41 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/ |
D | UuidBasedProtectionSystemSpecificHeaderBox.java | 31 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()
|
D | ProtectionSpecificHeader.java | 38 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/ |
D | doctype.js | 94 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/ |
D | TransformerHandlerImpl.java | 248 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 …]
|
D | TransformerIdentityImpl.java | 826 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/ |
D | default.js | 49 exports.setDocumentType = function (document, name, publicId, systemId) { argument 62 doctypeNode.systemId = systemId; 70 systemId: systemId property 182 return doctypeNode.systemId;
|
D | htmlparser2.js | 123 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/ |
D | simple_api_parser_test.js | 23 doctype: function (name, publicId, systemId) { argument 29 else if (systemId !== null) 32 if (systemId !== null) 33 actual += ' "' + systemId + '"';
|
/external/libxml2/ |
D | testSAX.c | 364 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 …]
|
D | testHTML.c | 178 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()
|
D | legacy.c | 920 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()
|
D | SAX2.c | 518 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/ |
D | SAX.h | 65 const xmlChar *systemId); 72 const xmlChar *systemId, 91 const xmlChar *systemId); 96 const xmlChar *systemId,
|
D | SAX2.h | 63 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/ |
D | ProcessorInclude.java | 224 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()
|
D | XSLTElementProcessor.java | 92 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/ |
D | NodeLocator.java | 48 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/ |
D | DOMOutputImpl.java | 143 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/ |
D | test_utils.js | 177 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/ |
D | test2.test | 31 {"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/ |
D | SAX1ParserAdapter.java | 50 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/ |
D | tokenizer.js | 325 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 …]
|