HomeSort by relevance Sort by last modified time
    Searched refs:notationName (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
EntityImpl.java 34 private String notationName;
40 EntityImpl(DocumentImpl document, String notationName, String publicID,
43 this.notationName = notationName;
59 return notationName;
NotationImpl.java 34 private String notationName;
40 NotationImpl(DocumentImpl document, String notationName, String publicID,
47 return notationName;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodenotationnodename.java 67 String notationName;
75 notationName = notationNode.getNodeName();
76 assertEquals("nodeName", "notation1", notationName);
notationgetnotationname.java 65 String notationName;
72 notationName = notationNode.getNodeName();
73 assertEquals("notationGetNotationNameAssert", "notation1", notationName);
documenttypegetnotations.java 68 String notationName;
82 notationName = notation.getNodeName();
83 actual.add(notationName);
  /libcore/luni/src/main/java/org/xml/sax/
DTDHandler.java 105 * @param notationName The name of the associated notation.
112 String notationName)
HandlerBase.java 119 * @param notationName The name of the associated notation.
123 String systemId, String notationName)
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode19.java 88 String notationName;
114 notationName = entity2.getNotationName();
116 assertEquals("documentimportnode19_Ent2NotationName", notationName, notationNameImp);
117 notationName = entity6.getNotationName();
119 assertEquals("documentimportnode19_Ent6NotationName", notationName, notationNameImp);
importNode09.java 41 * notationName attributes are copied.
81 String notationName;
99 notationName = entity1.getNotationName();
100 assertEquals("notationName", "notation2", notationName);
namednodemapgetnameditemns01.java 79 String notationName;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockHandler.java 111 String notationName) throws SAXException {
112 logger.add("unparsedEntityDecl", name, publicId, systemId, notationName);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 136 * @param notationName The name of the associated notation.
142 String systemId, String notationName)
XMLFilterImpl.java 417 * @param notationName The name of the associated notation.
422 String systemId, String notationName)
427 notationName);
  /external/libxml2/
testHTML.c 309 * @notationName: the name of the notation
316 const xmlChar *notationName)
320 (char *) notationName);
testSAX.c 529 * @notationName: the name of the notation
536 const xmlChar *notationName)
544 if (notationName == NULL)
545 notationName = nullstr;
551 (char *) notationName);
  /external/expat/lib/
expat.h 316 be non-NULL and systemId, publicID, and notationName will be NULL.
323 identifier was provided. The notationName argument will have a
338 const XML_Char *notationName);
350 entityName, systemId and notationName arguments will never be
359 const XML_Char *notationName);
362 whatever was set by XML_SetBase. The notationName will never be
367 const XML_Char *notationName,
    [all...]
  /external/libxml2/include/libxml/
SAX.h 97 const xmlChar *notationName);
SAX2.h 95 const xmlChar *notationName);
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
expatbuilder.py 310 base, systemId, publicId, notationName):
317 systemId, notationName)
327 def notation_decl_handler(self, notationName, base, systemId, publicId):
328 node = self.document._create_notation(notationName, publicId, systemId)
687 if entity.notationName:
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
expatbuilder.py 310 base, systemId, publicId, notationName):
317 systemId, notationName)
327 def notation_decl_handler(self, notationName, base, systemId, publicId):
328 node = self.document._create_notation(notationName, publicId, systemId)
687 if entity.notationName:
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 310 base, systemId, publicId, notationName):
317 systemId, notationName)
327 def notation_decl_handler(self, notationName, base, systemId, publicId):
328 node = self.document._create_notation(notationName, publicId, systemId)
687 if entity.notationName:
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 310 base, systemId, publicId, notationName):
317 systemId, notationName)
327 def notation_decl_handler(self, notationName, base, systemId, publicId):
328 node = self.document._create_notation(notationName, publicId, systemId)
687 if entity.notationName:
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 292 * @param notationName The name of the associated notation.
298 String name, String publicId, String systemId, String notationName)
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
TransformerIdentityImpl.java 844 * @param notationName The name of the associated notation.
852 String name, String publicId, String systemId, String notationName)
858 notationName);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 125 * @param notationName The name of the associated notation.
130 String notationName)

Completed in 713 milliseconds

1 2 3 4