Searched refs:notationName (Results 1 - 18 of 18) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
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;
H A DNotationImpl.java34 private String notationName; field in class:NotationImpl
40 NotationImpl(DocumentImpl document, String notationName, String publicID, argument
47 return notationName;
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dnodenotationnodename.java67 String notationName;
75 notationName = notationNode.getNodeName();
76 assertEquals("nodeName", "notation1", notationName);
H A Dnotationgetnotationname.java65 String notationName;
72 notationName = notationNode.getNodeName();
73 assertEquals("notationGetNotationNameAssert", "notation1", notationName);
H A Ddocumenttypegetnotations.java68 String notationName;
82 notationName = notation.getNodeName();
83 actual.add(notationName);
/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/dom/src/test/java/org/w3c/domts/level2/core/
H A Ddocumentimportnode19.java88 String notationName;
114 notationName = entity2.getNotationName();
116 assertEquals("documentimportnode19_Ent2NotationName", notationName, notationNameImp);
117 notationName = entity6.getNotationName();
119 assertEquals("documentimportnode19_Ent6NotationName", notationName, notationNameImp);
H A DimportNode09.java41 * notationName attributes are copied.
81 String notationName;
99 notationName = entity1.getNotationName();
100 assertEquals("notationName", "notation2", notationName);
H A Dnamednodemapgetnameditemns01.java79 String notationName;
/libcore/luni/src/test/java/tests/api/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/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/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/test/java/libcore/xml/
H A DExpatSaxParserTest.java450 public void unparsedEntityDecl(String entityName, String publicId, String systemId, String notationName) { argument
454 this.ueNotationName = notationName;
H A DSaxTest.java236 String name, String publicId, String systemId, String notationName) {
235 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
/libcore/luni/src/test/java/tests/api/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/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp898 static void unparsedEntityDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId, const char* notationName) { argument
912 ScopedLocalRef<jstring> javaNotationName(env, env->NewStringUTF(notationName));

Completed in 563 milliseconds