Searched refs:pline (Results 1 – 3 of 3) sorted by relevance
/external/libxml2/ |
D | genChRanges.py | 328 pline = " " variable 330 pline += " 0x%02x," % Functs[f][0][n] 331 if len(pline) > 72: 332 output.write(pline + "\n") 333 pline = " " variable 334 output.write(pline + " 0x%02x };\n\n" % Functs[f][0][255]) 355 pline = "#define %s_ch(c)" % f variable 357 ntab = 4 - (len(pline)) / 8 363 pline = pline + just + "(" variable 366 pline += " || \\\n\t\t\t\t " [all …]
|
D | genUnicode.py | 315 pline = "static const xmlChSRange xml%sS[] = {" % name variable 318 pline += ", " 323 output.write(pline + " };\n") 324 pline = "static const xmlChLRange xml%sL[] = {" % name variable 327 pline += ", " 329 if len(pline) > 60: 330 output.write(pline + "\n") 331 pline = " " variable 332 pline += "{%s, %s}" % (hex(low), hex(high)) 333 output.write(pline + " };\nstatic xmlChRangeGroup xml%sG = {%s,%s,%s,%s};\n\n"
|
/external/toybox/toys/posix/ |
D | sed.c | 274 static void walk_pattern(char **pline, long plen) in walk_pattern() argument 291 if (pline) { in walk_pattern() 292 TT.nextline = *pline; in walk_pattern() 294 *pline = 0; in walk_pattern() 332 } else if (lm == TT.count || (lm == -1 && !pline)) logrus->hit++; in walk_pattern() 464 if (pline) { in walk_pattern() 480 if (pline) *pline = (void *)1; in walk_pattern() 653 static void do_lines(int fd, char *name, void (*call)(char **pline, long len)) in do_lines() argument 755 static void jewel_of_judgement(char **pline, long len) in jewel_of_judgement() argument 761 line = errstart = pline ? *pline : ""; in jewel_of_judgement() [all …]
|