Home
last modified time | relevance | path

Searched refs:ends_with (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/
H A Dstring_view.h147 constexpr bool ends_with(basic_string_view sv) const noexcept;
148 constexpr bool ends_with(CharT ch) const noexcept;
149 constexpr bool ends_with(const CharT* s) const;
795 constexpr bool basic_string_view<CharT>::ends_with(basic_string_view sv) const noexcept in ends_with() function
801 constexpr bool basic_string_view<CharT>::ends_with(CharT ch) const noexcept in ends_with() function
807 constexpr bool basic_string_view<CharT>::ends_with(const CharT* s) const in ends_with() function
809 return ends_with(basic_string_view(s)); in ends_with()
H A Dstring.h752 bool ends_with(basic_string_view<CharT> sv) const noexcept in ends_with() function
754 return operator basic_string_view<CharT>().ends_with(sv); in ends_with()
757 bool ends_with(CharT ch) const noexcept in ends_with() function
759 return operator basic_string_view<CharT>().ends_with(ch); in ends_with()
762 bool ends_with(const CharT* s) const in ends_with() function
764 return operator basic_string_view<CharT>().ends_with(s); in ends_with()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/common/
H A Dmod.rs114 if temp.ends_with(&[CR]) { in trim_back_lwsp_if_end_with_lf()
206 if boundary.len() > 2 && boundary.starts_with(&[b'"']) && boundary.ends_with(&[b'"']) { in get_content_type_boundary()
H A Dpart.rs143 if bytes.ends_with(&[LF]) { in body_trim_crlf_once()
146 if bytes.ends_with(&[CR]) { in body_trim_crlf_once()
/ohos5.0/base/security/asset/frameworks/os_dependency/file/src/
H A Dcommon.rs38 if db_file_name.ends_with(DB_SUFFIX) { in get_user_dbs()
/ohos5.0/base/request/request/services/src/manage/
H A Dapp_state.rs77 if name.starts_with("com.") && name.ends_with(".hmos.hiviewx") { in process_died_callback()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Dproxy.rs247 || block_domain.ends_with(domain) in contains_domain()
252 } else if domain.ends_with(&block_domain) { in contains_domain()
H A Dtest_utils.rs97 while !&buf[..total].ends_with($end.as_bytes()) {
/ohos5.0/base/security/asset/services/core_service/src/common_event/
H A Dlistener.rs318 if db_name.ends_with(DB_SUFFIX) { in backup_de_db_if_accessible()
336 if db_name.ends_with(DB_SUFFIX) { in backup_ce_db_if_accessible()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
H A Dconnector.rs188 if resp.ends_with(b"\r\n\r\n") { in tunnel()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/
H A Dread_task.rs466 if output.ends_with('\n') { in poll_next_line()
468 if output.ends_with('\r') { in poll_next_line()
/ohos5.0/base/security/asset/services/db_operator/src/
H A Ddatabase_file_upgrade.rs116 if entry.file_name().to_string_lossy().ends_with(DB_SUFFIX) { in trigger_db_upgrade()
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dmaterial_impl.cpp65 if (!rest.ends_with(resourcePath)) { in IsGltfResource()
75 if (!extension.ends_with(".glb") && !extension.ends_with(".gltf")) { in IsGltfResource()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/
H A Dplugin_registry.cpp153 if (pluginFile.ends_with(libraryFileExtension)) { in GatherDynamicPlugins()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/
H A Dmod.rs372 if resp.ends_with(b"\r\n\r\n") { in tunnel()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dscene_util.cpp724 if (uri.ends_with(extension)) { in GetSceneLoader()