Home
last modified time | relevance | path

Searched refs:string_type (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/
H A Dmoney.h54 typedef basic_string<char_type> string_type; typedef
61 _LIBCPP_HIDE_FROM_ABI string_type curr_symbol() const { return do_curr_symbol(); } in curr_symbol()
62 _LIBCPP_HIDE_FROM_ABI string_type positive_sign() const { return do_positive_sign(); } in positive_sign()
63 _LIBCPP_HIDE_FROM_ABI string_type negative_sign() const { return do_negative_sign(); } in negative_sign()
77 virtual string_type do_curr_symbol() const { return string_type(); } in do_curr_symbol()
78 virtual string_type do_positive_sign() const { return string_type(); } in do_positive_sign()
79 virtual string_type do_negative_sign() const { return string_type(1, '-'); } in do_negative_sign()
111 typedef basic_string<char_type> string_type; typedef
129 string_type do_curr_symbol() const override { return __curr_symbol_; } in do_curr_symbol()
130 string_type do_positive_sign() const override { return __positive_sign_; } in do_positive_sign()
[all …]
H A Dmessages.h48 typedef basic_string<_CharT> string_type; typedef
56 …_LIBCPP_HIDE_FROM_ABI string_type get(catalog __c, int __set, int __msgid, const string_type& __df… in get()
68 virtual string_type do_get(catalog, int __set, int __msgid, const string_type& __dflt) const;
86 typename messages<_CharT>::string_type
87 messages<_CharT>::do_get(catalog __c, int __set, int __msgid, const string_type& __dflt) const { in do_get()
95 string_type __w; in do_get()
124 typedef basic_string<_CharT> string_type; typedef
H A Dtime.h61 typedef basic_string<_CharT> string_type; typedef
63 virtual const string_type* __weeks() const;
64 virtual const string_type* __months() const;
65 virtual const string_type* __am_pm() const;
66 virtual const string_type& __c() const;
67 virtual const string_type& __r() const;
68 virtual const string_type& __x() const;
69 virtual const string_type& __X() const;
112 typedef basic_string<char_type> string_type; typedef
217 const string_type* __wk = this->__weeks(); in __get_weekdayname()
[all …]
H A Dnum.h645 typedef typename numpunct<_CharT>::string_type string_type;
646 const string_type __names[2] = {__np.truename(), __np.falsename()};
647 const string_type* __i = std::__scan_keyword(__b, __e, __names, __names + 2, __ct, __err);
886 typedef typename numpunct<char_type>::string_type string_type;
887 string_type __nm = __v ? __np.truename() : __np.falsename();
888 for (typename string_type::iterator __i = __nm.begin(); __i != __nm.end(); ++__i, ++__s)
/freebsd/contrib/llvm-project/libcxx/include/
H A Dsstream354 typedef basic_string<char_type, traits_type, allocator_type> string_type;
357 string_type __str_;
375 _LIBCPP_HIDE_FROM_ABI explicit basic_stringbuf(const string_type& __s,
390 _LIBCPP_HIDE_FROM_ABI explicit basic_stringbuf(string_type&& __s,
435 __str_ = string_type(__sv, __a);
468 string_type str() const;
470 _LIBCPP_HIDE_FROM_ABI string_type str() const& { return str(__str_.get_allocator()); }
472 _LIBCPP_HIDE_FROM_ABI string_type str() && {
474 …typename string_type::size_type __pos = __view.empty() ? 0 : __view.data() - __str_.data…
475 …// In C++23, this is just string_type(std::move(__str_), __pos, __view.size(), __str_.get_allocato…
[all …]
H A Dregex97 typedef basic_string<char_type> string_type;
107 string_type
110 string_type
113 string_type
132 typedef typename traits::string_type string_type;
216 typedef basic_string<value_type> string_type;
223 operator string_type() const;
224 string_type str() const;
227 int compare(const string_type& s) const;
478 typedef basic_string<char_type> string_type;
[all …]
H A D__locale187 typedef basic_string<char_type> string_type;
198 _LIBCPP_HIDE_FROM_ABI _LIBCPP_ALWAYS_INLINE string_type
211 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const {
212 return string_type(__lo, __hi);
264 typedef basic_string<char_type> string_type;
273 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
283 typedef basic_string<char_type> string_type;
293 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
1409 typedef basic_string<char_type> string_type;
1416 _LIBCPP_HIDE_FROM_ABI string_type truename() const { return do_truename(); }
[all …]
H A Dfilesystem22 using string_type = basic_string<value_type>;
30 path(string_type&& source, format fmt = auto_format);
43 path& operator=(string_type&& source);
44 path& assign(string_type&& source);
61 path& operator+=(const string_type& x);
91 const string_type& native() const noexcept;
93 operator string_type() const;
116 int compare(const string_type& s) const;
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Dpath.h400 typedef basic_string<value_type> string_type;
410 …_LIBCPP_HIDE_FROM_ABI path(string_type&& __s, format = format::auto_format) noexcept : __pn_(std::…
447 _LIBCPP_HIDE_FROM_ABI path& operator=(string_type&& __s) noexcept {
452 _LIBCPP_HIDE_FROM_ABI path& assign(string_type&& __s) noexcept {
565 _LIBCPP_HIDE_FROM_ABI path& operator+=(const string_type& __x) {
670 _LIBCPP_HIDE_FROM_ABI const string_type& native() const noexcept { return __pn_; }
674 _LIBCPP_HIDE_FROM_ABI operator string_type() const { return __pn_; }
794 _LIBCPP_HIDE_FROM_ABI int compare(const string_type& __s) const { return __compare(__s); }
799 _LIBCPP_HIDE_FROM_ABI path root_name() const { return string_type(__root_name()); }
800 _LIBCPP_HIDE_FROM_ABI path root_directory() const { return string_type(__root_directory()); }
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dlocale843 typedef typename numpunct<_CharT>::string_type string_type;
844 const string_type __names[2] = {__np.truename(), __np.falsename()};
845 const string_type* __i = std::__scan_keyword(__b, __e, __names, __names + 2, __ct, __err);
1314 typedef typename numpunct<char_type>::string_type string_type;
1315 string_type __nm = __v ? __np.truename() : __np.falsename();
1316 for (typename string_type::iterator __i = __nm.begin(); __i != __nm.end(); ++__i, ++__s)
1504 typedef basic_string<_CharT> string_type;
1506 virtual const string_type* __weeks() const;
1507 virtual const string_type* __months() const;
1508 virtual const string_type* __am_pm() const;
[all …]
H A Dsstream346 typedef basic_string<char_type, traits_type, allocator_type> string_type;
349 string_type __str_;
361 _LIBCPP_HIDE_FROM_ABI explicit basic_stringbuf(const string_type& __s,
377 string_type str() const;
379 void str(const string_type& __s) {
554 return string_type(this->pbase(), __hm_, __str_.get_allocator());
556 return string_type(this->eback(), this->egptr(), __str_.get_allocator());
557 return string_type(__str_.get_allocator());
564 typename string_type::size_type __sz = __str_.size();
709 typedef basic_string<char_type, traits_type, allocator_type> string_type;
[all …]
H A Dregex97 typedef basic_string<char_type> string_type;
107 string_type
110 string_type
113 string_type
132 typedef typename traits::string_type string_type;
216 typedef basic_string<value_type> string_type;
223 operator string_type() const;
224 string_type str() const;
227 int compare(const string_type& s) const;
478 typedef basic_string<char_type> string_type;
[all …]
H A D__locale175 typedef basic_string<char_type> string_type;
186 _LIBCPP_HIDE_FROM_ABI _LIBCPP_ALWAYS_INLINE string_type
199 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const {
200 return string_type(__lo, __hi);
252 typedef basic_string<char_type> string_type;
261 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
271 typedef basic_string<char_type> string_type;
281 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
1410 typedef basic_string<char_type> string_type;
1417 _LIBCPP_HIDE_FROM_ABI string_type truename() const { return do_truename(); }
[all …]
/freebsd/contrib/lib9p/pytest/
H A Dpfod.py126 string_type = str
128 string_type = basestring
130 if isinstance(field_names, string_type):
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dfile_descriptor.h119 using string_type = path::string_type; variable
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp622 string_type lhs(__lo1, __hi1); in do_compare()
623 string_type rhs(__lo2, __hi2); in do_compare()
632 collate_byname<char>::string_type collate_byname<char>::do_transform(const char_type* lo, const cha… in do_transform()
633 const string_type in(lo, hi); in do_transform()
634 string_type out(__locale::__strxfrm(0, in.c_str(), 0, __l_), char()); in do_transform()
666 string_type lhs(__lo1, __hi1); in do_compare()
667 string_type rhs(__lo2, __hi2); in do_compare()
676 collate_byname<wchar_t>::string_type
678 const string_type in(lo, hi); in do_transform()
679 string_type out(__locale::__wcsxfrm(0, in.c_str(), 0, __l_), wchar_t()); in do_transform()
[all …]
/freebsd/crypto/krb5/src/util/support/
H A Djson.c483 static struct json_type_st string_type = { variable
500 s = alloc_value(&string_type, len + 1); in k5_json_string_create_len()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.def167 HANDLE_DW_TAG(0x0012, string_type, 2, DWARF, DW_KIND_TYPE)