/external/expat/xmlwf/ |
D | xmlwf.c | 56 const XML_Char *notationName; member 331 free((void *)notationListHead->notationName); in freeNotations() 363 return xcscmp(n1->notationName, n2->notationName); in notationCmp() 407 fputts(notations[i]->notationName, data->fp); in endDoctypeDecl() 439 const XML_Char *notationName, in notationDecl() argument 452 entry->notationName = xcsdup(notationName); in notationDecl() 453 if (entry->notationName == NULL) { in notationDecl() 462 free((void *)entry->notationName); in notationDecl() 475 free((void *)entry->notationName); in notationDecl() 714 const XML_Char *notationName, in metaNotationDecl() argument [all …]
|
/external/libxml2/ |
D | testSAX.c | 536 const xmlChar *notationName) in unparsedEntityDeclDebug() argument 544 if (notationName == NULL) in unparsedEntityDeclDebug() 545 notationName = nullstr; in unparsedEntityDeclDebug() 551 (char *) notationName); in unparsedEntityDeclDebug()
|
D | testHTML.c | 316 const xmlChar *notationName) in unparsedEntityDeclDebug() argument 320 (char *) notationName); in unparsedEntityDeclDebug()
|
D | legacy.c | 1055 const xmlChar * notationName) in unparsedEntityDecl() argument 1059 notationName); in unparsedEntityDecl()
|
/external/python/cpython2/Modules/expat/ |
D | expat.h | 367 const XML_Char *notationName); 388 const XML_Char *notationName); 396 const XML_Char *notationName,
|
/external/expat/lib/ |
D | expat.h | 367 const XML_Char *notationName); 388 const XML_Char *notationName); 396 const XML_Char *notationName,
|
/external/python/cpython3/Modules/expat/ |
D | expat.h | 367 const XML_Char *notationName); 388 const XML_Char *notationName); 396 const XML_Char *notationName,
|
/external/python/cpython3/Lib/xml/dom/ |
D | expatbuilder.py | 306 base, systemId, publicId, notationName): argument 313 systemId, notationName) 323 def notation_decl_handler(self, notationName, base, systemId, publicId): argument 324 node = self.document._create_notation(notationName, publicId, systemId) 680 if entity.notationName: 681 s = "%s NOTATION %s" % (s, entity.notationName)
|
/external/python/cpython2/Lib/xml/dom/ |
D | expatbuilder.py | 310 base, systemId, publicId, notationName): argument 317 systemId, notationName) 327 def notation_decl_handler(self, notationName, base, systemId, publicId): argument 328 node = self.document._create_notation(notationName, publicId, systemId) 687 if entity.notationName: 688 s = "%s NOTATION %s" % (s, entity.notationName)
|
/external/python/cpython2/Modules/ |
D | pyexpat.c | 632 const XML_Char *notationName), 636 string_intern(self, notationName))) 648 const XML_Char *notationName), 654 string_intern(self, notationName))) 665 const XML_Char *notationName), 673 string_intern(self, notationName))) 788 const XML_Char *notationName, 793 string_intern(self, notationName), string_intern(self, base),
|
/external/python/cpython3/Modules/ |
D | pyexpat.c | 485 const XML_Char *notationName), 489 string_intern(self, notationName))) 500 const XML_Char *notationName), 506 string_intern(self, notationName))) 615 const XML_Char *notationName, 620 string_intern(self, notationName), string_intern(self, base),
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | TransformerHandlerImpl.java | 298 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument 304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName); in unparsedEntityDecl()
|
D | TransformerIdentityImpl.java | 852 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument 858 notationName); in unparsedEntityDecl()
|
/external/libxml2/include/libxml/ |
D | SAX.h | 97 const xmlChar *notationName);
|
D | SAX2.h | 95 const xmlChar *notationName);
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | TestCLDRTests.java | 412 String systemId, String notationName) 417 + ", " + notationName);
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XMLFileReader.java | 281 String systemId, String notationName) { in unparsedEntityDecl() argument 285 + ", " + notationName); in unparsedEntityDecl()
|
/external/skqp/src/xml/ |
D | SkXMLParser.cpp | 123 const XML_Char *notationName) { in entity_decl_handler() argument
|
/external/skia/src/xml/ |
D | SkXMLParser.cpp | 123 const XML_Char *notationName) { in entity_decl_handler() argument
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | DOMHelper.java | 1143 String notationName = entity.getNotationName(); in getUnparsedEntityURI() 1145 if (null != notationName) // then it's unparsed in getUnparsedEntityURI()
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | XSLTElementProcessor.java | 130 String notationName) in unparsedEntityDecl() argument
|
D | StylesheetHandler.java | 346 String systemId, String notationName) in unparsedEntityDecl() argument 349 notationName); in unparsedEntityDecl()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | TestCldr.java | 648 String systemId, String notationName) throws SAXException { 650 + ", " + notationName);
|
/external/python/cpython2/Doc/library/ |
D | pyexpat.rst | 407 .. method:: xmlparser.UnparsedEntityDeclHandler(entityName, base, systemId, publicId, notationName) 415 …r.EntityDeclHandler(entityName, is_parameter_entity, value, base, systemId, publicId, notationName) 419 be ``None`` for external entities. The *notationName* parameter will be 429 .. method:: xmlparser.NotationDeclHandler(notationName, base, systemId, publicId) 431 Called for notation declarations. *notationName*, *base*, and *systemId*, and
|
/external/python/cpython3/Doc/library/ |
D | pyexpat.rst | 378 .. method:: xmlparser.UnparsedEntityDeclHandler(entityName, base, systemId, publicId, notationName) 386 …r.EntityDeclHandler(entityName, is_parameter_entity, value, base, systemId, publicId, notationName) 390 be ``None`` for external entities. The *notationName* parameter will be 398 .. method:: xmlparser.NotationDeclHandler(notationName, base, systemId, publicId) 400 Called for notation declarations. *notationName*, *base*, and *systemId*, and
|