Home
last modified time | relevance | path

Searched refs:actualString (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/angle2/util/
Dtest_utils_unittest.cpp96 char actualString[kMaxPath]; in TEST() local
97 EXPECT_TRUE(ReadEntireFileToString(path, actualString, kMaxPath)); in TEST()
98 EXPECT_EQ(strcmp(actualString, kOutputString), 0); in TEST()
124 char actualString[kMaxPath]; in TEST() local
125 EXPECT_TRUE(ReadEntireFileToString(path, actualString, kMaxPath)); in TEST()
126 EXPECT_EQ(strcmp(actualString, kOutputString), 0); in TEST()
/third_party/icu/icu4c/source/test/cintltst/
Dcintltst.h136 const char* actualString);
143 const UChar* actualString);
Duformattedvaluetst.c196 const UChar* actualString = ufmtval_getString(fv, &length, ec); in checkFormattedValueString() local
203 int32_t actualLength = u_strlen(actualString); in checkFormattedValueString()
205 assertUEquals(message, expectedString, actualString); in checkFormattedValueString()
/third_party/node/test/sequential/
Dtest-inspector-async-stack-traces-promise-then.js65 const actualString = JSON.stringify(actual);
68 `Expected ${actualString} to contain ${expectedString}.`);
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
DDecimalQuantityTest.java684 String actualString = fn.toString(); in testCompactDecimalSuppressedExponent() local
694 actualString); in testCompactDecimalSuppressedExponent()
728 actualString); in testCompactDecimalSuppressedExponent()
774 String actualString = fn.toString(); in testCompactNotationFractionPluralOperands() local
807 actualString); in testCompactNotationFractionPluralOperands()
843 String actualString = fnCompact.toString(); in testSuppressedExponentUnchangedByInitialScaling() local
850 actualString); in testSuppressedExponentUnchangedByInitialScaling()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DDecimalQuantityTest.java696 String actualString = fn.toString(); in testScientificAndCompactSuppressedExponent() local
707 actualString); in testScientificAndCompactSuppressedExponent()
747 actualString); in testScientificAndCompactSuppressedExponent()
799 String actualString = fn.toString(); in testCompactNotationFractionPluralOperands() local
836 actualString); in testCompactNotationFractionPluralOperands()
874 String actualString = fnCompact.toString(); in testSuppressedExponentUnchangedByInitialScaling() local
882 actualString); in testSuppressedExponentUnchangedByInitialScaling()
/third_party/icu/icu4c/source/test/intltest/
Dnumfmtdatadriventest.cpp388 UnicodeString actualString = result.getDecimalQuantity()->toScientificString(); in isParsePass() local
389 if (expectedString != actualString) { in isParsePass()
392 actualString + " (" + ppos.getIndex() + ":" + ppos.getErrorIndex() + ")"); in isParsePass()
Dnumbertest_decimalquantity.cpp591 UnicodeString actualString = fn.toString(status); in testScientificAndCompactSuppressedExponent() local
601 actualString); in testScientificAndCompactSuppressedExponent()
688 UnicodeString actualString = fnCompact.toString(status); in testSuppressedExponentUnchangedByInitialScaling() local
696 actualString); in testSuppressedExponentUnchangedByInitialScaling()
Ditrbnf.cpp2381 UnicodeString actualString; in doTest() local
2383 formatter->format(expectedNumber, actualString/* , pos*/, status); in doTest()
2391 if (actualString != expectedString) { in doTest()
2397 msg.append(actualString); in doTest()
2401 logln(actualString); in doTest()
2404 formatter->parse(actualString, parsedNumber, status); in doTest()
2407 msg.append(actualString); in doTest()
2417 msg.append(actualString); in doTest()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
DTestFmwk.java592 String actualString = actual == null ? "null" : Arrays.asList(actual).toString(); in assertEquals() local
593 return assertEquals(message, expectedString, actualString); in assertEquals()
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestFmwk.java591 String actualString = actual == null ? "null" : Arrays.asList(actual).toString(); in assertEquals() local
592 return assertEquals(message, expectedString, actualString); in assertEquals()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DDateIntervalFormatTest.java1851 String actualString = difmt.format(di, actual, pos).toString(); in TestFPos_SkelWithSeconds() local
1853 if (!actualString.equals(expectPosFmt.format) || in TestFPos_SkelWithSeconds()
1857 … "\"; get " + pos.getBeginIndex() + "-" + pos.getEndIndex() + " \"" + actualString + "\""); in TestFPos_SkelWithSeconds()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateIntervalFormatTest.java2006 String actualString = difmt.format(di, actual, pos).toString(); in TestFPos_SkelWithSeconds() local
2008 if (!actualString.equals(expectPosFmt.format) || in TestFPos_SkelWithSeconds()
2012 … "\"; get " + pos.getBeginIndex() + "-" + pos.getEndIndex() + " \"" + actualString + "\""); in TestFPos_SkelWithSeconds()
/third_party/typescript/src/harness/
DfourslashImpl.ts4493 const actualString = quoted ? "\"" + actual + "\"" : actual; constant
4494 …n${expectedString}\n\n${actualMsg}:\n${highlightDifferenceBetweenStrings(expected, actualString)}`;