Home
last modified time | relevance | path

Searched refs:dotIndex (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/multimedia/ringtone_library/services/ringtone_scanner/src/
H A Dringtone_scanner_utils.cpp58 size_t dotIndex = path.rfind("."); in GetFileExtension() local
59 if (dotIndex != string::npos) { in GetFileExtension()
60 return path.substr(dotIndex + 1); in GetFileExtension()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_scanner/src/scanner/
H A Dscanner_utils.cpp63 size_t dotIndex = path.rfind("."); in GetFileExtension() local
64 if (dotIndex != string::npos) { in GetFileExtension()
65 return path.substr(dotIndex + 1); in GetFileExtension()
/ohos5.0/foundation/multimedia/ringtone_library/services/utils/src/
H A Dringtone_file_utils.cpp667 size_t dotIndex = path.rfind("."); in GetFileExtension() local
668 if (dotIndex != string::npos) { in GetFileExtension()
669 return path.substr(dotIndex + 1); in GetFileExtension()
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dmaterial_impl.cpp399 size_t dotIndex = textureSlotName.find('.'); in BindTextureSlot() local
400 if (dotIndex != BASE_NS::string_view::npos && dotIndex != 0) { in BindTextureSlot()
401 textureSlotName = textureSlotName.substr(0, dotIndex); in BindTextureSlot()
/ohos5.0/foundation/filemanagement/dfs_service/services/clouddisk_database/src/
H A Dclouddisk_rdbstore.cpp293 size_t dotIndex = fileName.rfind("."); in GetFileExtension() local
294 if (dotIndex != string::npos) { in GetFileExtension()
295 extension = fileName.substr(dotIndex + 1); in GetFileExtension()