/external/expat/xmlwf/ |
xmlfile.c | 135 const XML_Char *publicId) 203 const XML_Char *publicId)
|
xmlwf.c | 463 const XML_Char *publicId) 468 if (publicId) 469 ftprintf(fp, T(" public=\"%s\""), publicId); 488 const XML_Char *publicId, 503 if (publicId) 504 ftprintf(fp, T(" public=\"%s\""), publicId); 514 if (publicId) 515 ftprintf(fp, T(" public=\"%s\""), publicId);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToUnknownStream.java | 748 String publicId, 756 m_handler.externalEntityDecl(name, publicId, systemId); 944 public void startDTD(String name, String publicId, String systemId) 947 m_handler.startDTD(name, publicId, systemId); [all...] |
ToStream.java | 901 * @param publicId The declared public identifier of the entity, or 910 String publicId, 919 if (publicId != null) { 921 m_writer.write(publicId); [all...] |
ToHTMLStream.java | [all...] |
/external/libxml2/ |
SAX2.c | 480 * @publicId: The public ID of the entity 492 xmlSAX2ResolveEntity(void *ctx, const xmlChar *publicId, const xmlChar *systemId) 509 "SAX.xmlSAX2ResolveEntity(%s, %s)\n", publicId, systemId); 513 (const char *) publicId, ctxt); 626 * @publicId: The public ID of the entity 634 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) 643 name, type, publicId, systemId, content); 646 ent = xmlAddDocEntity(ctxt->myDoc, name, type, publicId, 665 ent = xmlAddDtdEntity(ctxt->myDoc, name, type, publicId, 811 * @publicId: The public ID of the entit [all...] |
xmllint.c | 983 * @publicId: The public ID of the entity 995 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) 1004 if (publicId != NULL) 1005 fprintf(stdout, "%s", (char *)publicId); 1059 * @publicId: The public ID of the entity 1067 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) 1071 if (publicId == NULL) 1072 publicId = nullstr; 1081 name, type, publicId, systemId, content); 1133 * @publicId: The public ID of the entit [all...] |
/external/libxml2/include/libxml/ |
parser.h | 327 * @publicId: The public ID of the entity 340 const xmlChar *publicId, 395 * @publicId: The public ID of the entity 404 const xmlChar *publicId, 411 * @publicId: The public ID of the entity 418 const xmlChar *publicId, 456 * @publicId: The public ID of the entity 464 const xmlChar *publicId, [all...] |
/external/webkit/Source/WebCore/dom/ |
DOMImplementation.cpp | 216 const String& publicId, const String& systemId, ExceptionCode& ec) 222 return DocumentType::create(0, qualifiedName, publicId, systemId);
|
/libcore/luni/src/main/native/ |
org_apache_harmony_xml_ExpatParser.cpp | 767 const char* systemId, const char* publicId, int /*hasInternalSubset*/) { 777 jstring javaPublicId = internString(env, parsingContext, publicId); 857 const char*, const char* systemId, const char* publicId) { 872 ScopedLocalRef<jstring> javaPublicId(env, env->NewStringUTF(publicId)); 901 static void unparsedEntityDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId, const char* notationName) { 911 ScopedLocalRef<jstring> javaPublicId(env, env->NewStringUTF(publicId)); 924 static void notationDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId) { 934 ScopedLocalRef<jstring> javaPublicId(env, env->NewStringUTF(publicId)); [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
StylesheetHandler.java | 298 * @param publicId The public identifer, or null if none is 307 public InputSource resolveEntity(String publicId, String systemId) 310 return getCurrentProcessor().resolveEntity(this, publicId, systemId); 325 * @param publicId The notation public identifier, or null if not 330 public void notationDecl(String name, String publicId, String systemId) 332 getCurrentProcessor().notationDecl(this, name, publicId, systemId); 339 * @param publicId The entity public identifier, or null if not 345 public void unparsedEntityDecl(String name, String publicId, 348 getCurrentProcessor().unparsedEntityDecl(this, name, publicId, systemId, [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
SAX2DTM.java | 162 * publicId, systemID, notationName, and name. [all...] |
/external/expat/tests/ |
runtests.c | 110 const XML_Char *publicId, 119 const XML_Char *publicId) 775 const XML_Char *publicId) 855 const XML_Char *publicId) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
IncrementalSAXSource_Filter.java | 387 public void startDTD(java.lang.String name, java.lang.String publicId, 392 clientLexicalHandler. startDTD(name, publicId, systemId);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
DocumentBuilderImpl.java | 205 String publicId = parser.getPublicId(); 207 document.appendChild(new DocumentTypeImpl(document, name, publicId, systemId));
|
/external/expat/lib/ |
xmlparse.c | 196 const XML_Char *publicId; [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
PYXWriter.java | 204 public void startDTD(String name, String publicId, String systemId) throws SAXException { }
|
/libcore/luni/src/test/java/libcore/xml/ |
SimpleParserTest.java | 212 public InputSource resolveEntity(String publicId, String systemId)
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
DOM3TreeWalker.java | 501 String publicId = node.getPublicId();
519 if (null != publicId) {
521 dtd.append(publicId);
526 if (null == publicId) {
555 fLexicalHandler.startDTD(docTypeName, publicId, systemId);
[all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
DOMAgent.js | 71 this.publicId = payload.publicId;
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DOMBuilder.java | 702 * @param publicId The declared public identifier for the 709 public void startDTD(String name, String publicId, String systemId)
|
/external/webkit/Source/WebCore/editing/ |
MarkupAccumulator.cpp | 289 if (!n->publicId().isEmpty()) { 291 append(result, n->publicId());
|
/external/webkit/Source/WebKit/win/Interfaces/ |
DOMCore.idl | 76 - (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName :(NSString *)publicId :(NSString *)systemId; 78 HRESULT createDocumentType([in] BSTR qualifiedName, [in] BSTR publicId, [in] BSTR systemId, [out, retval] IDOMDocumentType** result); 762 - (NSString *)publicId; 764 HRESULT publicId([out, retval] BSTR* result);
|
/libcore/xml/src/main/java/org/kxml2/io/ |
KXmlParser.java | 95 private String publicId; 625 publicId = readQuotedId(true); [all...] |
/external/webkit/Source/WebCore/bindings/objc/ |
PublicDOMInterfaces.h | 63 - (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName :(NSString *)publicId :(NSString *)systemId; 67 - (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName publicId:(NSString *)publicId systemId:(NSString *)systemId AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER; 171 @property(readonly, copy) NSString *publicId; 236 @property(readonly, copy) NSString *publicId; 319 @property(readonly, copy) NSString *publicId; [all...] |