• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:write

210 header.write(
238 output.write(
284 output.write(',\n')
287 output.write(' {"%s", xmlUCSIs%s}' % (block, name))
288 output.write('};\n\n')
290 output.write('static xmlUnicodeRange xmlUnicodeCats[] = {\n')
294 output.write(',\n')
297 output.write(' {"%s", xmlUCSIsCat%s}' % (name, name))
298 output.write('};\n\n')
323 output.write(pline + " };\n")
330 output.write(pline + "\n")
333 output.write(pline + " };\nstatic xmlChRangeGroup xml%sG = {%s,%s,%s,%s};\n\n"
337 output.write(
376 header.write("XMLPUBFUN int XMLCALL xmlUCSIs%s\t(int code);\n" % name)
377 output.write("/**\n * xmlUCSIs%s:\n * @code: UCS code point\n" % (name))
378 output.write(" *\n * Check whether the character is part of %s UCS Block\n"%
380 output.write(" *\n * Returns 1 if true 0 otherwise\n */\n");
381 output.write("int\nxmlUCSIs%s(int code) {\n return(" % name)
385 output.write(" ||\n ")
388 output.write("((code >= %s) && (code <= %s))" % (start, end))
389 output.write(");\n}\n\n")
391 header.write("\nXMLPUBFUN int XMLCALL xmlUCSIsBlock\t(int code, const char *block);\n\n")
392 output.write(
416 header.write("XMLPUBFUN int XMLCALL xmlUCSIsCat%s\t(int code);\n" % name)
417 output.write("/**\n * xmlUCSIsCat%s:\n * @code: UCS code point\n" % (name))
418 output.write(" *\n * Check whether the character is part of %s UCS Category\n"%
420 output.write(" *\n * Returns 1 if true 0 otherwise\n */\n");
421 output.write("int\nxmlUCSIsCat%s(int code) {\n" % name)
423 output.write(" return(xmlCharInRange((unsigned int)code, &xml%sG)"
430 output.write(" return(");
433 output.write(" ||\n ");
435 output.write("(code == %s)" % (hex(begin)))
437 output.write("((code >= %s) && (code <= %s))" % (
439 output.write(");\n}\n\n")
441 header.write("\nXMLPUBFUN int XMLCALL xmlUCSIsCat\t(int code, const char *cat);\n")
442 output.write(
467 header.write("""