Searched refs:systemId (Results 1 - 25 of 79) sorted by relevance

1234

/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...]
/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/webkit/Source/WebCore/dom/
H A DNotation.idl24 readonly attribute [ConvertNullStringTo=Null] DOMString systemId;
H A DNotation.cpp28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId) argument
32 , m_systemId(systemId)
H A DEntity.idl24 readonly attribute [ConvertNullStringTo=Null] DOMString systemId;
H A DNotation.h34 const String& systemId() const { return m_systemId; } function in class:WebCore::Notation
37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
H A DDocumentType.h35 static PassRefPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId) argument
37 return adoptRef(new DocumentType(document, name, publicId, systemId));
45 const String& systemId() const { return m_systemId; } function in class:WebCore::DocumentType
49 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
H A DEntity.h34 String systemId() const { ASSERT_NOT_REACHED(); return String(); } function in class:WebCore::Entity
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.idl35 readonly attribute [ConvertNullStringTo=Null] DOMString systemId;
H A DDOMImplementation.idl36 in [ConvertUndefinedOrNullToNullString] DOMString systemId)
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
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...]
H A DProtectionSpecificHeader.java38 public static ProtectionSpecificHeader createFor(UUID systemId, ByteBuffer bufferWrapper) { argument
39 final Class<? extends ProtectionSpecificHeader> aClass = uuidRegistry.get(systemId);
/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;
/external/webkit/LayoutTests/dom/html/level2/core/
H A DcreateDocumentType04.js83 var systemId = "myDoc.dtd";
93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
H A DcreateDocumentType04.js83 var systemId = "myDoc.dtd";
93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/expat/xmlwf/
H A Dxmlfile.c101 resolveSystemId(const XML_Char *base, const XML_Char *systemId, argument
107 || *systemId == T('/')
109 || *systemId == T('\\')
110 || (isAsciiLetter(systemId[0]) && systemId[1] == T(':'))
113 return systemId;
114 *toFree = (XML_Char *)malloc((tcslen(base) + tcslen(systemId) + 2)
117 return systemId;
126 tcscpy(s, systemId);
134 const XML_Char *systemId,
131 externalEntityRefFilemap(XML_Parser parser, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
199 externalEntityRefStream(XML_Parser parser, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
[all...]
/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/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodereplacechild40.js92 var systemId = null;
109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMImplementationFront.cpp57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode& ec) argument
59 return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, systemId, ec);
H A DDOMImplementationFront.h48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
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...]
/external/libxml2/include/libxml/
H A DSAX.h65 const xmlChar *systemId);
72 const xmlChar *systemId,
91 const xmlChar *systemId);
96 const xmlChar *systemId,
H A DSAX2.h63 const xmlChar *systemId);
70 const xmlChar *systemId,
89 const xmlChar *systemId);
94 const xmlChar *systemId,

Completed in 569 milliseconds

1234