• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2011.09/arm-none-eabi/include/c++/4.6.1/bits/

Lines Matching refs:match_results

1424   // [7.10] Class template match_results
1442 * necessary by the member functions of class template match_results.
1461 class match_results
1505 * @brief Constructs a default %match_results container.
1509 match_results(const _Allocator& __a = _Allocator())
1514 * @brief Copy constructs a %match_results.
1516 match_results(const match_results& __rhs)
1521 * @brief Move constructs a %match_results.
1523 match_results(match_results&& __rhs) noexcept
1530 match_results&
1531 operator=(const match_results& __rhs)
1533 match_results(__rhs).swap(*this);
1540 match_results&
1541 operator=(match_results&& __rhs)
1543 match_results(std::move(__rhs)).swap(*this);
1548 * @brief Destroys a %match_results object.
1550 ~match_results()
1557 * @brief Indicates if the %match_results is ready.
1589 * @brief Indicates if the %match_results contains no results.
1590 * @retval true The %match_results object is empty.
1591 * @retval false The %match_results object is not empty.
1818 * @brief Swaps the contents of two match_results.
1821 swap(match_results& __that)
1829 typedef match_results<const char*> cmatch;
1830 typedef match_results<string::const_iterator> smatch;
1832 typedef match_results<const wchar_t*> wcmatch;
1833 typedef match_results<wstring::const_iterator> wsmatch;
1836 // match_results comparisons
1838 * @brief Compares two match_results for equality.
1844 operator==(const match_results<_Bi_iter, _Allocator>& __m1,
1845 const match_results<_Bi_iter, _Allocator>& __m2)
1862 * @brief Compares two match_results for inequality.
1868 operator!=(const match_results<_Bi_iter, _Allocator>& __m1,
1869 const match_results<_Bi_iter, _Allocator>& __m2)
1872 // [7.10.6] match_results swap
1878 * The contents of the two match_results objects are swapped.
1882 swap(match_results<_Bi_iter, _Allocator>& __lhs,
1883 match_results<_Bi_iter, _Allocator>& __rhs)
1914 match_results<_Bi_iter, _Allocator>& __m,
1948 match_results<_Bi_iter> __what;
1969 match_results<const _Ch_type*, _Allocator>& __m,
1993 match_results<typename basic_string<_Ch_type,
2063 match_results<_Bi_iter, _Allocator>& __m,
2088 match_results<_Bi_iter> __what;
2108 match_results<const _Ch_type*, _Allocator>& __m,
2171 match_results<typename basic_string<_Ch_type,
2242 typedef match_results<_Bi_iter> value_type;
2332 match_results<_Bi_iter> match;