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

  /external/webkit/WebKitTools/Scripts/webkitpy/
grammar.py 48 def join_with_separators(list_of_strings, separator=', ', last_separator=', and '):
53 return "%s%s%s" % (separator.join(list_of_strings[:-1]), last_separator, list_of_strings[-1])
  /external/chromium/base/
file_util.cc 65 const FilePath::StringType::size_type last_separator = local
69 (last_separator != std::wstring::npos && last_dot < last_separator)) {
94 const FilePath::StringType::size_type last_separator = local
98 if ((last_dot > last_separator ||
99 last_separator == FilePath::StringType::npos) &&
file_path.cc 238 StringType::size_type last_separator = local
241 if (last_separator == StringType::npos) {
244 } else if (last_separator == letter + 1) {
247 } else if (last_separator == letter + 2 &&
252 } else if (last_separator != 0) {
254 new_path.path_.resize(last_separator);
276 StringType::size_type last_separator = local
279 if (last_separator != StringType::npos &&
280 last_separator < new_path.path_.length() - 1) {
281 new_path.path_.erase(0, last_separator + 1)
    [all...]

Completed in 1268 milliseconds