Home
last modified time | relevance | path

Searched refs:next_line (Results 1 – 18 of 18) 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/python/cpython3/Lib/
Dast.py258 next_line = ''
261 next_line += c
265 next_line += '\n'
268 lines.append(next_line)
269 next_line = ''
271 if next_line:
272 lines.append(next_line)
/external/minijail/
Dsyscall_filter.c544 char *next_line = NULL; in getmultiline() local
545 ssize_t next_ret = getmultiline(&next_line, &next_n, stream); in getmultiline()
547 free(next_line); in getmultiline()
556 memcpy(&line[ret + 1], next_line, next_ret + 1); in getmultiline()
557 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/igt-gpu-tools/runner/
Dresultgen.c83 static char *next_line(char *line, char *bufend) in next_line() function
125 one = next_line(current_pos, end); in find_line_after_last()
415 end = next_line(startline, bufend); in fill_from_output()
431 char *nexttest = next_line(end, bufend); in fill_from_output()
/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.py3262 next_line = raw[linenum + 1]
3263 if (next_line
3264 and Match(r'\s*}', next_line)
3265 and next_line.find('} else ') == -1):
3278 next_line = raw[linenum + 1]
3279 next_line_start = len(next_line) - len(next_line.lstrip())
3840 next_line = clean_lines.elided[endlinenum + 1]
3841 next_indent = GetIndentLevel(next_line)
3845 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/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/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/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()