Searched refs:slash_index (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/chrome/tools/convert_dict/
H A Ddic_reader.cc25 size_t slash_index = line.size(); local
28 slash_index = i;
37 std::string word = line.substr(0, slash_index);
42 if (slash_index < line.size() - 1)
43 output->push_back(line.substr(slash_index + 1));
H A Daff_reader.cc243 size_t slash_index = part.find('/'); local
244 if (slash_index != std::string::npos && !has_indexed_affixes()) {
256 std::string before_flags = part.substr(0, slash_index + 1);
261 base::SplitString(part.substr(slash_index + 1), ' ', &after_slash);
/external/chromium_org/ui/base/text/
H A Dtext_elider.cc564 const size_t slash_index = display_url_.find(sort_host_, prefix_end_); local
565 if (slash_index == string16::npos) {
569 return display_url_.substr(slash_index + sort_host_.length());

Completed in 76 milliseconds