Searched refs:line_start_ (Results 1 – 3 of 3) sorted by relevance
/third_party/ninja/src/ |
D | build_log.cc | 209 : file_(file), buf_end_(buf_), line_start_(buf_), line_end_(NULL) { in LineReader() 218 if (line_start_ >= buf_end_ || !line_end_) { in ReadLine() 223 line_start_ = buf_; in ReadLine() 227 line_start_ = line_end_ + 1; in ReadLine() 230 line_end_ = (char*)memchr(line_start_, '\n', buf_end_ - line_start_); in ReadLine() 233 size_t already_consumed = line_start_ - buf_; in ReadLine() 235 memmove(buf_, line_start_, size_rest); in ReadLine() 239 line_start_ = buf_; in ReadLine() 240 line_end_ = (char*)memchr(line_start_, '\n', buf_end_ - line_start_); in ReadLine() 243 *line_start = line_start_; in ReadLine() [all …]
|
/third_party/boost/boost/xpressive/detail/core/ |
D | peeker.hpp | 78 , line_start_(false) in xpression_peeker() 96 return this->line_start_; in line_start() 141 this->line_start_ = true; in accept() 275 bool line_start_; member
|
/third_party/flatbuffers/include/flatbuffers/ |
D | idl.h | 693 line_start_(nullptr), in ParserState() 706 line_start_ = cursor_; in MarkNewLine() 711 FLATBUFFERS_ASSERT(cursor_ && line_start_ && cursor_ >= line_start_); in CursorPosition() 712 return static_cast<int64_t>(cursor_ - line_start_); in CursorPosition() 716 const char *line_start_; member
|