1 // { dg-options "-std=gnu++17" }
3 // Copyright (C) 2013-2023 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // string_view size, length
22 namespace capacity_1
{
29 operator==(const A
<T
>&, const A
<T
>&) { return true; }
33 operator<(const A
<T
>&, const A
<T
>&) { return true; }
37 } // namespace capacity_1
38 } // namespace string_view
39 } // namespace selftests
41 // char_traits specialization
45 struct char_traits
<selftests::string_view::capacity_1::A
<
46 selftests::string_view::capacity_1::B
> >
48 typedef selftests::string_view::capacity_1::A
<
49 selftests::string_view::capacity_1::B
> char_type
;
50 // Unsigned as wint_t in unsigned.
51 typedef unsigned long int_type
;
52 typedef streampos pos_type
;
53 typedef streamoff off_type
;
54 typedef mbstate_t state_type
;
57 assign(char_type
& __c1
, const char_type
& __c2
)
61 eq(const char_type
& __c1
, const char_type
& __c2
)
62 { return __c1
== __c2
; }
65 lt(const char_type
& __c1
, const char_type
& __c2
)
66 { return __c1
< __c2
; }
69 compare(const char_type
* __s1
, const char_type
* __s2
, size_t __n
)
71 for (size_t __i
= 0; __i
< __n
; ++__i
)
72 if (!eq(__s1
[__i
], __s2
[__i
]))
73 return lt(__s1
[__i
], __s2
[__i
]) ? -1 : 1;
78 length(const char_type
* __s
)
80 const char_type
* __p
= __s
;
86 static const char_type
*
87 find(const char_type
* __s
, size_t __n
, const char_type
& __a
)
89 for (const char_type
* __p
= __s
; size_t(__p
- __s
) < __n
; ++__p
)
90 if (*__p
== __a
) return __p
;
95 move(char_type
* __s1
, const char_type
* __s2
, size_t __n
)
96 { return (char_type
*) memmove(__s1
, __s2
, __n
* sizeof(char_type
)); }
99 copy(char_type
* __s1
, const char_type
* __s2
, size_t __n
)
100 { return (char_type
*) memcpy(__s1
, __s2
, __n
* sizeof(char_type
)); }
103 assign(char_type
* __s
, size_t __n
, char_type __a
)
105 for (char_type
* __p
= __s
; __p
< __s
+ __n
; ++__p
)
111 to_char_type(const int_type
&)
112 { return char_type(); }
115 to_int_type(const char_type
&) { return int_type(); }
118 eq_int_type(const int_type
& __c1
, const int_type
& __c2
)
119 { return __c1
== __c2
; }
122 eof() { return static_cast<int_type
>(-1); }
125 not_eof(const int_type
& __c
)
126 { return eq_int_type(__c
, eof()) ? int_type(0) : __c
; }
130 namespace selftests
{
131 namespace string_view
{
132 namespace capacity_1
{
137 gdb::basic_string_view
<A
<B
>> str02
;
138 typedef gdb::basic_string_view
< A
<B
> >::size_type size_type_o
;
142 // non-POD types: size, length, max_size, empty()
143 bool b01
= str02
.empty();
144 VERIFY( b01
== true );
146 sz04
= str02
.length();
147 VERIFY( sz03
== sz04
);
150 sz04
= str02
.length();
151 VERIFY( sz03
== sz04
);
153 sz03
= str02
.max_size();
154 VERIFY( sz03
>= sz04
);
159 VERIFY( b01
== true );
161 VERIFY( sz03
>= sz04
);
172 } // namespace capacity_1