Searched refs:type_equals (Results 1 – 12 of 12) sorted by relevance
/external/google-breakpad/src/testing/test/ |
D | gmock-internal-utils_test.cc | 486 TEST(TypeTraitsTest, type_equals) { in TEST() argument 487 EXPECT_FALSE((type_equals<int, const int>::value)); in TEST() 488 EXPECT_FALSE((type_equals<int, int&>::value)); in TEST() 489 EXPECT_FALSE((type_equals<int, double>::value)); in TEST() 490 EXPECT_TRUE((type_equals<char, char>::value)); in TEST() 494 EXPECT_TRUE((type_equals<char, remove_reference<char&>::type>::value)); in TEST() 495 EXPECT_TRUE((type_equals<const int, in TEST() 497 EXPECT_TRUE((type_equals<int, remove_reference<int>::type>::value)); in TEST() 498 EXPECT_TRUE((type_equals<double*, remove_reference<double*>::type>::value)); in TEST()
|
/external/googletest/googlemock/test/ |
D | gmock-internal-utils_test.cc | 523 TEST(TypeTraitsTest, type_equals) { in TEST() argument 524 EXPECT_FALSE((type_equals<int, const int>::value)); in TEST() 525 EXPECT_FALSE((type_equals<int, int&>::value)); in TEST() 526 EXPECT_FALSE((type_equals<int, double>::value)); in TEST() 527 EXPECT_TRUE((type_equals<char, char>::value)); in TEST() 531 EXPECT_TRUE((type_equals<char, remove_reference<char&>::type>::value)); in TEST() 532 EXPECT_TRUE((type_equals<const int, in TEST() 534 EXPECT_TRUE((type_equals<int, remove_reference<int>::type>::value)); in TEST() 535 EXPECT_TRUE((type_equals<double*, remove_reference<double*>::type>::value)); in TEST()
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
D | program.cpp | 113 if (any_of(type_equals(module::section::text_intermediate), binary.secs)) in binary_type() 115 else if (any_of(type_equals(module::section::text_library), binary.secs)) in binary_type() 117 else if (any_of(type_equals(module::section::text_executable), binary.secs)) in binary_type()
|
D | kernel.cpp | 165 auto msec = find(type_equals(module::section::text_executable), m.secs); in bind()
|
/external/google-breakpad/src/testing/include/gmock/internal/ |
D | gmock-internal-utils.h | 344 template <typename T1, typename T2> struct type_equals : public false_type {}; 345 template <typename T> struct type_equals<T, T> : public true_type {};
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/internal/ |
D | gmock-internal-utils.h | 344 template <typename T1, typename T2> struct type_equals : public false_type {}; 345 template <typename T> struct type_equals<T, T> : public true_type {};
|
/external/googletest/googlemock/include/gmock/internal/ |
D | gmock-internal-utils.h | 360 template <typename T1, typename T2> struct type_equals : public false_type {}; 361 template <typename T> struct type_equals<T, T> : public true_type {};
|
/external/mesa3d/src/gallium/state_trackers/clover/util/ |
D | functional.hpp | 390 type_equals(T x) { in type_equals() function
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | kernel.cpp | 221 if (!any_of(type_equals(module::section::text_executable), m.secs)) in validate_common()
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-spec-builders.h | 1566 *os << (internal::type_equals<Result, void>::value ? in DescribeDefaultActionTo()
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-spec-builders.h | 1655 *os << (internal::type_equals<Result, void>::value ? in DescribeDefaultActionTo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/ |
D | gmock-spec-builders.h | 1639 *os << (internal::type_equals<Result, void>::value ? in DescribeDefaultActionTo()
|