HomeSort by relevance Sort by last modified time
    Searched refs:publicId (Results 76 - 100 of 141) sorted by null

1 2 34 5 6

  /external/expat/xmlwf/
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 992 * @publicId: The public ID of the entity
1004 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
1013 if (publicId != NULL)
1014 fprintf(stdout, "%s", (char *)publicId);
1068 * @publicId: The public ID of the entity
1076 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
1080 if (publicId == NULL)
1081 publicId = nullstr;
1090 name, type, publicId, systemId, content);
1142 * @publicId: The public ID of the entit
    [all...]
  /external/libxml2/include/libxml/
parser.h 335 * @publicId: The public ID of the entity
348 const xmlChar *publicId,
403 * @publicId: The public ID of the entity
412 const xmlChar *publicId,
419 * @publicId: The public ID of the entity
426 const xmlChar *publicId,
464 * @publicId: The public ID of the entity
472 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 775 const char* systemId, const char* publicId, int /*hasInternalSubset*/) {
785 jstring javaPublicId = internString(env, parsingContext, publicId);
865 const char*, const char* systemId, const char* publicId) {
880 ScopedLocalRef<jstring> javaPublicId(env, env->NewStringUTF(publicId));
909 static void unparsedEntityDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId, const char* notationName) {
919 ScopedLocalRef<jstring> javaPublicId(env, env->NewStringUTF(publicId));
932 static void notationDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId) {
942 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 111 const XML_Char *publicId,
120 const XML_Char *publicId)
776 const XML_Char *publicId)
856 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/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/expat/lib/
xmlparse.c 198 const XML_Char *publicId;
    [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...]
  /libcore/luni/src/main/java/java/util/
Properties.java 611 public InputSource resolveEntity(String publicId,

Completed in 1762 milliseconds

1 2 34 5 6