Home
last modified time | relevance | path

Searched refs:nextpos (Results 1 – 2 of 2) sorted by relevance

/external/fonttools/Lib/fontTools/misc/
DpsLib.py53 _, nextpos = whitematch(self.buf, self.pos).span()
54 self.pos = nextpos
66 _, nextpos = commentmatch(buf, pos).span()
67 token = buf[pos:nextpos]
73 _, nextpos = m.span()
74 token = buf[pos:nextpos]
80 _, nextpos = m.span()
81 token = buf[pos:nextpos]
93 _, nextpos = m.span()
94 token = buf[pos:nextpos]
[all …]
/external/valgrind/coregrind/
Dm_main.c602 const HChar *nextpos; in main_process_cmd_line_options() local
611 nextpos = VG_(strchr)(startpos, ','); in main_process_cmd_line_options()
612 if (!nextpos) in main_process_cmd_line_options()
613 nextpos = startpos + VG_(strlen)(startpos); in main_process_cmd_line_options()
614 if (startpos != nextpos) { in main_process_cmd_line_options()
616 = VG_(malloc)("main.mpclo.2", nextpos - startpos + 1); in main_process_cmd_line_options()
618 nextpos - startpos); in main_process_cmd_line_options()
619 VG_(clo_error_markers)[m][nextpos - startpos] = '\0'; in main_process_cmd_line_options()
621 startpos = *nextpos ? nextpos + 1 : nextpos; in main_process_cmd_line_options()