Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/test/profile/
Dinstrprof-path.c28 int slashpos = strlen(prefix); in main() local
29 if (slashpos > 0) { in main()
30 --slashpos; in main()
31 if (prefix[slashpos] != '/' && prefix[slashpos] != '\\') in main()
35 if (strncmp(prefix, expected, slashpos)) in main()
/external/protobuf/src/google/protobuf/testing/
Dfile.cc136 string::size_type slashpos = path.find_last_of('/'); in RecursivelyCreateDir() local
137 if (slashpos == string::npos) { in RecursivelyCreateDir()
142 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()