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

  /external/chromium_org/ui/base/clipboard/
clipboard_util_win.cc 74 size_t newline_pos = str.find('\n'); local
75 if (newline_pos != string16::npos) {
76 url->assign(str, 0, newline_pos);
77 title->assign(str, newline_pos + 1, string16::npos);
  /external/open-vcdiff/gflags/src/
gflags_completions.cc 751 int newline_pos = static_cast<int>(newline) % FLAGS_tab_completion_columns; local
752 int missing_spaces = FLAGS_tab_completion_columns - newline_pos;
  /external/chromium_org/base/test/launcher/
test_launcher.cc 866 size_t newline_pos = full_output.find("\n", end_pos); local
867 if (newline_pos != std::string::npos)
868 end_pos = newline_pos + 1;
    [all...]

Completed in 620 milliseconds