Searched defs:systemId (Results 1 - 25 of 66) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentType.cpp31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId) argument
35 , m_systemId(systemId)
H A DDocumentType.h34 static PassRefPtrWillBeRawPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId) argument
36 return adoptRefWillBeNoop(new DocumentType(document, name, publicId, systemId));
41 const String& systemId() const { return m_systemId; } function in class:blink::FINAL
44 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
H A DDOMImplementation.cpp193 const String& publicId, const String& systemId, ExceptionState& exceptionState)
199 return DocumentType::create(m_document, qualifiedName, publicId, systemId);
192 createDocumentType(const AtomicString& qualifiedName, const String& publicId, const String& systemId, ExceptionState& exceptionState) argument
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTrAXFilter.java178 * @param systemId The system identifier as a fully-qualified URI.
186 public void parse (String systemId) argument
189 parse(new InputSource(systemId));
H A DTransformerHandlerImpl.java237 * @param systemId The entity's system identifier.
248 public InputSource resolveEntity(String publicId, String systemId) argument
254 return m_entityResolver.resolveEntity(publicId, systemId);
271 * @param systemId The notation's system identifier, or null.
276 public void notationDecl(String name, String publicId, String systemId) argument
282 m_dtdHandler.notationDecl(name, publicId, systemId);
291 * @param systemId The entity's system identifier, or null.
298 String name, String publicId, String systemId, String notationName)
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
761 * @param systemId Th
297 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
768 startDTD(String name, String publicId, String systemId) argument
1024 externalEntityDecl( String name, String publicId, String systemId) argument
[all...]
H A DTransformerIdentityImpl.java819 * @param systemId The notation system identifier.
826 public void notationDecl(String name, String publicId, String systemId) argument
830 m_resultDTDHandler.notationDecl(name, publicId, systemId);
843 * @param systemId The entity system identifier.
852 String name, String publicId, String systemId, String notationName)
857 m_resultDTDHandler.unparsedEntityDecl(name, publicId, systemId,
1212 * @param systemId The declared system identifier for the
1219 public void startDTD(String name, String publicId, String systemId) argument
1224 m_resultLexicalHandler.startDTD(name, publicId, systemId);
1412 * @param systemId Th
851 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
1417 externalEntityDecl(String name, String publicId, String systemId) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DNodeLocator.java44 * @param systemId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId, argument
52 this.m_systemId = systemId;
H A DIncrementalSAXSource_Filter.java388 java.lang.String systemId)
392 clientLexicalHandler. startDTD(name, publicId, systemId);
387 startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId) argument
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DSystemIDResolver.java109 * Return true if the systemId denotes an absolute URI .
111 * @param systemId The systemId string
112 * @return true if the systemId is an an absolute URI
114 public static boolean isAbsoluteURI(String systemId) argument
122 * %REVIEW% Can we assume here that systemId is a valid URI?
127 if(isWindowsAbsolutePath(systemId)){
131 final int fragmentIndex = systemId.indexOf('#');
132 final int queryIndex = systemId.indexOf('?');
133 final int slashIndex = systemId
155 isAbsolutePath(String systemId) argument
170 isWindowsAbsolutePath(String systemId) argument
223 getAbsoluteURI(String systemId) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSystemIDResolver.java102 * Return true if the systemId denotes an absolute URI .
104 * @param systemId The systemId string
105 * @return true if the systemId is an an absolute URI
107 public static boolean isAbsoluteURI(String systemId) argument
115 * %REVIEW% Can we assume here that systemId is a valid URI?
120 if(isWindowsAbsolutePath(systemId)){
124 final int fragmentIndex = systemId.indexOf('#');
125 final int queryIndex = systemId.indexOf('?');
126 final int slashIndex = systemId
148 isAbsolutePath(String systemId) argument
163 isWindowsAbsolutePath(String systemId) argument
216 getAbsoluteURI(String systemId) argument
[all...]
H A DTreeWalker.java82 * @param systemId System identifier for the document.
85 public TreeWalker(ContentHandler contentHandler, DOMHelper dh, String systemId) argument
89 if (systemId != null)
90 m_locator.setSystemId(systemId);
H A DDOMBuilder.java704 * @param systemId The declared system identifier for the
709 public void startDTD(String name, String publicId, String systemId) argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
H A DProtectionSystemSpecificHeaderBox.java41 byte[] systemId; field in class:ProtectionSystemSpecificHeaderBox
45 return systemId;
48 public void setSystemId(byte[] systemId) { argument
49 assert systemId.length == 16;
50 this.systemId = systemId;
73 assert systemId.length == 16;
74 byteBuffer.put(systemId, 0, 16);
82 systemId = new byte[16];
83 content.get(systemId);
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DProtectionSpecificHeader.java38 public static ProtectionSpecificHeader createFor(UUID systemId, ByteBuffer bufferWrapper) { argument
39 final Class<? extends ProtectionSpecificHeader> aClass = uuidRegistry.get(systemId);
H A DUuidBasedProtectionSystemSpecificHeaderBox.java31 UUID systemId; field in class:UuidBasedProtectionSystemSpecificHeaderBox
52 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getMostSignificantBits());
53 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getLeastSignificantBits());
65 systemId = UUIDConverter.convert(systemIdBytes);
67 protectionSpecificHeader = ProtectionSpecificHeader.createFor(systemId, content);
71 return systemId;
74 public void setSystemId(UUID systemId) { argument
75 this.systemId = systemId;
79 return systemId
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java88 public TreeWalker(ContentHandler contentHandler, String systemId) argument
100 if (systemId != null)
101 m_locator.setSystemId(systemId);
H A DToHTMLStream.java1860 public void startDTD(String name, String publicId, String systemId) argument
1864 super.startDTD(name, publicId, systemId);
1914 String systemId)
1911 externalEntityDecl( String name, String publicId, String systemId) argument
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMOutputImpl.java49 * 3.LSOutput.systemId
143 public void setSystemId(String systemId){ argument
144 fSystemId = systemId;
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java86 * @param systemId The system identifier provided in the XML
92 StylesheetHandler handler, String publicId, String systemId)
106 * @param systemId The notation system identifier.
110 String publicId, String systemId)
124 * @param systemId The entity system identifier.
129 String publicId, String systemId,
91 resolveEntity( StylesheetHandler handler, String publicId, String systemId) argument
109 notationDecl(StylesheetHandler handler, String name, String publicId, String systemId) argument
128 unparsedEntityDecl(StylesheetHandler handler, String name, String publicId, String systemId, String notationName) argument
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java204 public void startDTD(String name, String publicId, String systemId) throws SAXException { } argument
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAX1ParserAdapter.java50 public void parse(String systemId) argument
54 xmlReader.parse(systemId);
/external/chromium_org/third_party/libxml/src/
H A DtestHTML.c167 * @systemId: The system ID of the entity
178 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) argument
188 if (systemId != NULL)
189 fprintf(stdout, ", %s)\n", (char *)systemId);
193 if (systemId != NULL) {
194 return(xmlNewInputFromFile(ctxt, (char *) systemId));
239 * @systemId: The system ID of the entity
246 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
249 name, type, publicId, systemId, content);
291 * @systemId
245 entityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type, const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) argument
296 notationDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId) argument
314 unparsedEntityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
[all...]
H A Dlegacy.c907 * @systemId: The system ID of the entity
920 const xmlChar * systemId)
923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId));
967 * @systemId: The system ID of the entity
975 const xmlChar * publicId, const xmlChar * systemId,
979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content);
1028 * @systemId: The system ID of the entity
1035 const xmlChar * publicId, const xmlChar * systemId)
1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId);
1046 * @systemId
919 resolveEntity(void *ctx, const xmlChar * publicId, const xmlChar * systemId) argument
974 entityDecl(void *ctx, const xmlChar * name, int type, const xmlChar * publicId, const xmlChar * systemId, xmlChar * content) argument
1034 notationDecl(void *ctx, const xmlChar * name, const xmlChar * publicId, const xmlChar * systemId) argument
1053 unparsedEntityDecl(void *ctx, const xmlChar * name, const xmlChar * publicId, const xmlChar * systemId, const xmlChar * notationName) argument
[all...]
H A DtestSAX.c353 * @systemId: The system ID of the entity
364 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) argument
377 if (systemId != NULL)
378 fprintf(stdout, ", %s)\n", (char *)systemId);
382 if (systemId != NULL) {
383 return(xmlNewInputFromFile(ctxt, (char *) systemId));
434 * @systemId: The system ID of the entity
441 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
447 if (systemId == NULL)
448 systemId
440 entityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type, const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) argument
513 notationDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId) argument
534 unparsedEntityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.cpp449 void HTMLConstructionSite::setCompatibilityModeFromDoctype(const String& name, const String& publicId, const String& systemId) argument
517 || equalIgnoringCase(systemId, "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd")
518 || (systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
519 || (systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
527 || (!systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
528 || (!systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
557 const String& systemId = StringImpl::create8BitIfPossible(token->systemIdentifier()); local
558 RefPtrWillBeRawPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId);
573 setCompatibilityModeFromDoctype(token->name(), publicId, systemId);

Completed in 381 milliseconds

123