/ndk/tests/device/test-stlport/unit/ |
D | num_facets_test.cpp | 45 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 …]
|
D | math_aux.h | 19 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()
|
D | reference_wrapper_test.cpp | 16 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()
|
D | deque_test.cpp | 185 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()
|
D | vector_test.cpp | 346 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/ |
D | num_facets_test.cpp | 45 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 …]
|
D | math_aux.h | 19 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()
|
D | reference_wrapper_test.cpp | 16 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()
|
D | deque_test.cpp | 185 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()
|
D | vector_test.cpp | 346 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/ |
D | warn-undefined-variables | 16 all: ; @echo ref $(EREF) $(UREF)', 17 '', 'ref'); 23 ref");
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
D | xml_printer.hpp | 57 char const* ref = char_type[c]; in print_escaped() local 59 if( ref ) in print_escaped() 60 where_to << '&' << ref << ';'; in print_escaped()
|
D | wrap_stringstream.hpp | 50 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/ |
D | ref_2.pass.cpp | 22 std::reference_wrapper<int> r1 = std::ref(i); in main() 23 std::reference_wrapper<int> r2 = std::ref(r1); in main()
|
D | ref_1.pass.cpp | 22 std::reference_wrapper<int> r = std::ref(i); in main()
|
D | ref_1.fail.cpp | 26 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/ |
D | make_tuple.pass.cpp | 26 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/ |
D | validation.hpp | 38 …else ::boost::BOOST_RT_PARAM_NAMESPACE::cla::report_input_error( tr, format_stream().ref() << msg )
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | functional | 48 #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/ |
D | validation.hpp | 71 boost::BOOST_RT_PARAM_NAMESPACE::report_logic_error( format_stream().ref() << msg )
|
/ndk/build/tools/unwanted-symbols/x86_64/ |
D | libgcc.a.variables.txt | 74 DW.ref.__gcc_personality_v0
|
/ndk/build/tools/unwanted-symbols/x86/ |
D | libgcc.a.variables.txt | 75 DW.ref.__gcc_personality_v0
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
D | indirect_traits.hpp | 308 template <bool ref = true> 326 template <bool ref = true> 360 template <bool ref = true>
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | UnwindLevel1-gcc-ext.c | 104 _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/ |
D | job.c | 1513 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()
|