[re.regiter]

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111178 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-08-16 20:21:16 +00:00
parent aa78f9cdb3
commit a712c72499
7 changed files with 401 additions and 10 deletions

View File

@@ -0,0 +1,44 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <regex>
// class regex_iterator<BidirectionalIterator, charT, traits>
// regex_iterator(BidirectionalIterator a, BidirectionalIterator b,
// const regex_type& re,
// regex_constants::match_flag_type m = regex_constants::match_default);
#include <regex>
#include <cassert>
int main()
{
{
std::regex phone_numbers("\\d{3}-\\d{4}");
const char phone_book[] = "555-1234, 555-2345, 555-3456";
std::cregex_iterator i(std::begin(phone_book), std::end(phone_book), phone_numbers);
assert(i != std::cregex_iterator());
assert(i->size() == 1);
assert(i->position() == 0);
assert(i->str() == "555-1234");
++i;
assert(i != std::cregex_iterator());
assert(i->size() == 1);
assert(i->position() == 10);
assert(i->str() == "555-2345");
++i;
assert(i != std::cregex_iterator());
assert(i->size() == 1);
assert(i->position() == 20);
assert(i->str() == "555-3456");
++i;
assert(i == std::cregex_iterator());
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <regex>
// class regex_iterator<BidirectionalIterator, charT, traits>
// regex_iterator();
#include <regex>
#include <cassert>
template <class CharT>
void
test()
{
typedef std::regex_iterator<const CharT*> I;
I i1;
assert(i1 == I());
}
int main()
{
test<char>();
test<wchar_t>();
}

View File

@@ -0,0 +1,19 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <regex>
// class regex_iterator<BidirectionalIterator, charT, traits>
// bool operator==(const regex_iterator& right) const;
// bool operator!=(const regex_iterator& right) const;
int main()
{
}

View File

@@ -0,0 +1,42 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <regex>
// class regex_iterator<BidirectionalIterator, charT, traits>
// const value_type& operator*() const;
#include <regex>
#include <cassert>
int main()
{
{
std::regex phone_numbers("\\d{3}-\\d{4}");
const char phone_book[] = "555-1234, 555-2345, 555-3456";
std::cregex_iterator i(std::begin(phone_book), std::end(phone_book), phone_numbers);
assert(i != std::cregex_iterator());
assert((*i).size() == 1);
assert((*i).position() == 0);
assert((*i).str() == "555-1234");
++i;
assert(i != std::cregex_iterator());
assert((*i).size() == 1);
assert((*i).position() == 10);
assert((*i).str() == "555-2345");
++i;
assert(i != std::cregex_iterator());
assert((*i).size() == 1);
assert((*i).position() == 20);
assert((*i).str() == "555-3456");
++i;
assert(i == std::cregex_iterator());
}
}

View File

@@ -0,0 +1,42 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <regex>
// class regex_iterator<BidirectionalIterator, charT, traits>
// regex_iterator operator++(int);
#include <regex>
#include <cassert>
int main()
{
{
std::regex phone_numbers("\\d{3}-\\d{4}");
const char phone_book[] = "555-1234, 555-2345, 555-3456";
std::cregex_iterator i(std::begin(phone_book), std::end(phone_book), phone_numbers);
assert(i != std::cregex_iterator());
assert((*i).size() == 1);
assert((*i).position() == 0);
assert((*i).str() == "555-1234");
i++;
assert(i != std::cregex_iterator());
assert((*i).size() == 1);
assert((*i).position() == 10);
assert((*i).str() == "555-2345");
i++;
assert(i != std::cregex_iterator());
assert((*i).size() == 1);
assert((*i).position() == 20);
assert((*i).str() == "555-3456");
i++;
assert(i == std::cregex_iterator());
}
}

View File

@@ -0,0 +1,45 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <regex>
// template <class BidirectionalIterator,
// class charT = typename iterator_traits< BidirectionalIterator>::value_type,
// class traits = regex_traits<charT>>
// class regex_iterator
// {
// public:
// typedef basic_regex<charT, traits> regex_type;
// typedef match_results<BidirectionalIterator> value_type;
// typedef ptrdiff_t difference_type;
// typedef const value_type* pointer;
// typedef const value_type& reference;
// typedef forward_iterator_tag iterator_category;
#include <regex>
#include <type_traits>
template <class CharT>
void
test()
{
typedef std::regex_iterator<const CharT*> I;
static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), "");
static_assert((std::is_same<typename I::value_type, std::match_results<const CharT*> >::value), "");
static_assert((std::is_same<typename I::difference_type, std::ptrdiff_t>::value), "");
static_assert((std::is_same<typename I::pointer, const std::match_results<const CharT*>*>::value), "");
static_assert((std::is_same<typename I::reference, const std::match_results<const CharT*>&>::value), "");
static_assert((std::is_same<typename I::iterator_category, std::forward_iterator_tag>::value), "");
}
int main()
{
test<char>();
test<wchar_t>();
}