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

123

/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
H A DToUnknownStream.java749 String systemId)
756 m_handler.externalEntityDecl(name, publicId, systemId);
944 public void startDTD(String name, String publicId, String systemId) argument
947 m_handler.startDTD(name, publicId, systemId);
746 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
H A DStylesheetHandler.java300 * @param systemId The system identifier provided in the XML
307 public InputSource resolveEntity(String publicId, String systemId) argument
310 return getCurrentProcessor().resolveEntity(this, publicId, systemId);
327 * @param systemId The notation system identifier.
330 public void notationDecl(String name, String publicId, String systemId) argument
332 getCurrentProcessor().notationDecl(this, name, publicId, systemId);
341 * @param systemId The entity system identifier.
346 String systemId, String notationName)
348 getCurrentProcessor().unparsedEntityDecl(this, name, publicId, systemId,
345 unparsedEntityDecl(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/libxml2/
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/expat/tests/
H A Druntests.c110 const XML_Char *systemId,
119 const XML_Char *systemId,
775 const XML_Char *systemId,
855 const XML_Char *systemId,
1255 const XML_Char *systemId,
104 dummy_entity_decl_handler(void *userData, const XML_Char *entityName, int is_parameter_entity, const XML_Char *value, int value_length, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName) argument
116 dummy_notation_decl_handler(void *userData, const XML_Char *notationName, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
772 external_entity_loader_set_encoding(XML_Parser parser, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
852 external_entity_loader(XML_Parser parser, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
1252 external_entity_handler(XML_Parser parser, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java1564 * @param systemId The system identifier provided in the XML
1574 public InputSource resolveEntity(String publicId, String systemId) argument
1594 * @param systemId The notation system identifier.
1601 public void notationDecl(String name, String publicId, String systemId) argument
1618 * @param systemId The entity system identifier.
1627 String name, String publicId, String systemId, String notationName)
1638 systemId = SystemIDResolver.getAbsoluteURI(systemId,
1650 m_entities.addElement(systemId);
2310 * @param systemId Th
1626 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
2315 externalEntityDecl( String name, String publicId, String systemId) argument
2347 startDTD(String name, String publicId, String systemId) argument
[all...]

Completed in 819 milliseconds

123