Home | History | Annotate | Download | only in core

Lines Matching defs:cur_pos

321       unsigned int cur_pos = 0;
324 while ( (next_pos = src.find_first_of('\n', cur_pos)) != std::string::npos) {
325 ALOGE("%03d : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());
326 cur_pos = next_pos + 1;
329 ALOGE("%03d : %s", line_number, src.substr(cur_pos, next_pos-cur_pos).c_str());