Home
last modified time | relevance | path

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

/third_party/skia/tests/
DCompressedBackendAllocationTest.cpp97 SkAutoPixmapStorage actual2; in check_compressed_mipmaps() local
98 SkAssertResult(actual2.tryAlloc(readbackII)); in check_compressed_mipmaps()
99 actual2.erase(SkColors::kTransparent); in check_compressed_mipmaps()
101 bool result = surf->readPixels(actual2, 0, 0); in check_compressed_mipmaps()
107 check_solid_pixmap(reporter, expectedColors[i], actual2, in check_compressed_mipmaps()
/third_party/flutter/skia/tests/
DBackendAllocationTest.cpp238 SkAutoPixmapStorage actual2; in test_color_init() local
239 SkAssertResult(actual2.tryAlloc(newII)); in test_color_init()
240 actual2.erase(SkColors::kTransparent); in test_color_init()
266 bool result = surf->readPixels(actual2, 0, 0); in test_color_init()
269 SkColor actualColor = actual2.getColor(0, 0); in test_color_init()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DIntlTestDecimalFormatSymbols.java394 String actual2 = dfs.getPercentString(); in testNumberingSystem() local
396 expectedPercentSign, actual2); in testNumberingSystem()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DIntlTestDecimalFormatSymbols.java397 String actual2 = dfs.getPercentString(); in testNumberingSystem() local
399 expectedPercentSign, actual2); in testNumberingSystem()
/third_party/icu/icu4c/source/test/intltest/
Dtsdcfmsy.cpp386 UnicodeString actual2 = dfs.getSymbol(DecimalFormatSymbols::kPercentSymbol); in testNumberingSystem() local
389 actual2); in testNumberingSystem()
Dnumbertest_api.cpp5397 UnicodeString actual2 = l2.formatDouble(d, status).toString(status); in assertFormatDescending() local
5399 assertEquals(message + u": Safe Path: " + caseNumber, expected, actual2); in assertFormatDescending()
5467 UnicodeString actual2 = l2.formatDouble(d, status).toString(status); in assertFormatDescendingBig() local
5469 assertEquals(message + u": Safe Path: " + caseNumber, expected, actual2); in assertFormatDescendingBig()
5531 UnicodeString actual2 = l2.formatDouble(input, status).toString(status); in assertFormatSingle() local
5533 assertEquals(message + u": Safe Path", expected, actual2); in assertFormatSingle()
Dapicoll.cpp1718 Locale actual2 = coll2->getLocale(ULOC_ACTUAL_LOCALE, status); in TestGetLocale() local
1719 if(actual2 != locale) { in TestGetLocale()
1721 locale.getName(), actual2.getName()); in TestGetLocale()
Ddtfmttst.cpp2624 Locale actual2; in TestDateFormatSymbolsClone() local
2625 if (!getActualAndValidLocales(*fmtClone, valid2, actual2)) { in TestDateFormatSymbolsClone()
2629 if (valid1 != valid2 || actual1 != actual2) { in TestDateFormatSymbolsClone()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
DNumberFormatterApiTest.java3153 String actual2 = l2.format(d).toString(); in assertFormatDescending() local
3154 assertEquals(message + ": Safe Path: " + d, expected[i], actual2); in assertFormatDescending()
3201 String actual2 = l2.format(input).toString(); in assertFormatSingle() local
3202 assertEquals(message + ": Safe Path: " + input, expected, actual2); in assertFormatSingle()
3242 String actual2 = l2.format(input).toString(); in assertFormatSingleMeasure() local
3243 assertEquals(message + ": Safe Path: " + input, expected, actual2); in assertFormatSingleMeasure()
/third_party/flutter/flutter/packages/flutter/test/painting/
Dgradient_test.dart468 final RadialGradient actual2 = RadialGradient.lerp(testGradient1, testGradient3, 0.5);
469 expect(actual2, const RadialGradient(
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationAPITest.java1145 ULocale actual2 = coll2.getLocale(ULocale.ACTUAL_LOCALE);
1146 if(!actual2.equals(locale)) {
1148 locale.getName(), actual2.getName()));
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
DCollationAPITest.java1148 ULocale actual2 = coll2.getLocale(ULocale.ACTUAL_LOCALE);
1149 if(!actual2.equals(locale)) {
1151 locale.getName(), actual2.getName()));
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DNumberFormatterApiTest.java5083 String actual2 = l2.format(d).toString(); in assertFormatDescending() local
5084 assertEquals(message + ": Safe Path: " + d, expected[i], actual2); in assertFormatDescending()
5131 String actual2 = l2.format(input).toString(); in assertFormatSingle() local
5132 assertEquals(message + ": Safe Path: " + input, expected, actual2); in assertFormatSingle()
5172 String actual2 = l2.format(input).toString(); in assertFormatSingleMeasure() local
5173 assertEquals(message + ": Safe Path: " + input, expected, actual2); in assertFormatSingleMeasure()
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dmock_canvas.dart1000 final T2 actual2 = arguments[1];
1001 if (expected2 != null && actual2 != expected2)
1002 …throw 'It called $methodName with its second argument (a $T2), $actual2, which was not exactly the…