Lines Matching refs:cmt_pos
355 size_t cmt_pos = curr_line_->buffer.find_first_of("\"#", 0);
356 if (cmt_pos != std::string::npos) {
358 if (cmt_pos != 0 && curr_line_->buffer[cmt_pos - 1] != '\\' && curr_line_->buffer[cmt_pos] == '\"') {
360 } else if (curr_line_->buffer[cmt_pos] == PARSE_COMMENT_MARKER && !inside_str_lit) {
363 } while ((cmt_pos = curr_line_->buffer.find_first_of("\"#", cmt_pos + 1)) != std::string::npos);
366 if (cmt_pos != std::string::npos) {
367 curr_line_->end = cmt_pos;