Home
last modified time | relevance | path

Searched refs:next_line (Results 1 – 12 of 12) 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/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
Dmodify_srcu.awk66 ret = getline next_line;
79 $0 = $0 "\n" next_line;
/external/valgrind/tests/
Ds390x_features.c167 if (*p == '\n') goto next_line; in get_host()
187 next_line: ; in get_host()
/external/autotest/site_utils/
Dperf_compare.py245 next_line = p.stdout.readline().strip()
246 if not next_line and p.poll() != None:
248 logging.debug(next_line)
/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.c357 goto next_line; in get_root_type()
364 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.c609 if (*p == '\n') goto next_line; in VG_()
627 next_line: ; in VG_()
/external/v8/tools/
Dgrokdump.py2593 next_line = lines[i + 1]
2594 next_address = next_line[0]