Searched refs:starts_with (Results 1 – 11 of 11) sorted by relevance
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/ |
| H A D | predicate.hpp | 57 inline bool starts_with( in starts_with() function 91 inline bool starts_with( in starts_with() function 95 return ::boost::algorithm::starts_with(Input, Test, is_equal()); in starts_with() 117 return ::boost::algorithm::starts_with(Input, Test, is_iequal(Loc)); in istarts_with() 460 using algorithm::starts_with;
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/ |
| H A D | 0010-riscv-Set-march-correctly.patch | 32 - if arch.starts_with("64") { 33 + if target.contains("linux") && arch.starts_with("64") { 36 + } else if target.contains("linux") && arch.starts_with("32") { 39 + } else if arch.starts_with("64") {
|
| /OK3568_Linux_fs/kernel/arch/arm64/kvm/hyp/nvhe/ |
| H A D | gen-hyprel.c | 210 static inline bool starts_with(const char *str, const char *prefix) in starts_with() function 367 if (!starts_with(sh_orig_name, HYP_SECTION_PREFIX)) in emit_rela_section()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | string_view | 146 constexpr bool starts_with(basic_string_view s) const noexcept; // C++2a 147 constexpr bool starts_with(charT c) const noexcept; // C++2a 148 constexpr bool starts_with(const charT* s) const; // C++2a 580 bool starts_with(basic_string_view __s) const _NOEXCEPT 584 bool starts_with(value_type __c) const _NOEXCEPT 588 bool starts_with(const value_type* __s) const _NOEXCEPT 589 { return starts_with(basic_string_view(__s)); }
|
| H A D | string | 320 bool starts_with(basic_string_view<charT, traits> sv) const noexcept; // C++2a 321 bool starts_with(charT c) const noexcept; // C++2a 322 bool starts_with(const charT* s) const; // C++2a 1397 bool starts_with(__self_view __sv) const _NOEXCEPT 1398 { return __self_view(data(), size()).starts_with(__sv); } 1401 bool starts_with(value_type __c) const _NOEXCEPT 1405 bool starts_with(const value_type* __s) const _NOEXCEPT 1406 { return starts_with(__self_view(__s)); }
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | string_view | 146 constexpr bool starts_with(basic_string_view s) const noexcept; // C++2a 147 constexpr bool starts_with(charT c) const noexcept; // C++2a 148 constexpr bool starts_with(const charT* s) const; // C++2a 580 bool starts_with(basic_string_view __s) const _NOEXCEPT 584 bool starts_with(value_type __c) const _NOEXCEPT 588 bool starts_with(const value_type* __s) const _NOEXCEPT 589 { return starts_with(basic_string_view(__s)); }
|
| H A D | string | 320 bool starts_with(basic_string_view<charT, traits> sv) const noexcept; // C++2a 321 bool starts_with(charT c) const noexcept; // C++2a 322 bool starts_with(const charT* s) const; // C++2a 1397 bool starts_with(__self_view __sv) const _NOEXCEPT 1398 { return __self_view(data(), size()).starts_with(__sv); } 1401 bool starts_with(value_type __c) const _NOEXCEPT 1405 bool starts_with(const value_type* __s) const _NOEXCEPT 1406 { return starts_with(__self_view(__s)); }
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | string_view | 327 starts_with(basic_string_view __x) const noexcept 331 starts_with(_CharT __x) const noexcept 335 starts_with(const _CharT* __x) const noexcept 336 { return this->starts_with(basic_string_view(__x)); }
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | string_view | 327 starts_with(basic_string_view __x) const noexcept 331 starts_with(_CharT __x) const noexcept 335 starts_with(const _CharT* __x) const noexcept 336 { return this->starts_with(basic_string_view(__x)); }
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/ |
| H A D | basic_string.h | 3058 starts_with(basic_string_view<_CharT, _Traits> __x) const noexcept in _GLIBCXX_VISIBILITY() 3059 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 3062 starts_with(_CharT __x) const noexcept in _GLIBCXX_VISIBILITY() 3063 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 3066 starts_with(const _CharT* __x) const noexcept in _GLIBCXX_VISIBILITY() 3067 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 5968 starts_with(basic_string_view<_CharT, _Traits> __x) const noexcept in _GLIBCXX_VISIBILITY() 5969 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 5972 starts_with(_CharT __x) const noexcept in _GLIBCXX_VISIBILITY() 5973 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/ |
| H A D | basic_string.h | 3058 starts_with(basic_string_view<_CharT, _Traits> __x) const noexcept in _GLIBCXX_VISIBILITY() 3059 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 3062 starts_with(_CharT __x) const noexcept in _GLIBCXX_VISIBILITY() 3063 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 3066 starts_with(const _CharT* __x) const noexcept in _GLIBCXX_VISIBILITY() 3067 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 5968 starts_with(basic_string_view<_CharT, _Traits> __x) const noexcept in _GLIBCXX_VISIBILITY() 5969 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() 5972 starts_with(_CharT __x) const noexcept in _GLIBCXX_VISIBILITY() 5973 { return __sv_type(this->data(), this->size()).starts_with(__x); } in _GLIBCXX_VISIBILITY() [all …]
|