Home
last modified time | relevance | path

Searched refs:lastSlash (Results 1 - 9 of 9) sorted by relevance

/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dpath_tools.cpp174 auto lastSlash = pathIn.find_last_of('/'); in SplitPath() local
175 if (lastSlash != string_view::npos) { in SplitPath()
176 filename = pathIn.substr(lastSlash + 1); in SplitPath()
177 path = pathIn.substr(0, lastSlash + 1); in SplitPath()
/foundation/multimedia/media_library/frameworks/services/media_multistages_capture/src/utils/
H A Dfile_utils.cpp160 size_t lastSlash = path.rfind('/'); in DealPicture() local
161 CHECK_AND_RETURN_RET_LOG(lastSlash != string::npos && path.size() > (lastSlash + 1), E_INVALID_VALUES, in DealPicture()
163 string tempOutputPath = path.substr(0, lastSlash) + "/temp_" + path.substr(lastSlash + 1); in DealPicture()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/stream/src/
H A Dfile_packer_stream.cpp35 int lastSlash = static_cast<int>(filePath.rfind("/")); in FilePackerStream() local
38 if (lastSlash >= 0) { in FilePackerStream()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dmedialibrary_rdb_utils.cpp344 size_t lastSlash = filePath.rfind('/'); in GetFileName() local
345 if (lastSlash == string::npos) { in GetFileName()
348 if (filePath.size() > (lastSlash + 1)) { in GetFileName()
349 fileName = filePath.substr(lastSlash + 1); in GetFileName()
H A Dmedialibrary_analysis_album_operations.cpp156 size_t lastSlash = path.find_last_of('/'); in GetCoverUri() local
157 if (lastSlash != string::npos && path.size() > (lastSlash + 1)) { in GetCoverUri()
158 fileName = path.substr(lastSlash + 1); in GetCoverUri()
H A Dmedialibrary_photo_operations.cpp3128 size_t lastSlash = outputPath.rfind('/'); in AddFiltersToPhoto() local
3129 CHECK_AND_RETURN_RET_LOG(lastSlash != string::npos && outputPath.size() > (lastSlash + 1), E_INVALID_VALUES, in AddFiltersToPhoto()
3131 string tempOutputPath = outputPath.substr(0, lastSlash) + in AddFiltersToPhoto()
3132 "/filters_" + photoStatus + outputPath.substr(lastSlash + 1); in AddFiltersToPhoto()
3170 size_t lastSlash = outputPath.rfind('/'); in AddFiltersToPicture() local
3171 CHECK_AND_RETURN_RET_LOG(lastSlash != string::npos && outputPath.size() > (lastSlash + 1), E_INVALID_VALUES, in AddFiltersToPicture()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/media_library_helper/src/
H A Dmedia_file_utils.cpp363 size_t lastSlash = filePath.rfind('/'); in GetFileName() local
364 if (lastSlash != string::npos) { in GetFileName()
365 if (filePath.size() > (lastSlash + 1)) { in GetFileName()
366 fileName = filePath.substr(lastSlash + 1); in GetFileName()
/foundation/filemanagement/dfs_service/test/unittests/cloud_disk/mock/
H A Dfile_operations_cloud_mock.cpp134 size_t lastSlash = nameStr.find_last_of("_"); in LookupRecycledFile() local
135 metaBase.name = nameStr.substr(0, lastSlash); in LookupRecycledFile()
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/cloud_disk/
H A Dfile_operations_cloud.cpp185 size_t lastSlash = nameStr.find_last_of("_"); in LookupRecycledFile() local
186 metaBase.name = nameStr.substr(0, lastSlash); in LookupRecycledFile()

Completed in 23 milliseconds