Home
last modified time | relevance | path

Searched refs:next_line (Results 1 – 17 of 17) 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/grpc-grpc/src/objective-c/
Dchange-comments.py71 def next_line(predicate): function
101 while next_line(isnt_comment):
107 while (next_line(is_comment)):
/external/minijail/
Dsyscall_filter.c523 char *next_line = NULL; in getmultiline() local
524 ssize_t next_ret = getmultiline(&next_line, &next_n, stream); in getmultiline()
526 free(next_line); in getmultiline()
535 memcpy(&line[ret + 1], next_line, next_ret + 1); in getmultiline()
536 free(next_line); in getmultiline()
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
Dmodify_srcu.awk67 ret = getline next_line;
80 $0 = $0 "\n" next_line;
/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/bcc/src/cc/frontends/b/
Dlexer.ll44 \n { if (next_line()) { return save(Tok::TSEMI, true); } }
45 "//".*\n { if (next_line()) { return save(Tok::TSEMI, true); } }
Dlexer.h70 bool next_line() { in next_line() function
/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/google-styleguide/cpplint/
Dcpplint.py3256 next_line = raw[linenum + 1]
3257 if (next_line
3258 and Match(r'\s*}', next_line)
3259 and next_line.find('} else ') == -1):
3272 next_line = raw[linenum + 1]
3273 next_line_start = len(next_line) - len(next_line.lstrip())
3834 next_line = clean_lines.elided[endlinenum + 1]
3835 next_indent = GetIndentLevel(next_line)
3839 if (if_match and Match(r'\s*else\b', next_line)
/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/libaom/libaom/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/deqp/external/openglcts/modules/common/
DglcViewportArrayTests.cpp675 const GLchar* next_line = strchr(source, '\n'); in printShaderSource() local
677 if (0 != next_line) in printShaderSource()
679 next_line += 1; in printShaderSource()
680 line.assign(source, next_line - source); in printShaderSource()
692 source = next_line; in printShaderSource()
/external/deqp/external/openglcts/modules/gl/
Dgl4cShadingLanguage420PackTests.cpp18534 const GLchar* next_line = strchr(part, '\n'); in printShaderSource() local
18536 if (0 != next_line) in printShaderSource()
18538 next_line += 1; in printShaderSource()
18539 line.assign(part, next_line - part); in printShaderSource()
18551 part = next_line; in printShaderSource()
/external/v8/tools/
Dgrokdump.py3080 next_line = lines[i + 1]
3081 next_address = next_line[0]