Lines Matching defs:publicId
1294 """Mix-in class that supports the publicId and systemId attributes."""
1296 __slots__ = 'publicId', 'systemId'
1298 def _identified_mixin_init(self, publicId, systemId):
1299 self.publicId = publicId
1303 return self.publicId
1312 publicId = None
1338 notation = Notation(n.nodeName, n.publicId, n.systemId)
1342 entity = Entity(e.nodeName, e.publicId, e.systemId,
1357 if self.publicId:
1359 % (newl, self.publicId, newl, self.systemId))
1377 def __init__(self, name, publicId, systemId, notation):
1381 self._identified_mixin_init(publicId, systemId)
1412 def __init__(self, name, publicId, systemId):
1414 self._identified_mixin_init(publicId, systemId)
1478 def createDocumentType(self, qualifiedName, publicId, systemId):
1480 doctype.publicId = publicId
1731 def _create_entity(self, name, publicId, systemId, notationName):
1732 e = Entity(name, publicId, systemId, notationName)
1736 def _create_notation(self, name, publicId, systemId):
1737 n = Notation(name, publicId, systemId)
1936 node.name, node.publicId, node.systemId)
1942 notation = Notation(n.nodeName, n.publicId, n.systemId)
1948 entity = Entity(e.nodeName, e.publicId, e.systemId,