Home | History | Annotate | Download | only in core

Lines Matching refs:cur_pos

314       size_t cur_pos = 0;
317 while ( (next_pos = src.find_first_of('\n', cur_pos)) != std::string::npos) {
318 ALOGE("%03zd : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());
319 cur_pos = next_pos + 1;
322 ALOGE("%03zu : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());