Searched refs:resize (Results 1 - 25 of 88) sorted by relevance

1234

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
H A Dresize_size.pass.cpp13 // void resize(size_type sz);
24 v.resize(50);
27 v.resize(200);
34 v.resize(50);
37 v.resize(200);
H A Dresize_size_value.pass.cpp13 // void resize(size_type sz, const value_type& x);
24 v.resize(50, 1);
28 v.resize(200, 1);
39 v.resize(50, 1);
43 v.resize(200, 1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.capacity/
H A Dresize_size.pass.cpp12 // void resize(size_type sz);
26 v.resize(50);
30 v.resize(200);
37 v.resize(50);
41 v.resize(200);
49 v.resize(50);
53 v.resize(200);
60 v.resize(50);
64 v.resize(200);
73 v.resize(5
[all...]
H A Dresize_size_value.pass.cpp12 // void resize(size_type sz, const value_type& x);
24 v.resize(50, 1);
28 v.resize(200, 1);
39 v.resize(50, 1);
42 v.resize(200, 1);
50 v.resize(50, 1);
55 v.resize(200, 1);
66 v.resize(50, 1);
70 v.resize(200, 1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
H A Dresize_size.pass.cpp12 // void resize(size_type n);
26 c.resize(0);
28 c.resize(10);
30 c.resize(20);
32 c.resize(5);
34 c.resize(0);
43 c.resize(3);
49 c.resize(6);
58 c.resize(6);
72 c.resize(
[all...]
H A Dresize_size_value.pass.cpp12 // void resize(size_type n, const value_type& v);
28 c.resize(3, 10);
34 c.resize(6, 10);
43 c.resize(6, 12);
59 c.resize(3, 10);
65 c.resize(6, 10);
74 c.resize(6, 12);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.members/
H A Dresize.pass.cpp14 // void resize(size_t n, value_type x = value_type());
26 v1.resize(8);
30 v1.resize(0);
32 v1.resize(80);
36 v1.resize(40);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.capacity/
H A Dresize_size.pass.cpp12 // void resize(size_type sz);
23 l.resize(2);
30 l.resize(10);
39 l.resize(5);
45 l.resize(20);
53 l.resize(2);
60 l.resize(10);
69 l.resize(5);
75 l.resize(20);
H A Dresize_size_value.pass.cpp12 // void resize(size_type sz, const value_type& x);
23 l.resize(2, 3.5);
30 l.resize(10, 3.5);
39 l.resize(2, 3.5);
46 l.resize(10, 3.5);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dvalarray.cpp18 template void valarray<size_t>::resize(size_t, size_t);
27 __1d_.resize(__k);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.capacity/
H A Dmax_size.pass.cpp25 try { s2.resize(sz, 'x'); }
36 try { s2.resize(sz, 'x'); }
47 try { s2.resize(sz, 'x'); }
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
H A Dnasty_containers.hpp121 void resize(size_type sz) { v_.resize(sz); } function in class:nasty_vector
122 void resize(size_type sz, const value_type& c) { v_.resize(sz, c); } function in class:nasty_vector
240 void resize(size_type sz) { l_.resize(); } function in class:nasty_list
241 void resize(size_type sz, const value_type& c) { l_.resize(c); } function in class:nasty_list
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
H A Dstreambuf.pass.cpp50 str_.resize(str_.capacity());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
H A Dbasic_ios.pass.cpp44 str_.resize(str_.capacity());
H A Dios_base.pass.cpp43 str_.resize(str_.capacity());
H A Dostream.pass.cpp44 str_.resize(str_.capacity());
H A Dstreambuf.pass.cpp50 str_.resize(str_.capacity());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A Ddouble.pass.cpp43 str_.resize(str_.capacity());
H A Dfloat.pass.cpp43 str_.resize(str_.capacity());
H A Dint.pass.cpp43 str_.resize(str_.capacity());
H A Dlong.pass.cpp43 str_.resize(str_.capacity());
H A Dlong_double.pass.cpp43 str_.resize(str_.capacity());
H A Dlong_long.pass.cpp43 str_.resize(str_.capacity());
H A Dpointer.pass.cpp43 str_.resize(str_.capacity());
H A Dshort.pass.cpp43 str_.resize(str_.capacity());

Completed in 165 milliseconds

1234