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

  /external/chromium_org/base/files/
file_path.cc 127 const StringType::size_type penultimate_dot = local
133 if (penultimate_dot == StringType::npos ||
135 penultimate_dot < last_separator)) {
140 StringType extension(path, penultimate_dot + 1);
142 return penultimate_dot;
148 if ((last_dot - penultimate_dot) <= 5U &&
149 (last_dot - penultimate_dot) > 1U) {
150 return penultimate_dot;
    [all...]
  /external/chromium/base/
file_path.cc 146 const StringType::size_type penultimate_dot = local
151 if (penultimate_dot != StringType::npos &&
153 penultimate_dot > last_separator) &&
154 last_dot - penultimate_dot <= 5U &&
155 last_dot - penultimate_dot > 1U) {
156 return penultimate_dot;
    [all...]

Completed in 33 milliseconds