Searched defs:notationName (Results 1 - 12 of 12) sorted by relevance

/libcore/luni/src/main/java/org/xml/sax/
H A DDTDHandler.java105 * @param notationName The name of the associated notation.
112 String notationName)
109 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DHandlerBase.java119 * @param notationName The name of the associated notation.
123 String systemId, String notationName)
120 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DNotationImpl.java34 private String notationName; field in class:NotationImpl
40 NotationImpl(DocumentImpl document, String notationName, String publicID, argument
47 return notationName;
H A DEntityImpl.java34 private String notationName; field in class:EntityImpl
40 EntityImpl(DocumentImpl document, String notationName, String publicID, argument
43 this.notationName = notationName;
59 return notationName;
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DDefaultHandler.java136 * @param notationName The name of the associated notation.
142 String systemId, String notationName)
139 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DXMLFilterImpl.java417 * @param notationName The name of the associated notation.
422 String systemId, String notationName)
427 notationName);
416 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DMockHandler.java111 String notationName) throws SAXException {
112 logger.add("unparsedEntityDecl", name, publicId, systemId, notationName);
110 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/luni/src/test/java/libcore/xml/
H A DSaxTest.java236 String name, String publicId, String systemId, String notationName) {
235 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
H A DExpatSaxParserTest.java451 public void unparsedEntityDecl(String entityName, String publicId, String systemId, String notationName) { argument
455 this.ueNotationName = notationName;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
H A DSAXParserTestSupport.java331 String systemId, String notationName) {
335 // + systemId + ParsingSupport.SEPARATOR_STRING + notationName);
483 String systemId, String notationName) {
330 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
482 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java233 /*package*/ void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException { argument
236 dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp914 static void unparsedEntityDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId, const char* notationName) { argument
928 ScopedLocalRef<jstring> javaNotationName(env, env->NewStringUTF(notationName));

Completed in 428 milliseconds