HomeSort by relevance Sort by last modified time
    Searched refs:line_end_pos (Results 1 - 2 of 2) sorted by null

  /external/chromium/webkit/glue/
multipart_response_delegate.cc 216 size_t line_end_pos = data_.find('\n'); local
217 while (line_end_pos != std::string::npos) {
219 if (line_end_pos > line_start_pos && data_[line_end_pos - 1] == '\r') {
221 --line_end_pos;
225 if (line_start_pos == line_end_pos) {
227 line_end_pos += line_feed_increment;
231 line_start_pos = line_end_pos + line_feed_increment;
232 line_end_pos = data_.find('\n', line_start_pos);
235 if (line_end_pos == std::string::npos
    [all...]
  /external/chromium_org/webkit/child/
multipart_response_delegate.cc 216 size_t line_end_pos = data_.find('\n'); local
217 while (line_end_pos != std::string::npos) {
219 if (line_end_pos > line_start_pos && data_[line_end_pos - 1] == '\r') {
221 --line_end_pos;
225 if (line_start_pos == line_end_pos) {
227 line_end_pos += line_feed_increment;
231 line_start_pos = line_end_pos + line_feed_increment;
232 line_end_pos = data_.find('\n', line_start_pos);
235 if (line_end_pos == std::string::npos
    [all...]

Completed in 30 milliseconds