Home | History | Annotate | Download | only in sax

Lines Matching refs:def

17 def __dict_replace(s, d):
23 def escape(data, entities={}):
39 def unescape(data, entities={}):
53 def quoteattr(data, entities={}):
77 def _gettextwriter(out, encoding):
102 def write(self, s):
111 def __init__(self, out=None, encoding="iso-8859-1"):
121 def _qname(self, name):
140 def startDocument(self):
144 def endDocument(self):
147 def startPrefixMapping(self, prefix, uri):
152 def endPrefixMapping(self, prefix):
156 def startElement(self, name, attrs):
162 def endElement(self, name):
165 def startElementNS(self, name, qname, attrs):
179 def endElementNS(self, name, qname):
182 def characters(self, content):
185 def ignorableWhitespace(self, content):
188 def processingInstruction(self, target, data):
200 def __init__(self, parent = None):
206 def error(self, exception):
209 def fatalError(self, exception):
212 def warning(self, exception):
217 def setDocumentLocator(self, locator):
220 def startDocument(self):
223 def endDocument(self):
226 def startPrefixMapping(self, prefix, uri):
229 def endPrefixMapping(self, prefix):
232 def startElement(self, name, attrs):
235 def endElement(self, name):
238 def startElementNS(self, name, qname, attrs):
241 def endElementNS(self, name, qname):
244 def characters(self, content):
247 def ignorableWhitespace(self, chars):
250 def processingInstruction(self, target, data):
253 def skippedEntity(self, name):
258 def notationDecl(self, name, publicId, systemId):
261 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
266 def resolveEntity(self, publicId, systemId):
271 def parse(self, source):
278 def setLocale(self, locale):
281 def getFeature(self, name):
284 def setFeature(self, name, state):
287 def getProperty(self, name):
290 def setProperty(self, name, value):
295 def getParent(self):
298 def setParent(self, parent):
303 def prepare_input_source(source, base = ""):