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

/external/gtest/include/gtest/internal/
H A Dgtest-internal.h430 GTEST_API_ TypeId GetTestTypeId();
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h521 TypeId GetTestTypeId();
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h462 GTEST_API_ TypeId GetTestTypeId();
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc599 // from user test code. GetTestTypeId() is guaranteed to always
602 TypeId GetTestTypeId() { function in namespace:testing::internal
606 // The value of GetTestTypeId() as seen from within the Google Test
607 // library. This is solely for testing GetTestTypeId().
608 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
2245 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
2247 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest.h2095 // Note that we call GetTestTypeId() instead of GetTypeId<
2101 // code. GetTestTypeId() is guaranteed to always return the same
2106 ::testing::Test, ::testing::internal::GetTestTypeId())
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-internal.h505 GTEST_API_ TypeId GetTestTypeId();
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc591 // from user test code. GetTestTypeId() is guaranteed to always
594 TypeId GetTestTypeId() { function in namespace:testing::internal
598 // The value of GetTestTypeId() as seen from within the Google Test
599 // library. This is solely for testing GetTestTypeId().
600 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
1967 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
1969 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/gtest/src/
H A Dgtest.cc595 // from user test code. GetTestTypeId() is guaranteed to always
598 TypeId GetTestTypeId() { function in namespace:testing::internal
602 // The value of GetTestTypeId() as seen from within the Google Test
603 // library. This is solely for testing GetTestTypeId().
604 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
1961 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
1963 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h2098 // Note that we call GetTestTypeId() instead of GetTypeId<
2104 // code. GetTestTypeId() is guaranteed to always return the same
2109 ::testing::Test, ::testing::internal::GetTestTypeId())
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h534 GTEST_API_ TypeId GetTestTypeId();
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc591 // from user test code. GetTestTypeId() is guaranteed to always
594 TypeId GetTestTypeId() { function in namespace:testing::internal
598 // The value of GetTestTypeId() as seen from within the Google Test
599 // library. This is solely for testing GetTestTypeId().
600 const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
1967 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
1969 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest.h2095 // Note that we call GetTestTypeId() instead of GetTypeId<
2101 // code. GetTestTypeId() is guaranteed to always return the same
2106 ::testing::Test, ::testing::internal::GetTestTypeId())
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h505 GTEST_API_ TypeId GetTestTypeId();
/external/mesa3d/src/gtest/src/
H A Dgtest.cc591 // from user test code. GetTestTypeId() is guaranteed to always
594 TypeId GetTestTypeId() { function in namespace:testing::internal
598 // The value of GetTestTypeId() as seen from within the Google Test
599 // library. This is solely for testing GetTestTypeId().
600 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
1967 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
1969 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/protobuf/gtest/include/gtest/
H A Dgtest.h1903 // Note that we call GetTestTypeId() instead of GetTypeId<
1909 // code. GetTestTypeId() is guaranteed to always return the same
1914 ::testing::Test, ::testing::internal::GetTestTypeId())
/external/protobuf/gtest/src/
H A Dgtest.cc559 // from user test code. GetTestTypeId() is guaranteed to always
562 TypeId GetTestTypeId() { function in namespace:testing::internal
566 // The value of GetTestTypeId() as seen from within the Google Test
567 // library. This is solely for testing GetTestTypeId().
568 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
1980 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
1982 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc256 using testing::internal::GetTestTypeId;
373 EXPECT_NE(GetTypeId<int>(), GetTestTypeId());
374 EXPECT_NE(GetTypeId<SubClassOfTest>(), GetTestTypeId());
375 EXPECT_NE(GetTypeId<AnotherSubClassOfTest>(), GetTestTypeId());
379 // Verifies that GetTestTypeId() returns the same value, no matter it
382 EXPECT_EQ(kTestTypeIdInGoogleTest, GetTestTypeId());
/external/gtest/test/
H A Dgtest_unittest.cc257 using testing::internal::GetTestTypeId;
370 EXPECT_NE(GetTypeId<int>(), GetTestTypeId());
371 EXPECT_NE(GetTypeId<SubClassOfTest>(), GetTestTypeId());
372 EXPECT_NE(GetTypeId<AnotherSubClassOfTest>(), GetTestTypeId());
376 // Verifies that GetTestTypeId() returns the same value, no matter it
379 EXPECT_EQ(kTestTypeIdInGoogleTest, GetTestTypeId());
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc162 using testing::internal::GetTestTypeId;
254 EXPECT_NE(GetTypeId<int>(), GetTestTypeId());
255 EXPECT_NE(GetTypeId<SubClassOfTest>(), GetTestTypeId());
256 EXPECT_NE(GetTypeId<AnotherSubClassOfTest>(), GetTestTypeId());
260 // Verifies that GetTestTypeId() returns the same value, no matter it
263 EXPECT_EQ(kTestTypeIdInGoogleTest, GetTestTypeId());
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest.h2242 // Note that we call GetTestTypeId() instead of GetTypeId<
2248 // code. GetTestTypeId() is guaranteed to always return the same
2253 ::testing::Test, ::testing::internal::GetTestTypeId())
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc485 // The value of GetTestTypeId() as seen from within the Google Test
486 // library. This is solely for testing GetTestTypeId().
2079 // from user test code. GetTestTypeId() is guaranteed to always
2082 TypeId GetTestTypeId() { function in namespace:testing::internal
2086 // The value of GetTestTypeId() as seen from within the Google Test
2087 // library. This is solely for testing GetTestTypeId().
2088 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
3445 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
3447 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/gtest/include/gtest/
H A Dgtest.h2226 // Note that we call GetTestTypeId() instead of GetTypeId<
2232 // code. GetTestTypeId() is guaranteed to always return the same
2237 ::testing::Test, ::testing::internal::GetTestTypeId())
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc485 // The value of GetTestTypeId() as seen from within the Google Test
486 // library. This is solely for testing GetTestTypeId().
2079 // from user test code. GetTestTypeId() is guaranteed to always
2082 TypeId GetTestTypeId() { function in namespace:testing::internal
2086 // The value of GetTestTypeId() as seen from within the Google Test
2087 // library. This is solely for testing GetTestTypeId().
2088 extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
3445 const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
3447 const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7390 GTEST_API_ TypeId GetTestTypeId();
19996 // Note that we call GetTestTypeId() instead of GetTypeId<
20002 // code. GetTestTypeId() is guaranteed to always return the same
20007 ::testing::Test, ::testing::internal::GetTestTypeId())
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7390 GTEST_API_ TypeId GetTestTypeId();
19996 // Note that we call GetTestTypeId() instead of GetTypeId<
20002 // code. GetTestTypeId() is guaranteed to always return the same
20007 ::testing::Test, ::testing::internal::GetTestTypeId())

Completed in 766 milliseconds