Home
last modified time | relevance | path

Searched refs:pline (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/libxml/src/
DgenUnicode.py315 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/qemu/android/utils/
Dsystem.c143 win32_strsep(char** pline, const char* delim) in win32_strsep() argument
145 char* line = *pline; in win32_strsep()
169 *pline = p; in win32_strsep()
Dsystem.h105 extern char* win32_strsep(char** pline, const char* delim);