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

1 2 3 45 6 7 8 9

  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerIdentityImpl.java 119 * @param systemID Base URI for the source tree.
121 public void setSystemId(String systemID)
123 m_systemID = systemID;
129 * @return The systemID that was set with {@link #setSystemId}.
350 String systemID = source.getSystemId();
354 if (systemID != null) {
355 source.setSystemId(systemID);
819 * @param systemId The notation system identifier.
826 public void notationDecl(String name, String publicId, String systemId)
830 m_resultDTDHandler.notationDecl(name, publicId, systemId);
    [all...]
  /external/chromium_org/third_party/libxml/src/
legacy.c 872 * @SystemID: the SYSTEM ID (e.g. filename or URL)
879 const xmlChar * ExternalID, const xmlChar * SystemID)
882 xmlSAX2InternalSubset(ctx, name, ExternalID, SystemID);
890 * @SystemID: the SYSTEM ID (e.g. filename or URL)
897 const xmlChar * ExternalID, const xmlChar * SystemID)
900 xmlSAX2ExternalSubset(ctx, name, ExternalID, SystemID);
907 * @systemId: The system ID of the entity
920 const xmlChar * systemId)
923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId));
967 * @systemId: The system ID of the entit
    [all...]
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...]
  /external/libxml2/
legacy.c 872 * @SystemID: the SYSTEM ID (e.g. filename or URL)
879 const xmlChar * ExternalID, const xmlChar * SystemID)
882 xmlSAX2InternalSubset(ctx, name, ExternalID, SystemID);
890 * @SystemID: the SYSTEM ID (e.g. filename or URL)
897 const xmlChar * ExternalID, const xmlChar * SystemID)
900 xmlSAX2ExternalSubset(ctx, name, ExternalID, SystemID);
907 * @systemId: The system ID of the entity
920 const xmlChar * systemId)
923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId));
967 * @systemId: The system ID of the entit
    [all...]
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...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 50 public void parse(String systemId)
54 xmlReader.parse(systemId);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 190 * @param systemId The absolute URL of the document.
198 public void parse (String systemId)
201 parse(new InputSource(systemId));
  /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,
  /libcore/luni/src/test/java/tests/api/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/editing/
MarkupAccumulator.cpp 363 if (!n->systemId().isEmpty()) {
366 result.append(n->systemId());
369 } else if (!n->systemId().isEmpty()) {
371 result.append(n->systemId());
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 323 void HTMLConstructionSite::setCompatibilityModeFromDoctype(const String& name, const String& publicId, const String& systemId)
391 || equalIgnoringCase(systemId, "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd")
392 || (systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
393 || (systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
401 || (!systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
402 || (!systemId.isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
421 const String& systemId = StringImpl::create8BitIfPossible(token->systemIdentifier());
422 RefPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId);
437 setCompatibilityModeFromDoctype(token->name(), publicId, systemId);
    [all...]
HTMLConstructionSite.h 186 void setCompatibilityModeFromDoctype(const String& name, const String& publicId, const String& systemId);
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.cpp 181 const String& publicId, const String& systemId, ExceptionState& es)
187 return DocumentType::create(0, qualifiedName, publicId, systemId);
  /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/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 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...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 778 const char* systemId, const char* publicId, int /*hasInternalSubset*/) {
791 jstring javaSystemId = internString(env, parsingContext, systemId);
868 const char*, const char* systemId, const char* publicId) {
879 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
912 static void unparsedEntityDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId, const char* notationName) {
924 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
935 static void notationDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId) {
947 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
    [all...]

Completed in 605 milliseconds

1 2 3 45 6 7 8 9