Searched refs:cref (Results 1 – 9 of 9) sorted by relevance
17 CPPUNIT_TEST(cref);22 void cref();58 void RefWrapperTest::cref() in cref() function in RefWrapperTest68 crr_type r1 = std::tr1::cref(i); in cref()72 r1 = std::tr1::cref(j); in cref()
22 std::reference_wrapper<const int> r1 = std::cref(i); in main()23 std::reference_wrapper<const int> r2 = std::cref(r1); in main()
22 std::reference_wrapper<const int> r = std::cref(i); in main()
58 template<class T> inline reference_wrapper<T const> const cref(T const &);76 using ::boost::cref;
69 template<class T> inline reference_wrapper<T const> BOOST_REF_CONST cref(T const & t) in cref() function
478 cref(const _Tp& __t) _NOEXCEPT486 cref(reference_wrapper<_Tp> __t) _NOEXCEPT488 return cref(__t.get());495 template <class _Tp> void cref(const _Tp&&) = delete;500 template <class _Tp> void cref(const _Tp&&);// = delete;
1074 cref(const _Tp& __t)1082 cref(reference_wrapper<_Tp> __t)1084 return cref(__t.get());
67 template <class T> reference_wrapper<const T> cref(const T& t) noexcept;68 template <class T> void cref(const T&& t) = delete;69 template <class T> reference_wrapper<const T> cref(reference_wrapper<T> t) noexcept;