Home
last modified time | relevance | path

Searched refs:testCase (Results 1 - 25 of 213) sorted by relevance

123456789

/third_party/icu/icu4c/source/test/intltest/
H A Dunits_test.cpp150 for (const auto &testCase : testCases) { in testExtractConvertibility()
151 MeasureUnitImpl source = MeasureUnitImpl::forIdentifier(testCase.source, status); in testExtractConvertibility()
153 testCase.source)) { in testExtractConvertibility()
156 MeasureUnitImpl target = MeasureUnitImpl::forIdentifier(testCase.target, status); in testExtractConvertibility()
158 testCase.target)) { in testExtractConvertibility()
167 if (status.errIfFailureAndReset("extractConvertibility(<%s>, <%s>, ...)", testCase.source, in testExtractConvertibility()
168 testCase.target)) { in testExtractConvertibility()
172 assertEquals(UnicodeString("Conversion Capability: ") + testCase.source + " to " + in testExtractConvertibility()
173 testCase.target, in testExtractConvertibility()
174 testCase in testExtractConvertibility()
[all...]
H A Duts46test.cpp719 const TestCase &testCase=testCases[i]; in TestSomeCases() local
720 UnicodeString input(ctou(testCase.s)); in TestSomeCases()
721 UnicodeString expected(ctou(testCase.u)); in TestSomeCases()
730 (int)i, testCase.o, testCase.s) in TestSomeCases()
735 uint32_t uniErrors=testCase.errors&~ in TestSomeCases()
738 char mode=testCase.o[0]; in TestSomeCases()
742 (int)i, testCase.s, (long)uNInfo.getErrors()); in TestSomeCases()
748 (int)i, testCase.s, buffer); in TestSomeCases()
751 if(aNInfo.getErrors()!=testCase in TestSomeCases()
[all...]
H A Dssearch.cpp149 const UXMLElement *testCase; in searchTest() local
152 while((testCase = root->nextChildElement(tc)) != NULL) { in searchTest()
154 if (testCase->getTagName().compare("test-case") != 0) { in searchTest()
158 const UnicodeString *id = testCase->getAttribute("id"); in searchTest()
172 const UnicodeString *strength = testCase->getAttribute("strength"); in searchTest()
193 const UnicodeString *norm = testCase->getAttribute("norm"); in searchTest()
203 const UnicodeString *alt = testCase->getAttribute("alternate_handling"); in searchTest()
211 const UnicodeString *locale = testCase->getAttribute("locale"); in searchTest()
226 n = testCase->getChildElement("pattern"); in searchTest()
236 n = testCase in searchTest()
1075 append(UnicodeString &testCase, UnicodeString &alternate) append() argument
1103 generateAlternative(const UnicodeString &testCase, UnicodeString &alternate) generateAlternative() argument
1163 generateTestCase(UCollator *coll, Monkey *monkeys[], int32_t monkeyCount, UnicodeString &testCase, UnicodeString &alternate) generateTestCase() argument
1314 monkeyTestCase(UCollator *coll, const UnicodeString &testCase, const UnicodeString &pattern, const UnicodeString &altPattern, const char *name, const char *strength, uint32_t seed) monkeyTestCase() argument
1389 UnicodeString testCase; monkeyTest() local
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/
H A DTestUtils.java18 static void runTestCase(TestCase testCase) { in runTestCase() argument
19 runTestCase(null, testCase); in runTestCase()
22 static void runTestCase(Mf2FunctionRegistry customFunctionsRegistry, TestCase testCase) { in runTestCase() argument
23 if (testCase.ignore) { in runTestCase()
30 .setPattern(testCase.message) in runTestCase()
31 .setLocale(testCase.locale); in runTestCase()
37 String result = mf.formatToString(testCase.arguments); in runTestCase()
38 if (!testCase.errors.isEmpty()) { in runTestCase()
39 fail(reportCase(testCase) + "\nExpected error, but it didn't happen.\n" in runTestCase()
42 assertEquals(reportCase(testCase), testCas in runTestCase()
52 reportCase(TestCase testCase) reportCase() argument
[all...]
/third_party/node/test/parallel/
H A Dtest-querystring.js212 qsTestCases.forEach((testCase) => {
213 check(qs.parse(testCase[0]), testCase[2], testCase[0]);
217 qsColonTestCases.forEach((testCase) => {
218 check(qs.parse(testCase[0], ';', ':'), testCase[2], testCase[0]);
222 qsWeirdObjects.forEach((testCase) => {
223 check(qs.parse(testCase[
[all...]
H A Dtest-http-response-status-message.js42 const matching = this.filter(function(testCase) {
43 return testCase.path === path;
54 const testCase = testCases.findByPath(path);
56 connection.write(testCase.response);
64 const testCase = testCases[testCaseIndex];
68 path: testCase.path
70 console.log(`client: expected status message: ${testCase.statusMessage}`);
72 assert.strictEqual(testCase.statusMessage, response.statusMessage);
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cCopyImageTests.hpp116 struct testCase struct in gl4cts::CopyImage::FunctionalTest
141 bool copyAndVerify(const testCase& test_case, const glw::GLubyte** dst_pixels, const glw::GLubyte** src_pixels);
143 void getCleanRegions(const testCase& test_case, glw::GLuint dst_level, glw::GLuint out_corners[4][4],
157 bool verify(const testCase& test_case, glw::GLuint dst_layer, const glw::GLubyte** dst_pixels,
167 std::vector<testCase> m_test_cases;
209 struct testCase struct in gl4cts::CopyImage::SmokeTest
221 bool compareImages(const testCase& test_case, const glw::GLubyte* left_data, const glw::GLubyte* right_data) const;
223 bool copyAndVerify(const testCase& test_case, const glw::GLubyte* src_pixels);
225 void getPixels(glw::GLuint name, const testCase& test_case, glw::GLubyte* out_pixels) const;
227 void prepareDstPxls(const testCase
270 struct testCase global() struct in gl4cts::CopyImage::InvalidTargetTest
308 struct testCase global() struct in gl4cts::CopyImage::TargetMismatchTest
347 struct testCase global() struct in gl4cts::CopyImage::IncompleteTexTest
386 struct testCase global() struct in gl4cts::CopyImage::IncompatibleFormatsTest
430 struct testCase global() struct in gl4cts::CopyImage::SamplesMismatchTest
470 struct testCase global() struct in gl4cts::CopyImage::IncompatibleFormatsCompressionTest
513 struct testCase global() struct in gl4cts::CopyImage::InvalidObjectTest
553 struct testCase global() struct in gl4cts::CopyImage::NonExistentMipMapTest
590 struct testCase global() struct in gl4cts::CopyImage::ExceedingBoundariesTest
640 struct testCase global() struct in gl4cts::CopyImage::InvalidAlignmentTest
682 struct testCase global() struct in gl4cts::CopyImage::IntegerTexTest
[all...]
H A Dgl3cTextureSwizzleTests.hpp206 struct testCase struct in gl3cts::TextureSwizzle::SmokeTest
220 void captureAndVerify(const testCase& test_case, size_t output_format_index, glw::GLint output_channel_size,
228 void executeTestCase(const testCase& test_case);
232 std::string getFragmentShader(const testCase& test_case, size_t output_format_index, bool is_tested_stage);
234 std::string getVertexShader(const testCase& test_case, bool is_tested_stage);
242 void logTestCaseDetials(const testCase& test_case);
244 void prepareAndTestProgram(const testCase& test_case, size_t output_format_index, glw::GLint output_channel_size,
247 std::string prepareArguments(const testCase& test_case);
248 std::string prepareCoordinates(const testCase& test_case);
250 std::string prepareDerivatives(const testCase
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/
H A DUnitsTest.java168 for (TestCase testCase : testCases) { in testComplexUnitsConverter()
169 input = MeasureUnit.forIdentifier(testCase.input); in testComplexUnitsConverter()
170 output = MeasureUnit.forIdentifier(testCase.output); in testComplexUnitsConverter()
175 testCase.testATestCase(converter1); in testComplexUnitsConverter()
178 ComplexUnitsConverter converter2 = new ComplexUnitsConverter(testCase.input, testCase.output); in testComplexUnitsConverter()
179 testCase.testATestCase(converter2); in testComplexUnitsConverter()
231 for (TestCase testCase : testCases) { in testComplexUnitsConverterSorting()
232 MeasureUnitImpl input = MeasureUnitImpl.forIdentifier(testCase.inputUnit); in testComplexUnitsConverterSorting()
233 MeasureUnitImpl output = MeasureUnitImpl.forIdentifier(testCase in testComplexUnitsConverterSorting()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/amber/
H A DvktAmberTestCaseUtil.cpp155 AmberTestCase *testCase = new AmberTestCase(testCtx, m_testnameField, m_descField, testFilename); in parse() local
164 testCase->addRequirement(m_scratch); in parse()
171 return testCase; in parse()
179 AmberTestCase* testCase = 0; in createAmberTestsFromIndexFile() local
184 testCase = parser.parse(category, testCtx); in createAmberTestsFromIndexFile()
185 if (testCase) in createAmberTestsFromIndexFile()
187 group->addChild(testCase); in createAmberTestsFromIndexFile()
189 } while (testCase); in createAmberTestsFromIndexFile()
208 AmberTestCase *testCase = new AmberTestCase(testCtx, name, description, readFilename); in createAmberTestCase() local
211 testCase in createAmberTestCase()
[all...]
/third_party/icu/icu4c/source/test/perf/collperf2/
H A Dcollperf2.cpp1446 Strcoll *testCase = new Strcoll(coll, getData16(status), true /* useLen */); in TestStrcoll() local
1448 delete testCase; in TestStrcoll()
1451 return testCase; in TestStrcoll()
1457 Strcoll *testCase = new Strcoll(coll, getData16(status), false /* useLen */); in TestStrcollNull() local
1459 delete testCase; in TestStrcollNull()
1462 return testCase; in TestStrcollNull()
1468 Strcoll_2 *testCase = new Strcoll_2(coll, getData16(status), getModData16(status), true /* useLen */); in TestStrcollSimilar() local
1470 delete testCase; in TestStrcollSimilar()
1473 return testCase; in TestStrcollSimilar()
1479 StrcollUTF8 *testCase in TestStrcollUTF8() local
1490 StrcollUTF8 *testCase = new StrcollUTF8(coll, getData8(status),false /* useLen */); TestStrcollUTF8Null() local
1501 StrcollUTF8_2 *testCase = new StrcollUTF8_2(coll, getData8(status), getModData8(status), true /* useLen */); TestStrcollUTF8Similar() local
1512 GetSortKey *testCase = new GetSortKey(coll, getData16(status), true /* useLen */); TestGetSortKey() local
1523 GetSortKey *testCase = new GetSortKey(coll, getData16(status), false /* useLen */); TestGetSortKeyNull() local
1534 NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 4 /* bufSize */); TestNextSortKeyPart_4All() local
1545 NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 4 /* bufSize */, 4 /* maxIteration */); TestNextSortKeyPart_4x4() local
1556 NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 4 /* bufSize */, 8 /* maxIteration */); TestNextSortKeyPart_4x8() local
1567 NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 32 /* bufSize */); TestNextSortKeyPart_32All() local
1578 NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 32 /* bufSize */, 2 /* maxIteration */); TestNextSortKeyPart_32x2() local
1589 NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 4 /* bufSize */); TestNextSortKeyPartUTF8_4All() local
1600 NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 4 /* bufSize */, 4 /* maxIteration */); TestNextSortKeyPartUTF8_4x4() local
1611 NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 4 /* bufSize */, 8 /* maxIteration */); TestNextSortKeyPartUTF8_4x8() local
1622 NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 32 /* bufSize */); TestNextSortKeyPartUTF8_32All() local
1633 NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 32 /* bufSize */, 2 /* maxIteration */); TestNextSortKeyPartUTF8_32x2() local
1644 CppCompare *testCase = new CppCompare(collObj, getData16(status), true /* useLen */); TestCppCompare() local
1655 CppCompare *testCase = new CppCompare(collObj, getData16(status), false /* useLen */); TestCppCompareNull() local
1666 CppCompare_2 *testCase = new CppCompare_2(collObj, getData16(status), getModData16(status), true /* useLen */); TestCppCompareSimilar() local
1677 CppCompareUTF8 *testCase = new CppCompareUTF8(collObj, getData8(status), true /* useLen */); TestCppCompareUTF8() local
1688 CppCompareUTF8 *testCase = new CppCompareUTF8(collObj, getData8(status), false /* useLen */); TestCppCompareUTF8Null() local
1699 CppCompareUTF8_2 *testCase = new CppCompareUTF8_2(collObj, getData8(status), getModData8(status), true /* useLen */); TestCppCompareUTF8Similar() local
1710 CppGetCollationKey *testCase = new CppGetCollationKey(collObj, getData16(status), true /* useLen */); TestCppGetCollationKey() local
1721 CppGetCollationKey *testCase = new CppGetCollationKey(collObj, getData16(status), false /* useLen */); TestCppGetCollationKeyNull() local
1731 UPerfFunction *testCase = new UniStrSort(*collObj, coll, getRandomData16(status)); TestUniStrSort() local
1741 UPerfFunction *testCase = new StringPieceSortCpp(*collObj, coll, getRandomData8(status)); TestStringPieceSortCpp() local
1751 UPerfFunction *testCase = new StringPieceSortC(*collObj, coll, getRandomData8(status)); TestStringPieceSortC() local
1761 UPerfFunction *testCase = new UniStrBinSearch(*collObj, coll, getSortedData16(status)); TestUniStrBinSearch() local
1771 UPerfFunction *testCase = new StringPieceBinSearchCpp(*collObj, coll, getSortedData8(status)); TestStringPieceBinSearchCpp() local
1781 UPerfFunction *testCase = new StringPieceBinSearchC(*collObj, coll, getSortedData8(status)); TestStringPieceBinSearchC() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/amber/
H A DvktAmberTestCaseUtil.cpp155 AmberTestCase *testCase = new AmberTestCase(testCtx, m_testnameField, m_descField, testFilename); in parse() local
164 testCase->addRequirement(m_scratch); in parse()
171 return testCase; in parse()
179 AmberTestCase* testCase = 0; in createAmberTestsFromIndexFile() local
184 testCase = parser.parse(category, testCtx); in createAmberTestsFromIndexFile()
185 if (testCase) in createAmberTestsFromIndexFile()
187 group->addChild(testCase); in createAmberTestsFromIndexFile()
189 } while (testCase); in createAmberTestsFromIndexFile()
218 AmberTestCase *testCase = new AmberTestCase(testCtx, name, description, readFilename); in createAmberTestCase() local
221 testCase in createAmberTestCase()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DUTS46Test.java500 TestCase testCase=new TestCase(); in TestSomeCases()
503 testCase.set(testCases[i]); in TestSomeCases()
504 String input=testCase.s; in TestSomeCases()
505 String expected=testCase.u; in TestSomeCases()
514 i, testCase.o, testCase.s, e)); in TestSomeCases()
519 uniErrors.addAll(testCase.errors); in TestSomeCases()
521 char mode=testCase.o.charAt(0); in TestSomeCases()
525 i, testCase.s, uNInfo.getErrors())); in TestSomeCases()
530 i, testCase in TestSomeCases()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUTS46Test.java594 TestCase testCase=new TestCase(); in TestSomeCases()
597 testCase.set(testCases[i]); in TestSomeCases()
598 String input=testCase.s; in TestSomeCases()
599 String expected=testCase.u; in TestSomeCases()
608 i, testCase.o, testCase.s, e)); in TestSomeCases()
613 uniErrors.addAll(testCase.errors); in TestSomeCases()
615 char mode=testCase.o.charAt(0); in TestSomeCases()
619 i, testCase.s, uNInfo.getErrors())); in TestSomeCases()
624 i, testCase in TestSomeCases()
[all...]
/third_party/glslang/gtests/
H A DConfig.FromFile.cpp52 TestCaseSpec testCase = GetParam(); in TEST_P() local
58 tryLoadFile(GlobalTestSettings.testRoot + "/" + testCase.input, "input", &shaderContents); in TEST_P()
59 tryLoadFile(GlobalTestSettings.testRoot + "/" + testCase.config, "limits config", &configContents); in TEST_P()
73 glslang::TShader shader(GetShaderStage(GetSuffix(testCase.input))); in TEST_P()
74 compile(&shader, shaderContents, "", testCase.controls, &resources); in TEST_P()
76 {testCase.input, shader.getInfoLog(), shader.getInfoDebugLog()}); in TEST_P()
81 program.link(testCase.controls); in TEST_P()
86 outputResultToStream(&stream, result, testCase.controls); in TEST_P()
90 GlobalTestSettings.testRoot + "/baseResults/" + testCase.output; in TEST_P()
/third_party/vk-gl-cts/modules/gles3/
H A Dtes3TestCaseWrapper.hpp43 void init (tcu::TestCase* testCase, const std::string& path);
44 void deinit (tcu::TestCase* testCase);
45 tcu::TestNode::IterateResult iterate (tcu::TestCase* testCase);
65 void TestCaseWrapper<TEST_PACKAGE>::init (tcu::TestCase* testCase, const std::string& path) in init() argument
70 testCase->init(); in init()
74 void TestCaseWrapper<TEST_PACKAGE>::deinit (tcu::TestCase* testCase) in deinit() argument
76 testCase->deinit(); in deinit()
83 tcu::TestNode::IterateResult TestCaseWrapper<TEST_PACKAGE>::iterate (tcu::TestCase* testCase) in iterate() argument
86 const tcu::TestCase::IterateResult result = testCase->iterate(); in iterate()
/third_party/vk-gl-cts/modules/gles31/
H A Dtes31TestCaseWrapper.hpp43 void init (tcu::TestCase* testCase, const std::string& path);
44 void deinit (tcu::TestCase* testCase);
45 tcu::TestNode::IterateResult iterate (tcu::TestCase* testCase);
65 void TestCaseWrapper<TEST_PACKAGE>::init (tcu::TestCase* testCase, const std::string& path) in init() argument
70 testCase->init(); in init()
74 void TestCaseWrapper<TEST_PACKAGE>::deinit (tcu::TestCase* testCase) in deinit() argument
76 testCase->deinit(); in deinit()
83 tcu::TestNode::IterateResult TestCaseWrapper<TEST_PACKAGE>::iterate (tcu::TestCase* testCase) in iterate() argument
86 const tcu::TestCase::IterateResult result = testCase->iterate(); in iterate()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DPersonNameFormatterTest.java71 for (String[] testCase : nameAndTestCases.testCases) { in executeTestCases()
72 Locale formatterLocale = Locale.forLanguageTag(testCase[0].replace('_', '-')); in executeTestCases()
73 PersonNameFormatter.Length formatterLength = PersonNameFormatter.Length.valueOf(testCase[1]); in executeTestCases()
74 PersonNameFormatter.Usage formatterUsage = PersonNameFormatter.Usage.valueOf(testCase[2]); in executeTestCases()
75 PersonNameFormatter.Formality formatterFormality = PersonNameFormatter.Formality.valueOf(testCase[3]); in executeTestCases()
76 Set<PersonNameFormatter.Options> formatterOptions = makeOptionsSet(testCase[4]); in executeTestCases()
77 String expectedResult = testCase[5]; in executeTestCases()
86 assertEquals("Wrong formatting result for " + nameAndTestCases.nameFields + "," + Arrays.toString(testCase), expectedResult, actualResult); in executeTestCases()
408 for (String[] testCase : testCases) { in TestLiteralTextElision2()
409 SimplePersonName name = buildPersonName(testCase[ in TestLiteralTextElision2()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles2/
H A Des2cTestPackage.cpp47 void init(tcu::TestCase* testCase, const std::string& path);
48 void deinit(tcu::TestCase* testCase);
49 tcu::TestNode::IterateResult iterate(tcu::TestCase* testCase);
66 void TestCaseWrapper::init(tcu::TestCase* testCase, const std::string& path) in init() argument
73 testCase->init(); in init()
76 void TestCaseWrapper::deinit(tcu::TestCase* testCase) in deinit() argument
78 testCase->deinit(); in deinit()
83 tcu::TestNode::IterateResult TestCaseWrapper::iterate(tcu::TestCase* testCase) in iterate() argument
96 result = testCase->iterate(); in iterate()
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcConfigPackage.cpp41 void init(tcu::TestCase* testCase, const std::string& path);
42 void deinit(tcu::TestCase* testCase);
43 tcu::TestNode::IterateResult iterate(tcu::TestCase* testCase);
54 void TestCaseWrapper::init(tcu::TestCase* testCase, const std::string&) in init() argument
56 testCase->init(); in init()
59 void TestCaseWrapper::deinit(tcu::TestCase* testCase) in deinit() argument
61 testCase->deinit(); in deinit()
64 tcu::TestNode::IterateResult TestCaseWrapper::iterate(tcu::TestCase* testCase) in iterate() argument
66 const tcu::TestCase::IterateResult result = testCase->iterate(); in iterate()
H A DglcNoDefaultContextPackage.cpp43 void init(tcu::TestCase* testCase, const std::string& path);
44 void deinit(tcu::TestCase* testCase);
45 tcu::TestNode::IterateResult iterate(tcu::TestCase* testCase);
56 void TestCaseWrapper::init(tcu::TestCase* testCase, const std::string&) in init() argument
58 testCase->init(); in init()
61 void TestCaseWrapper::deinit(tcu::TestCase* testCase) in deinit() argument
63 testCase->deinit(); in deinit()
66 tcu::TestNode::IterateResult TestCaseWrapper::iterate(tcu::TestCase* testCase) in iterate() argument
68 const tcu::TestCase::IterateResult result = testCase->iterate(); in iterate()
H A DglcSingleConfigTestPackage.cpp46 void init(tcu::TestCase* testCase, const std::string& path);
47 void deinit(tcu::TestCase* testCase);
48 tcu::TestNode::IterateResult iterate(tcu::TestCase* testCase);
65 void TestCaseWrapper::init(tcu::TestCase* testCase, const std::string& path) in init() argument
70 testCase->init(); in init()
73 void TestCaseWrapper::deinit(tcu::TestCase* testCase) in deinit() argument
75 testCase->deinit(); in deinit()
80 tcu::TestNode::IterateResult TestCaseWrapper::iterate(tcu::TestCase* testCase) in iterate() argument
93 result = testCase->iterate(); in iterate()
/third_party/vk-gl-cts/modules/internal/
H A DditTestPackage.cpp84 void init (tcu::TestCase* testCase, const std::string&) in init() argument
86 testCase->init(); in init()
89 void deinit (tcu::TestCase* testCase) in deinit() argument
91 testCase->deinit(); in deinit()
94 tcu::TestNode::IterateResult iterate (tcu::TestCase* testCase) in iterate() argument
96 return testCase->iterate(); in iterate()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/
H A DesextcTestPackage.cpp51 void init(tcu::TestCase* testCase, const std::string& path);
52 void deinit(tcu::TestCase* testCase);
53 tcu::TestNode::IterateResult iterate(tcu::TestCase* testCase);
69 void TestCaseWrapper::init(tcu::TestCase* testCase, const std::string& path) in init() argument
76 testCase->init(); in init()
79 void TestCaseWrapper::deinit(tcu::TestCase* testCase) in deinit() argument
81 testCase->deinit(); in deinit()
86 tcu::TestNode::IterateResult TestCaseWrapper::iterate(tcu::TestCase* testCase) in iterate() argument
92 result = testCase->iterate(); in iterate()
/third_party/skia/tests/
H A DSkUTFTest.cpp90 for (auto testCase : testCases) { in DEF_TEST()
91 const char* str = testCase.utf8String; in DEF_TEST()
92 REPORTER_ASSERT(r, testCase.expectedCount == SkUTF::CountUTF8(str, strlen(str))); in DEF_TEST()
108 for (auto testCase : testCases) { in DEF_TEST()
109 const char* str = testCase.utf8String; in DEF_TEST()
111 REPORTER_ASSERT(r, str == testCase.utf8String + strlen(testCase.utf8String)); in DEF_TEST()
112 REPORTER_ASSERT(r, uni == testCase.expected); in DEF_TEST()
131 str = testCase.utf8String; in DEF_TEST()

Completed in 16 milliseconds

123456789