Searched defs:ref (Results 1 - 16 of 16) sorted by relevance

/ndk/tests/device/test-gnustl-full/unit/
H A Dmath_aux.h19 bool are_equals(_Tp val, _Tp ref) { argument
20 if (val < ref) {
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon();
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
H A Dreference_wrapper_test.cpp16 CPPUNIT_TEST(ref);
21 void ref();
27 void RefWrapperTest::ref() function in class:RefWrapperTest
37 rr_type r1 = std::tr1::ref(i);
41 r1 = std::tr1::ref(j);
H A Dmvctor_test.cpp64 string const ref_str("ref string, big enough to be a dynamic one");
727 multiset<string> ref; local
729 ref.insert(long_str);
731 vector<multiset<string> > vect(10, ref);
757 unordered_multiset<string> ref; local
759 ref.insert(long_str);
761 vector<unordered_multiset<string> > vect(10, ref);
H A Ddeque_test.cpp185 deque<int> ref; local
187 ref.push_back(i);
190 deque<deque<int> > d_d_int(1, ref);
192 d_d_int.push_back(ref);
195 d_d_int.push_back(ref);
198 CPPUNIT_ASSERT( d_d_int[i] == ref );
H A Dnum_facets_test.cpp45 string ref = "1"; local
47 ref += npct.thousands_sep();
49 ref += "234";
50 ref += npct.decimal_point();
51 ref += "56";
53 CPPUNIT_ASSERT( fostr.str() == ref );
56 ref = "1";
57 ref += npct.decimal_point();
58 ref += "23457e+";
61 ref
[all...]
H A Dnum_put_get_test.cpp56 static bool check_float(float val, float ref) argument
59 return val <= ref + epsilon && val >= ref - epsilon;
62 static bool check_double(double val, double ref) argument
65 return val <= ref + epsilon && val >= ref - epsilon;
H A Dvector_test.cpp346 vector<int> ref; local
348 ref.push_back(i);
351 vector<vector<int> > v_v_int(1, ref);
353 v_v_int.push_back(ref);
356 v_v_int.push_back(ref);
360 CPPUNIT_ASSERT( *vvit == ref );
368 CPPUNIT_ASSERT( *vvit == ref );
/ndk/tests/device/test-stlport/unit/
H A Dmath_aux.h19 bool are_equals(_Tp val, _Tp ref) { argument
20 if (val < ref) {
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon();
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
H A Dreference_wrapper_test.cpp16 CPPUNIT_TEST(ref);
21 void ref();
27 void RefWrapperTest::ref() function in class:RefWrapperTest
37 rr_type r1 = std::tr1::ref(i);
41 r1 = std::tr1::ref(j);
H A Dmvctor_test.cpp64 string const ref_str("ref string, big enough to be a dynamic one");
727 multiset<string> ref; local
729 ref.insert(long_str);
731 vector<multiset<string> > vect(10, ref);
757 unordered_multiset<string> ref; local
759 ref.insert(long_str);
761 vector<unordered_multiset<string> > vect(10, ref);
H A Ddeque_test.cpp185 deque<int> ref; local
187 ref.push_back(i);
190 deque<deque<int> > d_d_int(1, ref);
192 d_d_int.push_back(ref);
195 d_d_int.push_back(ref);
198 CPPUNIT_ASSERT( d_d_int[i] == ref );
H A Dnum_facets_test.cpp45 string ref = "1"; local
47 ref += npct.thousands_sep();
49 ref += "234";
50 ref += npct.decimal_point();
51 ref += "56";
53 CPPUNIT_ASSERT( fostr.str() == ref );
56 ref = "1";
57 ref += npct.decimal_point();
58 ref += "23457e+";
61 ref
[all...]
H A Dnum_put_get_test.cpp56 static bool check_float(float val, float ref) argument
59 return val <= ref + epsilon && val >= ref - epsilon;
62 static bool check_double(double val, double ref) argument
65 return val <= ref + epsilon && val >= ref - epsilon;
H A Dvector_test.cpp346 vector<int> ref; local
348 ref.push_back(i);
351 vector<vector<int> > v_v_int(1, ref);
353 v_v_int.push_back(ref);
356 v_v_int.push_back(ref);
360 CPPUNIT_ASSERT( *vvit == ref );
368 CPPUNIT_ASSERT( *vvit == ref );
/ndk/sources/host-tools/make-3.81/
H A Djob.c1519 char *in, *out, *ref;
1527 while ((ref = strchr (in, '$')) != 0)
1529 ++ref; /* Move past the $. */
1535 bcopy (in, out, ref - in);
1538 out += ref - in;
1539 in = ref;
1541 if (*ref == '(' || *ref == '{')
1543 char openparen = *ref;
1563 for (p = in - 1; p > ref
1513 char *in, *out, *ref; local
[all...]
H A Dmain.c2669 static const char ref[] = "$(MAKEOVERRIDES)";
2890 bcopy (ref, p, sizeof ref - 1);
2891 p += sizeof ref - 1;
2663 static const char ref[] = "$(MAKEOVERRIDES)"; local

Completed in 324 milliseconds