Home
last modified time | relevance | path

Searched refs:slashpos (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/testing/
Dfile.cc106 string::size_type slashpos = path.find_last_of('/'); in RecursivelyCreateDir() local
107 if (slashpos == string::npos) { in RecursivelyCreateDir()
112 return RecursivelyCreateDir(path.substr(0, slashpos), mode) && in RecursivelyCreateDir()
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
Dfile.cc106 string::size_type slashpos = path.find_last_of('/'); in RecursivelyCreateDir() local
107 if (slashpos == string::npos) { in RecursivelyCreateDir()
112 return RecursivelyCreateDir(path.substr(0, slashpos), mode) && in RecursivelyCreateDir()
/external/zopfli/src/zopflipng/
Dzopflipng_bin.cc31 size_t slashpos = filename.find_last_of("/\\"); in GetFileNameParts() local
33 if (slashpos == npos) { in GetFileNameParts()
37 *dir = filename.substr(0, slashpos + 1); in GetFileNameParts()
38 nodir = filename.substr(slashpos + 1); in GetFileNameParts()
/external/chromium_org/content/browser/frame_host/
Dnavigation_entry_impl.cc191 base::string16::size_type slashpos = title.rfind('/'); in GetTitleForDisplay() local
192 if (slashpos != base::string16::npos) in GetTitleForDisplay()
193 title = title.substr(slashpos + 1); in GetTitleForDisplay()