Home
last modified time | relevance | path

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

12

/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/googletest/googletest/test/
Dgtest-unittest-api_test.cc151 EXPECT_TRUE(IsNull(test_suite->type_param())); in TEST()
162 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
168 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
174 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
180 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
191 EXPECT_STREQ(GetTypeName<int>().c_str(), test_suite->type_param()); in TEST()
202 EXPECT_STREQ(GetTypeName<int>().c_str(), tests[0]->type_param()); in TEST()
214 EXPECT_TRUE(IsNull(test_suite->type_param())); in TEST()
224 EXPECT_TRUE(IsNull(test_info->type_param())); in TEST()
249 EXPECT_TRUE(IsNull(test_suites[0]->type_param())); in TearDown()
[all …]
Dgtest_xml_test_utils.py179 type_param = element.getAttributeNode('type_param')
180 if type_param and type_param.value:
181 type_param.value = '*'
/external/u-boot/scripts/
Dkernel-doc176 my $type_param = '\@(\w+)';
189 $type_param, "<tt><b>\$1</b></tt>" );
199 $type_param, "<span class=\"param\">\$1</span>" );
208 $type_param, "<parameter>\$1</parameter>" );
216 $type_param, "<parameter>\$1</parameter>" );
223 $type_param, "\\\\fI\$1\\\\fP" );
230 $type_param, "\$1" );
237 $type_param, "\$1" );
413 } elsif ($name =~ m/$type_param/) {
/external/googletest/googletest/src/
Dgtest-internal-inl.h648 TestSuite* GetTestSuite(const char* test_suite_name, const char* type_param,
654 TestCase* GetTestCase(const char* test_case_name, const char* type_param, in GetTestCase() argument
657 return GetTestSuite(test_case_name, type_param, set_up_tc, tear_down_tc); in GetTestCase()
684 GetTestSuite(test_info->test_suite_name(), test_info->type_param(), in AddTestInfo()
Dgtest.cc2573 const char* test_suite_name, const char* name, const char* type_param, in MakeAndRegisterTestInfo() argument
2578 new TestInfo(test_suite_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
3073 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
3076 if (type_param != nullptr || value_param != nullptr) { in PrintFullTestCommentIfPresent()
3078 if (type_param != nullptr) { in PrintFullTestCommentIfPresent()
3079 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
3166 if (test_suite.type_param() == nullptr) { in OnTestCaseStart()
3169 printf(", where %s = %s\n", kTypeParamLabel, test_suite.type_param()); in OnTestCaseStart()
3748 if (test_info.type_param() != nullptr) { in OutputXmlTestInfo()
3750 test_info.type_param()); in OutputXmlTestInfo()
[all …]
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
Dgtest.cc2231 const char* type_param, in MakeAndRegisterTestInfo() argument
2238 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
2638 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
2641 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
2643 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
2644 printf("TypeParam = %s", type_param); in PrintFullTestCommentIfPresent()
2734 if (test_case.type_param() == NULL) { in OnTestCaseStart()
2737 printf(", where TypeParam = %s\n", test_case.type_param()); in OnTestCaseStart()
3206 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3207 *stream << " type_param=\"" << EscapeXmlAttribute(test_info.type_param()) in OutputXmlTestInfo()
[all …]
/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/libaom/libaom/third_party/googletest/src/googletest/src/
Dgtest.cc2547 const char* type_param, in MakeAndRegisterTestInfo() argument
2555 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
3011 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
3014 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
3016 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
3017 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
3104 if (test_case.type_param() == NULL) { in OnTestCaseStart()
3107 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
3639 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3640 OutputXmlAttribute(stream, kTestcase, "type_param", test_info.type_param()); in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h634 const char* type_param,
662 test_info->type_param(), in AddTestInfo()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/
Dgtest.cc2546 const char* type_param, in MakeAndRegisterTestInfo() argument
2554 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
3010 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
3013 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
3015 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
3016 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
3103 if (test_case.type_param() == NULL) { in OnTestCaseStart()
3106 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
3638 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3639 OutputXmlAttribute(stream, kTestcase, "type_param", test_info.type_param()); in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h634 const char* type_param,
662 test_info->type_param(), in AddTestInfo()
/external/mesa3d/src/gtest/src/
Dgtest.cc2546 const char* type_param, in MakeAndRegisterTestInfo() argument
2554 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
3010 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
3013 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
3015 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
3016 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
3103 if (test_case.type_param() == NULL) { in OnTestCaseStart()
3106 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
3638 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3639 OutputXmlAttribute(stream, kTestcase, "type_param", test_info.type_param()); in OutputXmlTestInfo()
[all …]
Dgtest-internal-inl.h634 const char* type_param,
662 test_info->type_param(), in AddTestInfo()
/external/libvpx/libvpx/third_party/googletest/src/src/
Dgtest.cc2589 const char* type_param, in MakeAndRegisterTestInfo() argument
2597 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
3079 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
3082 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
3084 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
3085 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
3172 if (test_case.type_param() == NULL) { in OnTestCaseStart()
3175 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
3706 if (test_info.type_param() != NULL) { in OutputXmlTestInfo()
3707 OutputXmlAttribute(stream, kTestcase, "type_param", test_info.type_param()); in OutputXmlTestInfo()
[all …]
/external/googletest/googletest/include/gtest/
Dgtest.h716 const char* type_param() const { in type_param() function
774 const char* test_suite_name, const char* name, const char* type_param,
858 const char* type_param() const { in type_param() function
2435 const char* type_param, const char* value_param, in RegisterTest() argument
2449 test_suite_name, test_name, type_param, value_param, in RegisterTest()
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
Dgtest-internal-inl.h622 const char* type_param,
650 test_info->type_param(), in AddTestInfo()
/external/epid-sdk/ext/gtest/
Dgtest-all.cc1041 const char* type_param,
1069 test_info->type_param(), in AddTestInfo()
3994 const char* type_param, in MakeAndRegisterTestInfo() argument
4002 new TestInfo(test_case_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
4462 const char* const type_param = test_info.type_param(); in PrintFullTestCommentIfPresent() local
4465 if (type_param != NULL || value_param != NULL) { in PrintFullTestCommentIfPresent()
4467 if (type_param != NULL) { in PrintFullTestCommentIfPresent()
4468 printf("%s = %s", kTypeParamLabel, type_param); in PrintFullTestCommentIfPresent()
4555 if (test_case.type_param() == NULL) { in OnTestCaseStart()
4558 printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); in OnTestCaseStart()
[all …]
/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/swiftshader/third_party/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/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

12