Home
last modified time | relevance | path

Searched refs:line_end (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_line_reader.cpp56 const char* line_end = reinterpret_cast<const char*>( in GetNextLine() local
58 if (line_end != NULL) { in GetNextLine()
60 line_len_ = static_cast<size_t>(line_end + 1 - line); in GetNextLine()
Dcrazy_linker_proc_maps.cpp28 const char* line_end, in ParseProcMapsLine() argument
55 while (p < line_end && *p == separator) in ParseProcMapsLine()
62 static_cast<const char*>(memchr(p, separator, line_end - p)); in ParseProcMapsLine()
64 tok_end = line_end; in ParseProcMapsLine()
65 p = line_end; in ParseProcMapsLine()
/ndk/sources/host-tools/sed-4.2.1/sed/
Dfmt.c208 fmt (const char *line, const char *line_end, int max_length, FILE *output_file) in fmt() argument
211 end_of_parabuf = line_end; in fmt()
Dsed.h210 extern void fmt P_ ((const char *line, const char *line_end, int max_length, FILE *output_file));
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-death-test.cc496 const size_t line_end = output.find('\n', at); in FormatDeathTestOutput() local
498 if (line_end == ::std::string::npos) { in FormatDeathTestOutput()
502 ret += output.substr(at, line_end + 1 - at); in FormatDeathTestOutput()
503 at = line_end + 1; in FormatDeathTestOutput()