Home
last modified time | relevance | path

Searched refs:next_line (Results 1 – 11 of 11) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_procmaps_linux.cc39 char *next_line = (char*)internal_memchr(current_, '\n', last - current_); in Next() local
40 if (next_line == 0) in Next()
41 next_line = last; in Next()
73 while (current_ < next_line && *current_ == ' ') in Next()
77 while (current_ < next_line) { in Next()
84 current_ = next_line + 1; in Next()
/external/libvncserver/utils/
Dgit2cl.pl181 my $next_line = substr ($this_line, $idx);
194 $next_line =~ s/^\s*//;
202 $next_line = $1 . $next_line if (defined ($1));
207 $next_line = $user_indent . $next_line;
212 unshift (@lines, $next_line);
/external/mesa3d/src/gallium/state_trackers/vega/
Dstroker.c634 const VGfloat *next_line, enum line_join_mode join) in create_joins() argument
639 next_line[0], next_line[1], next_line[2], next_line[3]); in create_joins()
642 if (floatsEqual(stroker->back1_x, next_line[0]) && in create_joins()
643 floatsEqual(stroker->back1_y, next_line[1])) in create_joins()
647 stroker_emit_line_to(stroker, next_line[0], next_line[1]); in create_joins()
653 enum intersection_type type = line_intersect(prev_line, next_line, isect); in create_joins()
661 VGfloat l2[4] = {next_line[2], in create_joins()
662 next_line[3], in create_joins()
663 next_line[0], in create_joins()
664 next_line[1]}; in create_joins()
[all …]
/external/valgrind/tests/
Ds390x_features.c166 if (*p == '\n') goto next_line; in get_host()
186 next_line: ; in get_host()
/external/markdown/markdown/extensions/
Dfootnotes.py239 next_line = lines[j]; break
244 if detab(next_line): # Yes, more work to do.
/external/e2fsprogs/misc/
De2initrd_helper.c356 goto next_line; in get_root_type()
363 next_line: in get_root_type()
/external/google-breakpad/src/common/solaris/
Ddump_symbols.cc382 struct LineInfo &next_line = func_info.line_info[k + 1]; in ComputeSizeAndRVA() local
383 line_info.size = next_line.rva_to_func - line_info.rva_to_func; in ComputeSizeAndRVA()
/external/compiler-rt/lib/sanitizer_common/scripts/
Dcpplint.py2281 next_line = raw[linenum + 1]
2282 if (next_line
2283 and Match(r'\s*}', next_line)
2284 and next_line.find('} else ') == -1):
3424 next_line = clean_lines.elided[linenum + 1]
3431 if not Search(r'^\s*}[\w\*,\s]*;', next_line):
/external/libvpx/libvpx/tools/
Dcpplint.py2618 next_line = raw[linenum + 1]
2619 if (next_line
2620 and Match(r'\s*}', next_line)
2621 and next_line.find('} else ') == -1):
4001 next_line = clean_lines.elided[linenum + 1]
4008 if not Search(r'^\s*}[\w\*,\s]*;', next_line):
/external/valgrind/coregrind/
Dm_machine.c671 if (*p == '\n') goto next_line; in VG_()
689 next_line: ; in VG_()
/external/v8/tools/
Dgrokdump.py2467 next_line = lines[i + 1]
2468 next_address = next_line[0]