Implement P0457R2: 'String Prefix and Suffix Checking' for c++2a
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@319687 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
|
||||
|
||||
// <string>
|
||||
|
||||
// bool ends_with(charT x) const noexcept;
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
S s1 {};
|
||||
S s2 { "abcde", 5 };
|
||||
|
||||
ASSERT_NOEXCEPT(s1.ends_with('e'));
|
||||
|
||||
assert (!s1.ends_with('e'));
|
||||
assert (!s1.ends_with('x'));
|
||||
assert ( s2.ends_with('e'));
|
||||
assert (!s2.ends_with('x'));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
|
||||
|
||||
// <string>
|
||||
|
||||
// bool ends_with(const CharT *x) const;
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
const char *s = "abcde";
|
||||
|
||||
S s0;
|
||||
S s1 { s + 4, 1 };
|
||||
S s2 { s + 3, 2 };
|
||||
// S s3 { s + 2, 3 };
|
||||
// S s4 { s + 1, 4 };
|
||||
// S s5 { s, 5 };
|
||||
S sNot { "def", 3 };
|
||||
|
||||
LIBCPP_ASSERT_NOEXCEPT(s0.ends_with(""));
|
||||
|
||||
assert ( s0.ends_with(""));
|
||||
assert (!s0.ends_with("e"));
|
||||
|
||||
assert ( s1.ends_with(""));
|
||||
assert ( s1.ends_with("e"));
|
||||
assert (!s1.ends_with("de"));
|
||||
assert (!s1.ends_with("cde"));
|
||||
assert (!s1.ends_with("bcde"));
|
||||
assert (!s1.ends_with("abcde"));
|
||||
assert (!s1.ends_with("def"));
|
||||
|
||||
assert ( s2.ends_with(""));
|
||||
assert ( s2.ends_with("e"));
|
||||
assert ( s2.ends_with("de"));
|
||||
assert (!s2.ends_with("cde"));
|
||||
assert (!s2.ends_with("bcde"));
|
||||
assert (!s2.ends_with("abcde"));
|
||||
assert (!s2.ends_with("def"));
|
||||
|
||||
assert ( sNot.ends_with(""));
|
||||
assert (!sNot.ends_with("e"));
|
||||
assert (!sNot.ends_with("de"));
|
||||
assert (!sNot.ends_with("cde"));
|
||||
assert (!sNot.ends_with("bcde"));
|
||||
assert (!sNot.ends_with("abcde"));
|
||||
assert ( sNot.ends_with("def"));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
|
||||
|
||||
// <string>
|
||||
|
||||
// bool ends_with(basic_string_view x) const noexcept;
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
typedef std::string_view SV;
|
||||
const char *s = "abcde";
|
||||
|
||||
S s0;
|
||||
S s1 { s + 4, 1 };
|
||||
S s2 { s + 3, 2 };
|
||||
// S s3 { s + 2, 3 };
|
||||
// S s4 { s + 1, 4 };
|
||||
// S s5 { s, 5 };
|
||||
S sNot { "def", 3 };
|
||||
|
||||
SV sv0;
|
||||
SV sv1 { s + 4, 1 };
|
||||
SV sv2 { s + 3, 2 };
|
||||
SV sv3 { s + 2, 3 };
|
||||
SV sv4 { s + 1, 4 };
|
||||
SV sv5 { s , 5 };
|
||||
SV svNot {"def", 3 };
|
||||
|
||||
ASSERT_NOEXCEPT(s0.ends_with(sv0));
|
||||
|
||||
assert ( s0.ends_with(sv0));
|
||||
assert (!s0.ends_with(sv1));
|
||||
|
||||
assert ( s1.ends_with(sv0));
|
||||
assert ( s1.ends_with(sv1));
|
||||
assert (!s1.ends_with(sv2));
|
||||
assert (!s1.ends_with(sv3));
|
||||
assert (!s1.ends_with(sv4));
|
||||
assert (!s1.ends_with(sv5));
|
||||
assert (!s1.ends_with(svNot));
|
||||
|
||||
assert ( s2.ends_with(sv0));
|
||||
assert ( s2.ends_with(sv1));
|
||||
assert ( s2.ends_with(sv2));
|
||||
assert (!s2.ends_with(sv3));
|
||||
assert (!s2.ends_with(sv4));
|
||||
assert (!s2.ends_with(sv5));
|
||||
assert (!s2.ends_with(svNot));
|
||||
|
||||
assert ( sNot.ends_with(sv0));
|
||||
assert (!sNot.ends_with(sv1));
|
||||
assert (!sNot.ends_with(sv2));
|
||||
assert (!sNot.ends_with(sv3));
|
||||
assert (!sNot.ends_with(sv4));
|
||||
assert (!sNot.ends_with(sv5));
|
||||
assert ( sNot.ends_with(svNot));
|
||||
}
|
||||
}
|
||||
@@ -17,6 +17,12 @@
|
||||
#include "test_macros.h"
|
||||
#include "min_allocator.h"
|
||||
|
||||
struct veryLarge
|
||||
{
|
||||
long long a;
|
||||
char b;
|
||||
};
|
||||
|
||||
template <class S>
|
||||
void
|
||||
test(S s, typename S::value_type c, S expected)
|
||||
@@ -42,4 +48,12 @@ int main()
|
||||
test(S("12345678901234567890"), 'a', S("12345678901234567890a"));
|
||||
}
|
||||
#endif
|
||||
{
|
||||
// https://bugs.llvm.org/show_bug.cgi?id=31454
|
||||
std::basic_string<veryLarge> s;
|
||||
veryLarge vl;
|
||||
s.push_back(vl);
|
||||
s.push_back(vl);
|
||||
s.push_back(vl);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
|
||||
|
||||
// <string>
|
||||
|
||||
// bool starts_with(charT x) const noexcept;
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
S s1 {};
|
||||
S s2 { "abcde", 5 };
|
||||
|
||||
ASSERT_NOEXCEPT(s1.starts_with('e'));
|
||||
|
||||
assert (!s1.starts_with('a'));
|
||||
assert (!s1.starts_with('x'));
|
||||
assert ( s2.starts_with('a'));
|
||||
assert (!s2.starts_with('x'));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
|
||||
|
||||
// <string>
|
||||
|
||||
// bool starts_with(const CharT *x) const;
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
const char *s = "abcde";
|
||||
S s0 {};
|
||||
S s1 { s, 1 };
|
||||
S s2 { s, 2 };
|
||||
// S s3 { s, 3 };
|
||||
// S s4 { s, 4 };
|
||||
// S s5 { s, 5 };
|
||||
S sNot {"def", 3 };
|
||||
|
||||
LIBCPP_ASSERT_NOEXCEPT(s0.starts_with(""));
|
||||
|
||||
assert ( s0.starts_with(""));
|
||||
assert (!s0.starts_with("a"));
|
||||
|
||||
assert ( s1.starts_with(""));
|
||||
assert ( s1.starts_with("a"));
|
||||
assert (!s1.starts_with("ab"));
|
||||
assert (!s1.starts_with("abc"));
|
||||
assert (!s1.starts_with("abcd"));
|
||||
assert (!s1.starts_with("abcde"));
|
||||
assert (!s1.starts_with("def"));
|
||||
|
||||
assert ( s2.starts_with(""));
|
||||
assert ( s2.starts_with("a"));
|
||||
assert ( s2.starts_with("ab"));
|
||||
assert (!s2.starts_with("abc"));
|
||||
assert (!s2.starts_with("abcd"));
|
||||
assert (!s2.starts_with("abcde"));
|
||||
assert (!s2.starts_with("def"));
|
||||
|
||||
assert ( sNot.starts_with(""));
|
||||
assert (!sNot.starts_with("a"));
|
||||
assert (!sNot.starts_with("ab"));
|
||||
assert (!sNot.starts_with("abc"));
|
||||
assert (!sNot.starts_with("abcd"));
|
||||
assert (!sNot.starts_with("abcde"));
|
||||
assert ( sNot.starts_with("def"));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
|
||||
|
||||
// <string>
|
||||
|
||||
// bool starts_with(string_view x) const noexcept;
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
typedef std::string_view SV;
|
||||
const char *s = "abcde";
|
||||
|
||||
S s0;
|
||||
S s1 { s, 1 };
|
||||
S s2 { s, 2 };
|
||||
// S s3 { s, 3 };
|
||||
// S s4 { s, 4 };
|
||||
// S s5 { s, 5 };
|
||||
S sNot { "def", 3 };
|
||||
|
||||
SV sv0;
|
||||
SV sv1 { s, 1 };
|
||||
SV sv2 { s, 2 };
|
||||
SV sv3 { s, 3 };
|
||||
SV sv4 { s, 4 };
|
||||
SV sv5 { s, 5 };
|
||||
SV svNot {"def", 3 };
|
||||
|
||||
ASSERT_NOEXCEPT(s0.starts_with(sv0));
|
||||
|
||||
assert ( s0.starts_with(sv0));
|
||||
assert (!s0.starts_with(sv1));
|
||||
|
||||
assert ( s1.starts_with(sv0));
|
||||
assert ( s1.starts_with(sv1));
|
||||
assert (!s1.starts_with(sv2));
|
||||
assert (!s1.starts_with(sv3));
|
||||
assert (!s1.starts_with(sv4));
|
||||
assert (!s1.starts_with(sv5));
|
||||
assert (!s1.starts_with(svNot));
|
||||
|
||||
assert ( s2.starts_with(sv0));
|
||||
assert ( s2.starts_with(sv1));
|
||||
assert ( s2.starts_with(sv2));
|
||||
assert (!s2.starts_with(sv3));
|
||||
assert (!s2.starts_with(sv4));
|
||||
assert (!s2.starts_with(sv5));
|
||||
assert (!s2.starts_with(svNot));
|
||||
|
||||
assert ( sNot.starts_with(sv0));
|
||||
assert (!sNot.starts_with(sv1));
|
||||
assert (!sNot.starts_with(sv2));
|
||||
assert (!sNot.starts_with(sv3));
|
||||
assert (!sNot.starts_with(sv4));
|
||||
assert (!sNot.starts_with(sv5));
|
||||
assert ( sNot.starts_with(svNot));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user