HomeSort by relevance Sort by last modified time
    Searched full:systemid (Results 126 - 150 of 246) sorted by null

1 2 3 4 56 7 8 910

  /libcore/luni/src/main/java/org/w3c/dom/ls/
DOMImplementationLS.java 105 * , <code>LSInput.stringData</code> <code>LSInput.systemId</code>,
116 * <code>LSOutput.byteStream</code>, <code>LSOutput.systemId</code>,
LSOutput.java 40 * <li> <code>LSOutput.systemId</code>
85 public void setSystemId(String systemId);
LSResourceResolver.java 66 * @param systemId The system identifier, a URI reference [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>], of the
78 String systemId,
LSInput.java 42 * <code>LSInput.systemId</code>
148 public void setSystemId(String systemId);
169 * resolving a relative <code>systemId</code> to an absolute URI.
176 * resolving a relative <code>systemId</code> to an absolute URI.
  /libcore/luni/src/main/java/org/xml/sax/ext/
DeclHandler.java 135 * @param systemId The entity's system identifier.
141 String systemId)
LexicalHandler.java 76 * @param systemId The declared system identifier for the
86 String systemId)
  /external/webkit/Source/WebCore/html/
HTMLDocument.cpp 407 || equalIgnoringCase(docType->systemId(), "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd")
408 || (docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
409 || (docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
417 || (!docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
418 || (!docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentImportNode.java 419 // String systemId;
441 // systemId = entity2.getSystemId();
443 // assertEquals("documentimportnode19_Ent2SystemId", systemId, systemIdImp);
444 // systemId = entity6.getSystemId();
446 // assertEquals("documentimportnode19_Ent6SystemId", systemId, systemIdImp);
  /external/webkit/Source/WebCore/dom/
XMLDocumentParserLibxml2.cpp 165 void appendInternalSubsetCallback(const xmlChar* name, const xmlChar* externalID, const xmlChar* systemID)
171 callback->systemID = xmlStrdup(systemID);
306 xmlFree(systemID);
311 parser->internalSubset(name, externalID, systemID);
316 xmlChar* systemID;
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java 117 * @param systemId Provide a base for resolving relative URIs.
124 public Document parse(InputStream is, String systemId)
131 in.setSystemId(systemId);
  /external/icu4c/i18n/
zonemeta.h 37 static UnicodeString& U_EXPORT2 getCanonicalCLDRID(const UnicodeString &tzid, UnicodeString &systemID, UErrorCode& status);
zonemeta.cpp 372 ZoneMeta::getCanonicalCLDRID(const UnicodeString &tzid, UnicodeString &systemID, UErrorCode& status) {
375 systemID.setToBogus();
376 return systemID;
378 systemID.setTo(TRUE, canonicalID, -1);
379 return systemID;
ucal.cpp 563 UBool systemID = FALSE;
564 TimeZone::getCanonicalID(UnicodeString(id, len), canonical, systemID, *status);
567 *isSystemID = systemID;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXScanner.java 40 public void resetDocumentLocator(String publicid, String systemid) {
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentgetdoctype01.js 132 newSysID = replacedDocType.systemId;
  /external/webkit/Source/WebCore/editing/
MarkupAccumulator.cpp 293 if (!n->systemId().isEmpty()) {
295 append(result, n->systemId());
298 } else if (!n->systemId().isEmpty()) {
300 append(result, n->systemId());
  /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);
767 - (NSString *)systemId;
769 HRESULT systemId([out, retval] BSTR* result);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documenttypeinternalSubset01.java 36 * Create a new DocumentType node with null values for publicId and systemId.
importNode02.java 41 * the above string. The returned node should belong to this document whose systemId is "staff.dtd"
importNode05.java 43 * belong to this document whose systemId is "staff.dtd"
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java 40 * @param systemId The external subset system identifier.
55 String systemId)
  /external/libxml2/
xmllint.c 949 const xmlChar *ExternalID, const xmlChar *SystemID)
959 if (SystemID == NULL)
962 fprintf(stdout, " %s)\n", SystemID);
973 const xmlChar *ExternalID, const xmlChar *SystemID)
983 if (SystemID == NULL)
986 fprintf(stdout, " %s)\n", SystemID);
993 * @systemId: The system ID of the entity
1004 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
1017 if (systemId != NULL)
1018 fprintf(stdout, ", %s)\n", (char *)systemId);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 284 * @return The systemID that was set with {@link #setSystemId}.
300 * @param systemId The system identifier provided in the XML
307 public InputSource resolveEntity(String publicId, String systemId)
310 return getCurrentProcessor().resolveEntity(this, publicId, systemId);
327 * @param systemId The notation system identifier.
330 public void notationDecl(String name, String publicId, String systemId)
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,
    [all...]
  /external/libxml2/include/libxml/
tree.h 158 const xmlChar *SystemID; /* System identifier, if any */
384 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC DTD */
710 const xmlChar *SystemID);
715 const xmlChar *SystemID);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 88 public TreeWalker(ContentHandler contentHandler, String systemId)
100 if (systemId != null)
101 m_locator.setSystemId(systemId);

Completed in 644 milliseconds

1 2 3 4 56 7 8 910