/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-unittest-api_test.cc | 152 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 …]
|
D | gtest_xml_test_utils.py | 173 type_param = element.getAttributeNode('type_param') 174 if type_param and type_param.value: 175 type_param.value = '*'
|
/external/googletest/googletest/test/ |
D | gtest-unittest-api_test.cc | 151 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 …]
|
D | gtest_xml_test_utils.py | 179 type_param = element.getAttributeNode('type_param') 180 if type_param and type_param.value: 181 type_param.value = '*'
|
/external/u-boot/scripts/ |
D | kernel-doc | 176 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/ |
D | gtest-internal-inl.h | 648 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()
|
D | gtest.cc | 2573 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/ |
D | gtest.cc | 2231 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/ |
D | gtest.cc | 2231 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 …]
|
D | gtest-internal-inl.h | 625 const char* type_param, 653 test_info->type_param(), in AddTestInfo()
|
/external/google-breakpad/src/testing/gtest/src/ |
D | gtest.cc | 2232 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 …]
|
D | gtest-internal-inl.h | 636 const char* type_param, 664 test_info->type_param(), in AddTestInfo()
|
/external/libaom/libaom/third_party/googletest/src/googletest/src/ |
D | gtest.cc | 2547 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 …]
|
D | gtest-internal-inl.h | 634 const char* type_param, 662 test_info->type_param(), in AddTestInfo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/ |
D | gtest.cc | 2546 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 …]
|
D | gtest-internal-inl.h | 634 const char* type_param, 662 test_info->type_param(), in AddTestInfo()
|
/external/mesa3d/src/gtest/src/ |
D | gtest.cc | 2546 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 …]
|
D | gtest-internal-inl.h | 634 const char* type_param, 662 test_info->type_param(), in AddTestInfo()
|
/external/libvpx/libvpx/third_party/googletest/src/src/ |
D | gtest.cc | 2589 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/ |
D | gtest.h | 716 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/ |
D | gtest-internal-inl.h | 622 const char* type_param, 650 test_info->type_param(), in AddTestInfo()
|
/external/epid-sdk/ext/gtest/ |
D | gtest-all.cc | 1041 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/ |
D | gtest.h | 639 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/ |
D | gtest.h | 639 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/ |
D | gtest.h | 640 const char* type_param() const { in type_param() function 684 const char* type_param, 766 const char* type_param() const { in type_param() function
|