Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 25 of 45) sorted by relevance

12

/ndk/tests/device/test-stlport/unit/
Dnum_facets_test.cpp45 string ref = "1"; in _num_put_get() local
47 ref += npct.thousands_sep(); in _num_put_get()
49 ref += "234"; in _num_put_get()
50 ref += npct.decimal_point(); in _num_put_get()
51 ref += "56"; in _num_put_get()
53 CPPUNIT_ASSERT( fostr.str() == ref ); in _num_put_get()
56 ref = "1"; in _num_put_get()
57 ref += npct.decimal_point(); in _num_put_get()
58 ref += "23457e+"; in _num_put_get()
61 ref += digits; in _num_put_get()
[all …]
Dmath_aux.h19 bool are_equals(_Tp val, _Tp ref) { in are_equals() argument
20 if (val < ref) { in are_equals()
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
Dreference_wrapper_test.cpp16 CPPUNIT_TEST(ref);
21 void ref();
27 void RefWrapperTest::ref() in ref() function in RefWrapperTest
37 rr_type r1 = std::tr1::ref(i); in ref()
41 r1 = std::tr1::ref(j); in ref()
Ddeque_test.cpp185 deque<int> ref; in auto_ref() local
187 ref.push_back(i); in auto_ref()
190 deque<deque<int> > d_d_int(1, ref); in auto_ref()
192 d_d_int.push_back(ref); in auto_ref()
195 d_d_int.push_back(ref); in auto_ref()
198 CPPUNIT_ASSERT( d_d_int[i] == ref ); in auto_ref()
Dvector_test.cpp346 vector<int> ref; in auto_ref() local
348 ref.push_back(i); in auto_ref()
351 vector<vector<int> > v_v_int(1, ref); in auto_ref()
353 v_v_int.push_back(ref); in auto_ref()
356 v_v_int.push_back(ref); in auto_ref()
360 CPPUNIT_ASSERT( *vvit == ref ); in auto_ref()
/ndk/tests/device/test-gnustl-full/unit/
Dnum_facets_test.cpp45 string ref = "1"; in _num_put_get() local
47 ref += npct.thousands_sep(); in _num_put_get()
49 ref += "234"; in _num_put_get()
50 ref += npct.decimal_point(); in _num_put_get()
51 ref += "56"; in _num_put_get()
53 CPPUNIT_ASSERT( fostr.str() == ref ); in _num_put_get()
56 ref = "1"; in _num_put_get()
57 ref += npct.decimal_point(); in _num_put_get()
58 ref += "23457e+"; in _num_put_get()
61 ref += digits; in _num_put_get()
[all …]
Dmath_aux.h19 bool are_equals(_Tp val, _Tp ref) { in are_equals() argument
20 if (val < ref) { in are_equals()
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
Dreference_wrapper_test.cpp16 CPPUNIT_TEST(ref);
21 void ref();
27 void RefWrapperTest::ref() in ref() function in RefWrapperTest
37 rr_type r1 = std::tr1::ref(i); in ref()
41 r1 = std::tr1::ref(j); in ref()
Ddeque_test.cpp185 deque<int> ref; in auto_ref() local
187 ref.push_back(i); in auto_ref()
190 deque<deque<int> > d_d_int(1, ref); in auto_ref()
192 d_d_int.push_back(ref); in auto_ref()
195 d_d_int.push_back(ref); in auto_ref()
198 CPPUNIT_ASSERT( d_d_int[i] == ref ); in auto_ref()
Dvector_test.cpp346 vector<int> ref; in auto_ref() local
348 ref.push_back(i); in auto_ref()
351 vector<vector<int> > v_v_int(1, ref); in auto_ref()
353 v_v_int.push_back(ref); in auto_ref()
356 v_v_int.push_back(ref); in auto_ref()
360 CPPUNIT_ASSERT( *vvit == ref ); in auto_ref()
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Dwarn-undefined-variables16 all: ; @echo ref $(EREF) $(UREF)',
17 '', 'ref');
23 ref");
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
Dxml_printer.hpp57 char const* ref = char_type[c]; in print_escaped() local
59 if( ref ) in print_escaped()
60 where_to << '&' << ref << ';'; in print_escaped()
Dwrap_stringstream.hpp50 basic_wrap_stringstream& ref();
83 basic_wrap_stringstream<CharT>::ref() in ref() function in boost::basic_wrap_stringstream
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/
Dref_2.pass.cpp22 std::reference_wrapper<int> r1 = std::ref(i); in main()
23 std::reference_wrapper<int> r2 = std::ref(r1); in main()
Dref_1.pass.cpp22 std::reference_wrapper<int> r = std::ref(i); in main()
Dref_1.fail.cpp26 std::reference_wrapper<const A> r = std::ref(source()); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
Dmake_tuple.pass.cpp26 std::tuple<int, int&, float&> t = std::make_tuple(1, std::ref(i), in main()
27 std::ref(j)); in main()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
Dvalidation.hpp38 …else ::boost::BOOST_RT_PARAM_NAMESPACE::cla::report_input_error( tr, format_stream().ref() << msg )
/ndk/sources/cxx-stl/stlport/stlport/
Dfunctional48 #include <boost/ref.hpp>
57 template<class T> reference_wrapper<T> const ref(T &);
75 using ::boost::ref;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
Dvalidation.hpp71 boost::BOOST_RT_PARAM_NAMESPACE::report_logic_error( format_stream().ref() << msg )
/ndk/build/tools/unwanted-symbols/x86_64/
Dlibgcc.a.variables.txt74 DW.ref.__gcc_personality_v0
/ndk/build/tools/unwanted-symbols/x86/
Dlibgcc.a.variables.txt75 DW.ref.__gcc_personality_v0
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
Dindirect_traits.hpp308 template <bool ref = true>
326 template <bool ref = true>
360 template <bool ref = true>
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwindLevel1-gcc-ext.c104 _Unwind_Backtrace(_Unwind_Trace_Fn callback, void *ref) { in _Unwind_Backtrace() argument
184 result = (*callback)((struct _Unwind_Context *)(&cursor), ref); in _Unwind_Backtrace()
/ndk/sources/host-tools/make-3.81/
Djob.c1513 char *in, *out, *ref; in new_job() local
1521 while ((ref = strchr (in, '$')) != 0) in new_job()
1523 ++ref; /* Move past the $. */ in new_job()
1529 bcopy (in, out, ref - in); in new_job()
1532 out += ref - in; in new_job()
1533 in = ref; in new_job()
1535 if (*ref == '(' || *ref == '{') in new_job()
1537 char openparen = *ref; in new_job()
1557 for (p = in - 1; p > ref && *p == '\\'; --p) in new_job()
1575 while (out > ref in new_job()

12