HomeSort by relevance Sort by last modified time
    Searched refs:systemId (Results 101 - 125 of 212) sorted by null

1 2 3 45 6 7 8 9

  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 86 * @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,
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/chromium_org/third_party/libxml/src/
SAX2.c 331 * @SystemID: the SYSTEM ID (e.g. filename or URL)
337 const xmlChar *ExternalID, const xmlChar *SystemID)
345 name, ExternalID, SystemID);
359 xmlCreateIntSubset(ctxt->myDoc, name, ExternalID, SystemID);
369 * @SystemID: the SYSTEM ID (e.g. filename or URL)
375 const xmlChar *ExternalID, const xmlChar *SystemID)
382 name, ExternalID, SystemID);
384 if (((ExternalID != NULL) || (SystemID != NULL)) &&
403 SystemID);
408 xmlNewDtd(ctxt->myDoc, name, ExternalID, SystemID);
    [all...]
runtest.c 834 const xmlChar *ExternalID, const xmlChar *SystemID)
844 if (SystemID == NULL)
847 fprintf(SAXdebug, " %s)\n", SystemID);
858 const xmlChar *ExternalID, const xmlChar *SystemID)
868 if (SystemID == NULL)
871 fprintf(SAXdebug, " %s)\n", SystemID);
878 * @systemId: The system ID of the entity
889 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
902 if (systemId != NULL)
903 fprintf(SAXdebug, ", %s)\n", (char *)systemId);
    [all...]
xmllint.c 945 const xmlChar *ExternalID, const xmlChar *SystemID)
955 if (SystemID == NULL)
958 fprintf(stdout, " %s)\n", SystemID);
969 const xmlChar *ExternalID, const xmlChar *SystemID)
979 if (SystemID == NULL)
982 fprintf(stdout, " %s)\n", SystemID);
989 * @systemId: The system ID of the entity
1000 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
1013 if (systemId != NULL)
1014 fprintf(stdout, ", %s)\n", (char *)systemId);
    [all...]
  /external/libxml2/
SAX2.c 348 * @SystemID: the SYSTEM ID (e.g. filename or URL)
354 const xmlChar *ExternalID, const xmlChar *SystemID)
362 name, ExternalID, SystemID);
376 xmlCreateIntSubset(ctxt->myDoc, name, ExternalID, SystemID);
386 * @SystemID: the SYSTEM ID (e.g. filename or URL)
392 const xmlChar *ExternalID, const xmlChar *SystemID)
399 name, ExternalID, SystemID);
401 if (((ExternalID != NULL) || (SystemID != NULL)) &&
421 SystemID);
426 xmlNewDtd(ctxt->myDoc, name, ExternalID, SystemID);
    [all...]
xmllint.c 951 const xmlChar *ExternalID, const xmlChar *SystemID)
961 if (SystemID == NULL)
964 fprintf(stdout, " %s)\n", SystemID);
975 const xmlChar *ExternalID, const xmlChar *SystemID)
985 if (SystemID == NULL)
988 fprintf(stdout, " %s)\n", SystemID);
995 * @systemId: The system ID of the entity
1006 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
1019 if (systemId != NULL)
1020 fprintf(stdout, ", %s)\n", (char *)systemId);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserTestSupport.java 49 public static final String XML_SYSTEM_ID = "." + "/systemid/";
268 String systemId) {
271 systemId + ParsingSupport.SEPARATOR_STRING);
282 public InputSource resolveEntity(String publicId, String systemId) {
284 // ParsingSupport.SEPARATOR_STRING + systemId);
331 String systemId, String notationName) {
335 // + systemId + ParsingSupport.SEPARATOR_STRING + notationName);
439 String systemId) {
450 public InputSource resolveEntity(String publicId, String systemId) {
483 String systemId, String notationName)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [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);
ToUnknownStream.java 749 String systemId)
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...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 82 * @param systemId System identifier for the document.
85 public TreeWalker(ContentHandler contentHandler, DOMHelper dh, String systemId)
89 if (systemId != null)
90 m_locator.setSystemId(systemId);
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 229 @Override public InputSource resolveEntity(String publicId, String systemId) {
232 @Override public void notationDecl(String name, String publicId, String systemId) {
236 String name, String publicId, String systemId, String notationName) {
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 449 void HTMLConstructionSite::setCompatibilityModeFromDoctype(const String& name, const String& publicId, const String& systemId)
517 || equalIgnoringCase(systemId, "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd")
518 || (systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
519 || (systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
527 || (!systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
528 || (!systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
557 const String& systemId = StringImpl::create8BitIfPossible(token->systemIdentifier());
558 RefPtrWillBeRawPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId);
573 setCompatibilityModeFromDoctype(token->name(), publicId, systemId);
    [all...]
  /external/chromium_org/third_party/expat/files/lib/
expat.h 316 be non-NULL and systemId, publicID, and notationName will be NULL.
321 For external entities, value will be NULL and systemId will be
336 const XML_Char *systemId,
350 entityName, systemId and notationName arguments will never be
357 const XML_Char *systemId,
369 const XML_Char *systemId,
405 XML_ExternalEntityParserCreate. The systemId argument is the
410 the base for resolving systemId if systemId was relative; this is
436 const XML_Char *systemId,
    [all...]
  /external/expat/lib/
expat.h 316 be non-NULL and systemId, publicID, and notationName will be NULL.
321 For external entities, value will be NULL and systemId will be
336 const XML_Char *systemId,
350 entityName, systemId and notationName arguments will never be
357 const XML_Char *systemId,
369 const XML_Char *systemId,
405 XML_ExternalEntityParserCreate. The systemId argument is the
410 the base for resolving systemId if systemId was relative; this is
436 const XML_Char *systemId,
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 162 * publicId, systemID, notationName, and name.
    [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 612 String systemId) throws SAXException, IOException {
613 if (systemId.equals(PROP_DTD_NAME)) {
620 + systemId);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.cpp 361 if (!n.systemId().isEmpty()) {
363 result.append(n.systemId());
366 } else if (!n.systemId().isEmpty()) {
368 result.append(n.systemId());
  /external/chromium_org/third_party/libxml/src/include/libxml/
parser.h 336 * @systemId: The system ID of the entity
349 const xmlChar *systemId);
355 * @SystemID: the SYSTEM ID (e.g. filename or URL)
362 const xmlChar *SystemID);
368 * @SystemID: the SYSTEM ID (e.g. filename or URL)
375 const xmlChar *SystemID);
404 * @systemId: The system ID of the entity
413 const xmlChar *systemId,
420 * @systemId: The system ID of the entity
427 const xmlChar *systemId);
    [all...]
  /external/libxml2/include/libxml/
parser.h 339 * @systemId: The system ID of the entity
352 const xmlChar *systemId);
358 * @SystemID: the SYSTEM ID (e.g. filename or URL)
365 const xmlChar *SystemID);
371 * @SystemID: the SYSTEM ID (e.g. filename or URL)
378 const xmlChar *SystemID);
407 * @systemId: The system ID of the entity
416 const xmlChar *systemId,
423 * @systemId: The system ID of the entity
430 const xmlChar *systemId);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.cpp 193 const String& publicId, const String& systemId, ExceptionState& exceptionState)
199 return DocumentType::create(m_document, qualifiedName, publicId, systemId);
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 779 const char* systemId, const char* publicId, int /*hasInternalSubset*/) {
792 jstring javaSystemId = internString(env, parsingContext, systemId);
869 const char*, const char* systemId, const char* publicId) {
880 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
913 static void unparsedEntityDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId, const char* notationName) {
925 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
936 static void notationDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId) {
948 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
    [all...]
  /external/expat/tests/
runtests.c 110 const XML_Char *systemId,
119 const XML_Char *systemId,
775 const XML_Char *systemId,
855 const XML_Char *systemId,
    [all...]

Completed in 747 milliseconds

1 2 3 45 6 7 8 9