• 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-2013.11/arm-none-eabi/include/c++/4.8.1/bits/

Lines Matching refs:match_results

1392   // [7.10] Class template match_results
1410 * necessary by the member functions of class template match_results.
1429 class match_results
1474 * @brief Constructs a default %match_results container.
1478 match_results(const _Alloc& __a = _Alloc())
1483 * @brief Copy constructs a %match_results.
1485 match_results(const match_results& __rhs)
1490 * @brief Move constructs a %match_results.
1492 match_results(match_results&& __rhs) noexcept
1499 match_results&
1500 operator=(const match_results& __rhs)
1502 match_results(__rhs).swap(*this);
1509 match_results&
1510 operator=(match_results&& __rhs)
1512 match_results(std::move(__rhs)).swap(*this);
1517 * @brief Destroys a %match_results object.
1519 ~match_results()
1526 * @brief Indicates if the %match_results is ready.
1558 * @brief Indicates if the %match_results contains no results.
1559 * @retval true The %match_results object is empty.
1560 * @retval false The %match_results object is not empty.
1784 * @brief Swaps the contents of two match_results.
1787 swap(match_results& __that)
1795 typedef match_results<const char*> cmatch;
1796 typedef match_results<string::const_iterator> smatch;
1798 typedef match_results<const wchar_t*> wcmatch;
1799 typedef match_results<wstring::const_iterator> wsmatch;
1802 // match_results comparisons
1804 * @brief Compares two match_results for equality.
1810 operator==(const match_results<_Bi_iter, _Alloc>& __m1,
1811 const match_results<_Bi_iter, _Alloc>& __m2)
1828 * @brief Compares two match_results for inequality.
1834 operator!=(const match_results<_Bi_iter, _Alloc>& __m1,
1835 const match_results<_Bi_iter, _Alloc>& __m2)
1838 // [7.10.6] match_results swap
1844 * The contents of the two match_results objects are swapped.
1848 swap(match_results<_Bi_iter, _Alloc>& __lhs,
1849 match_results<_Bi_iter, _Alloc>& __rhs)
1880 match_results<_Bi_iter, _Alloc>& __m,
1914 match_results<_Bi_iter> __what;
1935 match_results<const _Ch_type*, _Alloc>& __m,
1959 match_results<typename basic_string<_Ch_type,
2029 match_results<_Bi_iter, _Alloc>& __m,
2054 match_results<_Bi_iter> __what;
2074 match_results<const _Ch_type*, _Alloc>& __m,
2137 match_results<typename basic_string<_Ch_type,
2208 typedef match_results<_Bi_iter> value_type;
2297 match_results<_Bi_iter> match;