Home
last modified time | relevance | path

Searched refs:__str (Results 1 – 25 of 90) sorted by relevance

1234

/OK3568_Linux_fs/kernel/arch/mips/include/asm/
H A Dsim.h16 #define __str(x) __str2(x) macro
29 "sw\t$16,"__str(PT_R16)"($29)\t\t\t# save_static_function\n\t" \
30 "sw\t$17,"__str(PT_R17)"($29)\n\t" \
31 "sw\t$18,"__str(PT_R18)"($29)\n\t" \
32 "sw\t$19,"__str(PT_R19)"($29)\n\t" \
33 "sw\t$20,"__str(PT_R20)"($29)\n\t" \
34 "sw\t$21,"__str(PT_R21)"($29)\n\t" \
35 "sw\t$22,"__str(PT_R22)"($29)\n\t" \
36 "sw\t$23,"__str(PT_R23)"($29)\n\t" \
37 "sw\t$30,"__str(PT_R30)"($29)\n\t" \
[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 Dquoted_string.h55 _Quoted_string(_String __str, _CharT __del, _CharT __esc) in _GLIBCXX_VISIBILITY()
56 : _M_string(__str), _M_delim{__del}, _M_escape{__esc} in _GLIBCXX_VISIBILITY()
71 _Quoted_string(basic_string_view<_CharT, _Traits> __str, in _GLIBCXX_VISIBILITY()
73 : _M_string(__str), _M_delim{__del}, _M_escape{__esc} in _GLIBCXX_VISIBILITY()
94 const _Quoted_string<const _CharT*, _CharT>& __str) in _GLIBCXX_VISIBILITY()
97 __ostr << __str._M_delim; in _GLIBCXX_VISIBILITY()
98 for (const _CharT* __c = __str._M_string; *__c; ++__c) in _GLIBCXX_VISIBILITY()
100 if (*__c == __str._M_delim || *__c == __str._M_escape) in _GLIBCXX_VISIBILITY()
101 __ostr << __str._M_escape; in _GLIBCXX_VISIBILITY()
104 __ostr << __str._M_delim; in _GLIBCXX_VISIBILITY()
[all …]
H A Dbasic_string.h456 basic_string(const basic_string& __str) in _GLIBCXX_VISIBILITY()
458 _Alloc_traits::_S_select_on_copy(__str._M_get_allocator())) in _GLIBCXX_VISIBILITY()
459 { _M_construct(__str._M_data(), __str._M_data() + __str.length()); } in _GLIBCXX_VISIBILITY()
469 basic_string(const basic_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
473 const _CharT* __start = __str._M_data() in _GLIBCXX_VISIBILITY()
474 + __str._M_check(__pos, "basic_string::basic_string"); in _GLIBCXX_VISIBILITY()
475 _M_construct(__start, __start + __str._M_limit(__pos, npos)); in _GLIBCXX_VISIBILITY()
484 basic_string(const basic_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
488 const _CharT* __start = __str._M_data() in _GLIBCXX_VISIBILITY()
489 + __str._M_check(__pos, "basic_string::basic_string"); in _GLIBCXX_VISIBILITY()
[all …]
H A Dstring_view.tcc48 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find() argument
50 __glibcxx_requires_string_len(__str, __n); in find()
58 if (traits_type::eq(this->_M_str[__pos], __str[0]) in find()
60 __str + 1, __n - 1) == 0) in find()
85 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind() argument
87 __glibcxx_requires_string_len(__str, __n); in rfind()
94 if (traits_type::compare(this->_M_str + __pos, __str, __n) == 0) in rfind()
122 find_first_of(const _CharT* __str, size_type __pos, in find_first_of() argument
125 __glibcxx_requires_string_len(__str, __n); in find_first_of()
128 const _CharT* __p = traits_type::find(__str, __n, in find_first_of()
[all …]
H A Dbasic_string.tcc255 _M_assign(const basic_string& __str) in _M_assign() argument
257 if (this != &__str) in _M_assign()
259 const size_type __rsize = __str.length(); in _M_assign()
272 this->_S_copy(_M_data(), __str._M_data(), __rsize); in _M_assign()
612 basic_string(const basic_string& __str)
613 : _M_dataplus(__str._M_rep()->_M_grab(_Alloc(__str.get_allocator()),
614 __str.get_allocator()),
615 __str.get_allocator())
626 basic_string(const basic_string& __str, size_type __pos, const _Alloc& __a)
627 : _M_dataplus(_S_construct(__str._M_data()
[all …]
H A Dfs_path.h141 _S_range_begin(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
142 { return __str.data(); } in _GLIBCXX_VISIBILITY()
146 _S_range_end(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
147 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
151 _S_range_begin(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
152 { return __str.data(); } in _GLIBCXX_VISIBILITY()
156 _S_range_end(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
157 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
506 std::basic_string<_CharT> __str; in _GLIBCXX_VISIBILITY()
508 __str.push_back(__ch); in _GLIBCXX_VISIBILITY()
[all …]
/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 Dquoted_string.h55 _Quoted_string(_String __str, _CharT __del, _CharT __esc) in _GLIBCXX_VISIBILITY()
56 : _M_string(__str), _M_delim{__del}, _M_escape{__esc} in _GLIBCXX_VISIBILITY()
71 _Quoted_string(basic_string_view<_CharT, _Traits> __str, in _GLIBCXX_VISIBILITY()
73 : _M_string(__str), _M_delim{__del}, _M_escape{__esc} in _GLIBCXX_VISIBILITY()
94 const _Quoted_string<const _CharT*, _CharT>& __str) in _GLIBCXX_VISIBILITY()
97 __ostr << __str._M_delim; in _GLIBCXX_VISIBILITY()
98 for (const _CharT* __c = __str._M_string; *__c; ++__c) in _GLIBCXX_VISIBILITY()
100 if (*__c == __str._M_delim || *__c == __str._M_escape) in _GLIBCXX_VISIBILITY()
101 __ostr << __str._M_escape; in _GLIBCXX_VISIBILITY()
104 __ostr << __str._M_delim; in _GLIBCXX_VISIBILITY()
[all …]
H A Dbasic_string.h456 basic_string(const basic_string& __str) in _GLIBCXX_VISIBILITY()
458 _Alloc_traits::_S_select_on_copy(__str._M_get_allocator())) in _GLIBCXX_VISIBILITY()
459 { _M_construct(__str._M_data(), __str._M_data() + __str.length()); } in _GLIBCXX_VISIBILITY()
469 basic_string(const basic_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
473 const _CharT* __start = __str._M_data() in _GLIBCXX_VISIBILITY()
474 + __str._M_check(__pos, "basic_string::basic_string"); in _GLIBCXX_VISIBILITY()
475 _M_construct(__start, __start + __str._M_limit(__pos, npos)); in _GLIBCXX_VISIBILITY()
484 basic_string(const basic_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
488 const _CharT* __start = __str._M_data() in _GLIBCXX_VISIBILITY()
489 + __str._M_check(__pos, "basic_string::basic_string"); in _GLIBCXX_VISIBILITY()
[all …]
H A Dstring_view.tcc48 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find() argument
50 __glibcxx_requires_string_len(__str, __n); in find()
58 if (traits_type::eq(this->_M_str[__pos], __str[0]) in find()
60 __str + 1, __n - 1) == 0) in find()
85 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind() argument
87 __glibcxx_requires_string_len(__str, __n); in rfind()
94 if (traits_type::compare(this->_M_str + __pos, __str, __n) == 0) in rfind()
122 find_first_of(const _CharT* __str, size_type __pos, in find_first_of() argument
125 __glibcxx_requires_string_len(__str, __n); in find_first_of()
128 const _CharT* __p = traits_type::find(__str, __n, in find_first_of()
[all …]
H A Dbasic_string.tcc255 _M_assign(const basic_string& __str) in _M_assign() argument
257 if (this != &__str) in _M_assign()
259 const size_type __rsize = __str.length(); in _M_assign()
272 this->_S_copy(_M_data(), __str._M_data(), __rsize); in _M_assign()
612 basic_string(const basic_string& __str)
613 : _M_dataplus(__str._M_rep()->_M_grab(_Alloc(__str.get_allocator()),
614 __str.get_allocator()),
615 __str.get_allocator())
626 basic_string(const basic_string& __str, size_type __pos, const _Alloc& __a)
627 : _M_dataplus(_S_construct(__str._M_data()
[all …]
H A Dfs_path.h141 _S_range_begin(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
142 { return __str.data(); } in _GLIBCXX_VISIBILITY()
146 _S_range_end(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
147 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
151 _S_range_begin(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
152 { return __str.data(); } in _GLIBCXX_VISIBILITY()
156 _S_range_end(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
157 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
506 std::basic_string<_CharT> __str; in _GLIBCXX_VISIBILITY()
508 __str.push_back(__ch); 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/experimental/
H A Dstring_view105 _Allocator>& __str) noexcept
106 : _M_len{__str.length()}, _M_str{__str.data()}
109 constexpr basic_string_view(const _CharT* __str)
110 : _M_len{__str == nullptr ? 0 : traits_type::length(__str)},
111 _M_str{__str}
114 constexpr basic_string_view(const _CharT* __str, size_type __len)
116 _M_str{__str}
255 copy(_CharT* __str, size_type __n, size_type __pos = 0) const
257 __glibcxx_requires_string_len(__str, __n);
266 *__str++ = *__begin++;
[all …]
/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/experimental/
H A Dstring_view105 _Allocator>& __str) noexcept
106 : _M_len{__str.length()}, _M_str{__str.data()}
109 constexpr basic_string_view(const _CharT* __str)
110 : _M_len{__str == nullptr ? 0 : traits_type::length(__str)},
111 _M_str{__str}
114 constexpr basic_string_view(const _CharT* __str, size_type __len)
116 _M_str{__str}
255 copy(_CharT* __str, size_type __n, size_type __pos = 0) const
257 __glibcxx_requires_string_len(__str, __n);
266 *__str++ = *__begin++;
[all …]
/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 Dstring_view127 basic_string_view(const _CharT* __str) noexcept
128 : _M_len{traits_type::length(__str)},
129 _M_str{__str}
133 basic_string_view(const _CharT* __str, size_type __len) noexcept
134 : _M_len{__len}, _M_str{__str}
268 copy(_CharT* __str, size_type __n, size_type __pos = 0) const
270 __glibcxx_requires_string_len(__str, __n);
275 traits_type::copy(__str, data() + __pos, __rlen);
288 compare(basic_string_view __str) const noexcept
290 const size_type __rlen = std::min(this->_M_len, __str._M_len);
[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/
H A Dstring_view127 basic_string_view(const _CharT* __str) noexcept
128 : _M_len{traits_type::length(__str)},
129 _M_str{__str}
133 basic_string_view(const _CharT* __str, size_type __len) noexcept
134 : _M_len{__len}, _M_str{__str}
268 copy(_CharT* __str, size_type __n, size_type __pos = 0) const
270 __glibcxx_requires_string_len(__str, __n);
275 traits_type::copy(__str, data() + __pos, __rlen);
288 compare(basic_string_view __str) const noexcept
290 const size_type __rlen = std::min(this->_M_len, __str._M_len);
[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/ext/
H A Dvstring.h146 __versa_string(const __versa_string& __str) in _GLIBCXX_VISIBILITY()
147 : __vstring_base(__str) { } in _GLIBCXX_VISIBILITY()
158 __versa_string(__versa_string&& __str) noexcept in _GLIBCXX_VISIBILITY()
159 : __vstring_base(std::move(__str)) { } in _GLIBCXX_VISIBILITY()
177 __versa_string(const __versa_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
179 : __vstring_base(__str._M_data() in _GLIBCXX_VISIBILITY()
180 + __str._M_check(__pos, in _GLIBCXX_VISIBILITY()
182 __str._M_data() + __str._M_limit(__pos, __n) in _GLIBCXX_VISIBILITY()
192 __versa_string(const __versa_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
194 : __vstring_base(__str._M_data() in _GLIBCXX_VISIBILITY()
[all …]
H A Dvstring.tcc184 __versa_string<_CharT, _Traits, _Alloc, _Base> __str; in operator +() local
185 __str.reserve(__lhs.size() + __rhs.size()); in operator +()
186 __str.append(__lhs); in operator +()
187 __str.append(__rhs); in operator +()
188 return __str; in operator +()
201 __string_type __str; in operator +() local
202 __str.reserve(__len + __rhs.size()); in operator +()
203 __str.append(__lhs, __len); in operator +()
204 __str.append(__rhs); in operator +()
205 return __str; in operator +()
[all …]
/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/ext/
H A Dvstring.h146 __versa_string(const __versa_string& __str) in _GLIBCXX_VISIBILITY()
147 : __vstring_base(__str) { } in _GLIBCXX_VISIBILITY()
158 __versa_string(__versa_string&& __str) noexcept in _GLIBCXX_VISIBILITY()
159 : __vstring_base(std::move(__str)) { } in _GLIBCXX_VISIBILITY()
177 __versa_string(const __versa_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
179 : __vstring_base(__str._M_data() in _GLIBCXX_VISIBILITY()
180 + __str._M_check(__pos, in _GLIBCXX_VISIBILITY()
182 __str._M_data() + __str._M_limit(__pos, __n) in _GLIBCXX_VISIBILITY()
192 __versa_string(const __versa_string& __str, size_type __pos, in _GLIBCXX_VISIBILITY()
194 : __vstring_base(__str._M_data() in _GLIBCXX_VISIBILITY()
[all …]
H A Dvstring.tcc184 __versa_string<_CharT, _Traits, _Alloc, _Base> __str; in operator +() local
185 __str.reserve(__lhs.size() + __rhs.size()); in operator +()
186 __str.append(__lhs); in operator +()
187 __str.append(__rhs); in operator +()
188 return __str; in operator +()
201 __string_type __str; in operator +() local
202 __str.reserve(__len + __rhs.size()); in operator +()
203 __str.append(__lhs, __len); in operator +()
204 __str.append(__rhs); in operator +()
205 return __str; in operator +()
[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/experimental/bits/
H A Dstring_view.tcc52 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find() argument
54 __glibcxx_requires_string_len(__str, __n); in find()
62 if (traits_type::eq(this->_M_str[__pos], __str[0]) in find()
64 __str + 1, __n - 1) == 0) in find()
89 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind() argument
91 __glibcxx_requires_string_len(__str, __n); in rfind()
98 if (traits_type::compare(this->_M_str + __pos, __str, __n) == 0) in rfind()
126 find_first_of(const _CharT* __str, size_type __pos, size_type __n) const in find_first_of() argument
128 __glibcxx_requires_string_len(__str, __n); in find_first_of()
131 const _CharT* __p = traits_type::find(__str, __n, in find_first_of()
[all …]
H A Dfs_path.h151 _S_range_begin(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
152 { return __str.data(); } in _GLIBCXX_VISIBILITY()
156 _S_range_end(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
157 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
162 _S_range_begin(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
163 { return __str.data(); } in _GLIBCXX_VISIBILITY()
167 _S_range_end(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
168 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
434 std::basic_string<_CharT> __str; in _GLIBCXX_VISIBILITY()
436 __str.push_back(__ch); in _GLIBCXX_VISIBILITY()
[all …]
/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/experimental/bits/
H A Dstring_view.tcc52 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find() argument
54 __glibcxx_requires_string_len(__str, __n); in find()
62 if (traits_type::eq(this->_M_str[__pos], __str[0]) in find()
64 __str + 1, __n - 1) == 0) in find()
89 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind() argument
91 __glibcxx_requires_string_len(__str, __n); in rfind()
98 if (traits_type::compare(this->_M_str + __pos, __str, __n) == 0) in rfind()
126 find_first_of(const _CharT* __str, size_type __pos, size_type __n) const in find_first_of() argument
128 __glibcxx_requires_string_len(__str, __n); in find_first_of()
131 const _CharT* __p = traits_type::find(__str, __n, in find_first_of()
[all …]
H A Dfs_path.h151 _S_range_begin(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
152 { return __str.data(); } in _GLIBCXX_VISIBILITY()
156 _S_range_end(const basic_string<_CharT, _Traits, _Alloc>& __str) in _GLIBCXX_VISIBILITY()
157 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
162 _S_range_begin(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
163 { return __str.data(); } in _GLIBCXX_VISIBILITY()
167 _S_range_end(const basic_string_view<_CharT, _Traits>& __str) in _GLIBCXX_VISIBILITY()
168 { return __str.data() + __str.size(); } in _GLIBCXX_VISIBILITY()
434 std::basic_string<_CharT> __str; in _GLIBCXX_VISIBILITY()
436 __str.push_back(__ch); in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dios829 boolalpha(ios_base& __str)
831 __str.setf(ios_base::boolalpha);
832 return __str;
837 noboolalpha(ios_base& __str)
839 __str.unsetf(ios_base::boolalpha);
840 return __str;
845 showbase(ios_base& __str)
847 __str.setf(ios_base::showbase);
848 return __str;
853 noshowbase(ios_base& __str)
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dios829 boolalpha(ios_base& __str)
831 __str.setf(ios_base::boolalpha);
832 return __str;
837 noboolalpha(ios_base& __str)
839 __str.unsetf(ios_base::boolalpha);
840 return __str;
845 showbase(ios_base& __str)
847 __str.setf(ios_base::showbase);
848 return __str;
853 noshowbase(ios_base& __str)
[all …]

1234