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

  /external/libchrome/base/files/
file_path.cc 124 const StringType::size_type last_dot = FinalExtensionSeparatorPosition(path); local
127 if (last_dot == StringType::npos || last_dot == 0U)
128 return last_dot;
131 path.rfind(FilePath::kExtensionSeparator, last_dot - 1);
133 path.find_last_of(FilePath::kSeparators, last_dot - 1,
139 return last_dot;
148 StringType extension(path, last_dot + 1);
151 if ((last_dot - penultimate_dot) <= 5U &&
152 (last_dot - penultimate_dot) > 1U)
    [all...]
  /art/dex2oat/
dex2oat.cc 1060 size_t last_dot = in.rfind('.'); local
    [all...]

Completed in 224 milliseconds