Home | History | Annotate | Download | only in libxml2

Lines Matching defs:pline

315           pline = "static const xmlChSRange xml%sS[] = {" % name
318 pline += ", "
323 output.write(pline + " };\n")
324 pline = "static const xmlChLRange xml%sL[] = {" % name
327 pline += ", "
329 if len(pline) > 60:
330 output.write(pline + "\n")
331 pline = " "
332 pline += "{%s, %s}" % (hex(low), hex(high))
333 output.write(pline + " };\nstatic xmlChRangeGroup xml%sG = {%s,%s,%s,%s};\n\n"