Searched refs:checkEq (Results 1 – 3 of 3) sorted by relevance
/external/crcalc/tests/src/com/hp/creals/ |
D | SlowCRTest.java | 36 private static void checkEq(CR x, CR y, String s) { in checkEq() method in SlowCRTest 83 checkEq(ARCSINE.execute(x), x.asin(), in checkTrig() 89 checkEq(COSINE.execute(x), x.cos(), in checkTrig() 96 checkEq( in checkTrig() 101 checkEq(x.cos().multiply(x.cos()).add(x.sin().multiply(x.sin())), in checkTrig() 105 checkEq(x, TAN.execute(ATAN.execute(x)), in checkTrig() 117 checkEq(tmp, tmp2, "Asin(sin) computations differ:" + xAsDouble); in checkTrig() 132 checkEq(x, x.exp().ln(), "ln(exp) failed:" + xAsDouble); in checkExpLn() 133 checkEq(x.multiply(CR.valueOf(2)).exp(), in checkExpLn() 141 checkEq(x, x.ln().exp(), "exp(ln) failed:" + xAsDouble); in checkExpLn() [all …]
|
/external/parameter-framework/upstream/test/functional-tests/ |
D | Handle.cpp | 153 static void checkEq(const string &result, const string &expected) in checkEq() function 184 checkEq(canonicalizeXML(result), canonicalizeXML(expected)); in checkXMLEq() 335 checkEq(showBytes(result), expect); in checkBytesEq() 339 checkEq(showBytes(result), showBytes(expect)); in checkBytesEq()
|
/external/jsoncpp/src/test_lib_json/ |
D | main.cpp | 3375 ValueCheck checkEq(const Value& v) { in checkEq() function 3396 {__LINE__, R"({"a":,"b":true})", 2, objGetAnd("a", checkEq(nullValue))}, in JSONTEST_FIXTURE_LOCAL() 3397 {__LINE__, R"({"a":,"b":true})", 2, objGetAnd("a", checkEq(nullValue))}, in JSONTEST_FIXTURE_LOCAL() 3398 {__LINE__, R"({"a":})", 1, objGetAnd("a", checkEq(nullValue))}, in JSONTEST_FIXTURE_LOCAL() 3399 {__LINE__, "[]", 0, checkEq(emptyArray)}, in JSONTEST_FIXTURE_LOCAL() 3409 {__LINE__, "[[],,,]", 4, arrGetAnd(0, checkEq(emptyArray))}, in JSONTEST_FIXTURE_LOCAL() 3410 {__LINE__, "[,[],,]", 4, arrGetAnd(1, checkEq(emptyArray))}, in JSONTEST_FIXTURE_LOCAL() 3411 {__LINE__, "[,,,[]]", 4, arrGetAnd(3, checkEq(emptyArray))}, in JSONTEST_FIXTURE_LOCAL()
|