Home
last modified time | relevance | path

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

/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/
H A Dmime_type_mgr.cpp85 auto suffixIndex = uri.rfind('.'); in GetUriSuffix() local
86 if (suffixIndex == std::string::npos) { in GetUriSuffix()
90 suffix = uri.substr(suffixIndex); in GetUriSuffix()
/ohos5.0/foundation/graphic/graphic_3d/3d_widget_adapter/src/
H A Dwidget_adapter.cpp129 auto suffixIndex = fileName.find_last_of("."); in UpdateShaderPath() local
130 if (suffixIndex != std::string::npos) { in UpdateShaderPath()
/ohos5.0/foundation/filemanagement/user_file_service/interfaces/kits/picker/
H A Dpicker.js545 this.suffixIndex = saveResult.suffix;
551 let index = this.suffixIndex;
552 this.suffixIndex = -1;
684 this.suffixIndex = -1;
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dimplicit_start_processor.cpp292 auto suffixIndex = uri.rfind('.'); in MatchTypeAndUri() local
293 if (suffixIndex == std::string::npos) { in MatchTypeAndUri()
297 type = uri.substr(suffixIndex); in MatchTypeAndUri()
300 auto suffixDlpIndex = uri.rfind('.', suffixIndex - 1); in MatchTypeAndUri()
305 type = uri.substr(suffixDlpIndex, suffixIndex - suffixDlpIndex); in MatchTypeAndUri()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_data_mgr.cpp7069 auto suffixIndex = uri.rfind('.'); in MatchPrivateType() local
7070 if (suffixIndex == std::string::npos) { in MatchPrivateType()
7073 std::string suffix = uri.substr(suffixIndex + 1); in MatchPrivateType()