Lines Matching refs:TC
125 void doAppendSourceAllocTest(AppendOperatorTestcase const& TC) in doAppendSourceAllocTest() argument
133 const Ptr L = TC.lhs; in doAppendSourceAllocTest()
134 Str RShort = (Ptr)TC.rhs; in doAppendSourceAllocTest()
135 Str EShort = (Ptr)TC.expected_result(); in doAppendSourceAllocTest()
235 void doAppendSourceTest(AppendOperatorTestcase const& TC) in doAppendSourceTest() argument
242 const Ptr L = TC.lhs; in doAppendSourceTest()
243 const Ptr R = TC.rhs; in doAppendSourceTest()
244 const Ptr E = TC.expected_result(); in doAppendSourceTest()
378 for (auto const & TC : Cases) { in main() local
380 const char* LHS_In = TC.lhs; in main()
381 const char* RHS_In = TC.rhs; in main()
385 assert(PathEq(Res, (const char*)TC.expected_result())); in main()
388 doAppendSourceTest<char> (TC); in main()
390 doAppendSourceTest<wchar_t> (TC); in main()
392 doAppendSourceTest<char16_t>(TC); in main()
393 doAppendSourceTest<char32_t>(TC); in main()
395 for (auto const & TC : LongLHSCases) { in main() local
396 (void)TC; in main()
397 LIBCPP_ONLY(doAppendSourceAllocTest<char>(TC)); in main()
399 LIBCPP_ONLY(doAppendSourceAllocTest<wchar_t>(TC)); in main()