Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/
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,
374 _LIBCPP_HIDE_FROM_ABI explicit basic_stringbuf(string_type&& __s,
419 __str_ = string_type(__sv, __a);
452 string_type str() const;
454 _LIBCPP_HIDE_FROM_ABI string_type str() const& { return str(__str_.get_allocator()); }
456 _LIBCPP_HIDE_FROM_ABI string_type str() && {
458 …typename string_type::size_type __pos = __view.empty() ? 0 : __view.data() - __str_.data…
459 …// In C++23, this is just string_type(std::move(__str_), __pos, __view.size(), __str_.get_allocato…
[all …]
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 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__locale177 typedef basic_string<char_type> string_type;
188 _LIBCPP_HIDE_FROM_ABI _LIBCPP_ALWAYS_INLINE string_type
201 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const {
202 return string_type(__lo, __hi);
254 typedef basic_string<char_type> string_type;
263 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
273 typedef basic_string<char_type> string_type;
283 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
1416 typedef basic_string<char_type> string_type;
1423 _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.h399 typedef basic_string<value_type> string_type;
409 …_LIBCPP_HIDE_FROM_ABI path(string_type&& __s, format = format::auto_format) noexcept : __pn_(std::…
446 _LIBCPP_HIDE_FROM_ABI path& operator=(string_type&& __s) noexcept {
451 _LIBCPP_HIDE_FROM_ABI path& assign(string_type&& __s) noexcept {
564 _LIBCPP_HIDE_FROM_ABI path& operator+=(const string_type& __x) {
669 _LIBCPP_HIDE_FROM_ABI const string_type& native() const noexcept { return __pn_; }
673 _LIBCPP_HIDE_FROM_ABI operator string_type() const { return __pn_; }
793 _LIBCPP_HIDE_FROM_ABI int compare(const string_type& __s) const { return __compare(__s); }
798 _LIBCPP_HIDE_FROM_ABI path root_name() const { return string_type(__root_name()); }
799 _LIBCPP_HIDE_FROM_ABI path root_directory() const { return string_type(__root_directory()); }
[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.h112 using string_type = path::string_type;
114 using string_type = path::string_type; global() variable
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp626 string_type lhs(__lo1, __hi1); in do_compare()
627 string_type rhs(__lo2, __hi2); in do_compare()
636 collate_byname<char>::string_type collate_byname<char>::do_transform(const char_type* lo, const cha… in do_transform()
637 const string_type in(lo, hi); in do_transform()
638 string_type out(strxfrm_l(0, in.c_str(), 0, __l_), char()); in do_transform()
670 string_type lhs(__lo1, __hi1); in do_compare()
671 string_type rhs(__lo2, __hi2); in do_compare()
680 collate_byname<wchar_t>::string_type
682 const string_type in(lo, hi); in do_transform()
683 string_type out(wcsxfrm_l(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.def162 HANDLE_DW_TAG(0x0012, string_type, 2, DWARF, DW_KIND_TYPE)