Home
last modified time | relevance | path

Searched refs:testAlloc (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/
Dstring.pass.cpp33 testAlloc(S s, S str, const typename S::allocator_type& a) in testAlloc() function
66 testAlloc(S(), S(), std::allocator<char>()); in main()
67 testAlloc(S(), S("12345"), std::allocator<char>()); in main()
68 testAlloc(S(), S("1234567890"), std::allocator<char>()); in main()
69 testAlloc(S(), S("12345678901234567890"), std::allocator<char>()); in main()
75 testAlloc(S(A(5)), S(A(3)), A(3)); in main()
76 testAlloc(S(A(5)), S("1"), A()); in main()
77 testAlloc(S(A(5)), S("1", A(7)), A(7)); in main()
78testAlloc(S(A(5)), S("1234567890123456789012345678901234567890123456789012345678901234567890", A(7… in main()
105 testAlloc(S(), S(), min_allocator<char>()); in main()
[all …]
Dstring_view.pass.cpp34 testAlloc(S s, SV sv, const typename S::allocator_type& a) in testAlloc() function
68 testAlloc(S(), SV(), std::allocator<char>()); in main()
69 testAlloc(S(), SV("12345"), std::allocator<char>()); in main()
70 testAlloc(S(), SV("1234567890"), std::allocator<char>()); in main()
71 testAlloc(S(), SV("12345678901234567890"), std::allocator<char>()); in main()
99 testAlloc(S(), SV(), min_allocator<char>()); in main()
100 testAlloc(S(), SV("12345"), min_allocator<char>()); in main()
101 testAlloc(S(), SV("1234567890"), min_allocator<char>()); in main()
102 testAlloc(S(), SV("12345678901234567890"), min_allocator<char>()); in main()