Home
last modified time | relevance | path

Searched refs:cref (Results 1 – 9 of 9) sorted by relevance

/ndk/tests/device/test-stlport/unit/
Dreference_wrapper_test.cpp17 CPPUNIT_TEST(cref);
22 void cref();
58 void RefWrapperTest::cref() in cref() function in RefWrapperTest
68 crr_type r1 = std::tr1::cref(i); in cref()
72 r1 = std::tr1::cref(j); in cref()
/ndk/tests/device/test-gnustl-full/unit/
Dreference_wrapper_test.cpp17 CPPUNIT_TEST(cref);
22 void cref();
58 void RefWrapperTest::cref() in cref() function in RefWrapperTest
68 crr_type r1 = std::tr1::cref(i); in cref()
72 r1 = std::tr1::cref(j); in cref()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/
Dcref_2.pass.cpp22 std::reference_wrapper<const int> r1 = std::cref(i); in main()
23 std::reference_wrapper<const int> r2 = std::cref(r1); in main()
Dcref_1.pass.cpp22 std::reference_wrapper<const int> r = std::cref(i); in main()
/ndk/sources/cxx-stl/stlport/stlport/
Dfunctional58 template<class T> inline reference_wrapper<T const> const cref(T const &);
76 using ::boost::cref;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
Dref.hpp69 template<class T> inline reference_wrapper<T const> BOOST_REF_CONST cref(T const & t) in cref() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
D__functional_base478 cref(const _Tp& __t) _NOEXCEPT
486 cref(reference_wrapper<_Tp> __t) _NOEXCEPT
488 return cref(__t.get());
495 template <class _Tp> void cref(const _Tp&&) = delete;
500 template <class _Tp> void cref(const _Tp&&);// = delete;
D__functional_base_031074 cref(const _Tp& __t)
1082 cref(reference_wrapper<_Tp> __t)
1084 return cref(__t.get());
Dfunctional67 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;