Home
last modified time | relevance | path

Searched refs:type_param (Results 1 – 25 of 35) sorted by relevance

12

/external/gtest/test/
Dgtest-unittest-api_test.cc152 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
169 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
175 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
181 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
192 EXPECT_STREQ(GetTypeName<int>().c_str(), test_case->type_param()); in TEST()
203 EXPECT_STREQ(GetTypeName<int>().c_str(), tests[0]->type_param()); in TEST()
215 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
225 EXPECT_TRUE(IsNull(test_info->type_param())); in TEST()
250 EXPECT_TRUE(IsNull(test_cases[0]->type_param())); in TearDown()
[all …]
Dgtest_xml_test_utils.py177 type_param = element.getAttributeNode('type_param')
178 if type_param and type_param.value:
179 type_param.value = '*'
/external/google-breakpad/src/testing/gtest/test/
Dgtest-unittest-api_test.cc152 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
169 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
175 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
181 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
192 EXPECT_STREQ(GetTypeName<int>().c_str(), test_case->type_param()); in TEST()
203 EXPECT_STREQ(GetTypeName<int>().c_str(), tests[0]->type_param()); in TEST()
215 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
225 EXPECT_TRUE(IsNull(test_info->type_param())); in TEST()
250 EXPECT_TRUE(IsNull(test_cases[0]->type_param())); in TearDown()
[all …]
Dgtest_xml_test_utils.py173 type_param = element.getAttributeNode('type_param')
174 if type_param and type_param.value:
175 type_param.value = '*'
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest-unittest-api_test.cc152 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
169 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
175 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
181 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
192 EXPECT_STREQ(GetTypeName<int>().c_str(), test_case->type_param()); in TEST()
203 EXPECT_STREQ(GetTypeName<int>().c_str(), tests[0]->type_param()); in TEST()
215 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
225 EXPECT_TRUE(IsNull(test_info->type_param())); in TEST()
250 EXPECT_TRUE(IsNull(test_cases[0]->type_param())); in TearDown()
[all …]
Dgtest_xml_test_utils.py177 type_param = element.getAttributeNode('type_param')
178 if type_param and type_param.value:
179 type_param.value = '*'
/external/opencv3/modules/ts/misc/
Dtestlog_parser.py15 self.type_param = xmlnode.getAttribute("type_param")
86 return self.type_param
132 return '::'.join(filter(None, [self.type_param, self.value_param]))
143 return '::'.join(filter(None, [name, fixture, self.type_param, self.value_param]))
150 if self.type_param:
151 if other.type_param:
152 r = cmp(self.type_param, other.type_param);
158 if other.type_param:
/external/opencv3/modules/ts/src/
Dts_perf.cpp279 const char* type_param = test_info->type_param(); in getCurrentTestNodeName() local
280 if (type_param != 0) in getCurrentTestNodeName()
281 (nodename += "--") += type_param; in getCurrentTestNodeName()
1483 const char* type_param = test_info->type_param(); in reportMetrics() local
1490 if (type_param) LOGD("type = %11s", type_param); in reportMetrics()
1599 const char* type_param = test_info->type_param(); in TearDown() local
1602 if (type_param) printf("[ TYPE ] \t%s\n", type_param), fflush(stdout); in TearDown()
Dts_gtest.cpp1053 const char* type_param,
1081 test_info->type_param(), in AddTestInfo()
3719 const char* type_param, in MakeAndRegisterTestInfo() argument
3726 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
4173 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
4176 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
4178 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
4179 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
4274 if (test_case.type_param() == NULL) { in OnTestCaseStart()
4277 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
[all …]
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
Dgtest.cc2219 const char* type_param, in MakeAndRegisterTestInfo() argument
2226 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
2673 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
2676 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
2678 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
2679 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
2766 if (test_case.type_param() == NULL) { in OnTestCaseStart()
2769 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
3292 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3293 OutputXmlAttribute(stream, kTestcase, "type_param", test_info.type_param()); in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h643 const char* type_param,
671 test_info->type_param(), in AddTestInfo()
/external/gtest/src/
Dgtest.cc2219 const char* type_param, in MakeAndRegisterTestInfo() argument
2226 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
2673 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
2676 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
2678 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
2679 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
2766 if (test_case.type_param() == NULL) { in OnTestCaseStart()
2769 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
3296 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3297 OutputXmlAttribute(stream, kTestcase, "type_param", test_info.type_param()); in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h643 const char* type_param,
671 test_info->type_param(), in AddTestInfo()
/external/mesa3d/src/gtest/src/
Dgtest.cc2231 const char* type_param, in MakeAndRegisterTestInfo() argument
2238 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
2667 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
2670 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
2672 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
2673 printf("TypeParam = %s", type_param); in PrintFullTestCommentIfPresent()
2763 if (test_case.type_param() == NULL) { in OnTestCaseStart()
2766 printf(", where TypeParam = %s\n", test_case.type_param()); in OnTestCaseStart()
3235 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3236 *stream << " type_param=\"" << EscapeXmlAttribute(test_info.type_param()) in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h622 const char* type_param,
650 test_info->type_param(), in AddTestInfo()
/external/llvm/utils/unittest/googletest/src/
Dgtest.cc2231 const char* type_param, in MakeAndRegisterTestInfo() argument
2238 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
2639 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
2642 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
2644 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
2645 printf("TypeParam = %s", type_param); in PrintFullTestCommentIfPresent()
2735 if (test_case.type_param() == NULL) { in OnTestCaseStart()
2738 printf(", where TypeParam = %s\n", test_case.type_param()); in OnTestCaseStart()
3207 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3208 *stream << " type_param=\"" << EscapeXmlAttribute(test_info.type_param()) in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h625 const char* type_param,
653 test_info->type_param(), in AddTestInfo()
/external/google-breakpad/src/testing/gtest/src/
Dgtest.cc2232 const char* type_param, in MakeAndRegisterTestInfo() argument
2239 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
2668 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
2671 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
2673 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
2674 printf("TypeParam = %s", type_param); in PrintFullTestCommentIfPresent()
2761 if (test_case.type_param() == NULL) { in OnTestCaseStart()
2764 printf(", where TypeParam = %s\n", test_case.type_param()); in OnTestCaseStart()
3258 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3259 *stream << " type_param=\"" << EscapeXmlAttribute(test_info.type_param()) in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h636 const char* type_param,
664 test_info->type_param(), in AddTestInfo()
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
Dgtest-all.cc1044 const char* type_param,
1072 test_info->type_param(), in AddTestInfo()
3703 const char* type_param, in MakeAndRegisterTestInfo() argument
3710 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
4157 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
4160 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
4162 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
4163 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
4250 if (test_case.type_param() == NULL) { in OnTestCaseStart()
4253 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
[all …]
/external/libvpx/libvpx/third_party/googletest/src/src/
Dgtest-all.cc1044 const char* type_param,
1072 test_info->type_param(), in AddTestInfo()
3703 const char* type_param, in MakeAndRegisterTestInfo() argument
3710 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
4157 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
4160 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
4162 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
4163 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
4250 if (test_case.type_param() == NULL) { in OnTestCaseStart()
4253 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
[all …]
/external/google-breakpad/src/testing/gtest/include/gtest/
Dgtest.h640 const char* type_param() const { in type_param() function
684 const char* type_param,
766 const char* type_param() const { in type_param() function
/external/llvm/utils/unittest/googletest/include/gtest/
Dgtest.h639 const char* type_param() const { in type_param() function
684 const char* type_param,
766 const char* type_param() const { in type_param() function
/external/mesa3d/src/gtest/include/gtest/
Dgtest.h639 const char* type_param() const { in type_param() function
684 const char* type_param,
766 const char* type_param() const { in type_param() function
/external/gtest/include/gtest/
Dgtest.h635 const char* type_param() const { in type_param() function
689 const char* type_param,
772 const char* type_param() const { in type_param() function

12