Home
last modified time | relevance | path

Searched refs:last_slash (Results 1 – 6 of 6) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_procmaps_test.cc36 const char *last_slash = strrchr(argv0, '/'); in TEST() local
37 const char *binary_name = last_slash ? last_slash + 1 : argv0; in TEST()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_name_resolver.cc122 string::size_type last_slash = file->name().find_last_of('/'); in GetFileDefaultImmutableClassName() local
123 if (last_slash == string::npos) { in GetFileDefaultImmutableClassName()
126 basename = file->name().substr(last_slash + 1); in GetFileDefaultImmutableClassName()
/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_helpers.cc129 string::size_type last_slash = file->name().find_last_of('/'); in FileClassName() local
130 if (last_slash == string::npos) { in FileClassName()
133 basename = file->name().substr(last_slash + 1); in FileClassName()
/external/protobuf/src/google/protobuf/compiler/javanano/
Djavanano_helpers.cc176 string::size_type last_slash = file->name().find_last_of('/'); in FileClassName() local
177 if (last_slash == string::npos) { in FileClassName()
180 basename = file->name().substr(last_slash + 1); in FileClassName()
/external/v8/src/
Dd8-posix.cc595 char* last_slash = strrchr(directory, '/'); in mkdirp() local
596 if (last_slash == NULL) { in mkdirp()
600 *last_slash = 0; in mkdirp()
602 *last_slash = '/'; in mkdirp()
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc2870 const char *last_slash = strrchr(program_path, '/'); in GetPathToLoadable() local
2871 ASSERT_NE(nullptr, last_slash); in GetPathToLoadable()
2872 size_t dir_len = (size_t)(last_slash - program_path); in GetPathToLoadable()