Searched defs:ArrayEq (Results 1 - 9 of 9) sorted by relevance

/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h954 // ArrayEq() compares two k-dimensional native arrays using the
956 // 0, ArrayEq() degenerates into comparing a single pair of values.
959 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
963 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
967 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
968 return internal::ArrayEq(lhs, N, rhs);
972 // the previous ArrayEq() function, arrays with different sizes would
975 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
977 if (!internal::ArrayEq(lhs[i], rhs[i]))
988 if (internal::ArrayEq(*i
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-internal.h951 // ArrayEq() compares two k-dimensional native arrays using the
953 // 0, ArrayEq() degenerates into comparing a single pair of values.
956 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
960 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
964 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
965 return internal::ArrayEq(lhs, N, rhs);
969 // the previous ArrayEq() function, arrays with different sizes would
972 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
974 if (!internal::ArrayEq(lhs[i], rhs[i]))
985 if (internal::ArrayEq(*i
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h977 // ArrayEq() compares two k-dimensional native arrays using the
979 // 0, ArrayEq() degenerates into comparing a single pair of values.
982 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
986 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
990 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
991 return internal::ArrayEq(lhs, N, rhs);
995 // the previous ArrayEq() function, arrays with different sizes would
998 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
1000 if (!internal::ArrayEq(lhs[i], rhs[i]))
1011 if (internal::ArrayEq(*i
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h880 // ArrayEq() compares two k-dimensional native arrays using the
882 // 0, ArrayEq() degenerates into comparing a single pair of values.
885 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
889 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
893 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
894 return internal::ArrayEq(lhs, N, rhs);
898 // the previous ArrayEq() function, arrays with different sizes would
901 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
903 if (!internal::ArrayEq(lhs[i], rhs[i]))
914 if (internal::ArrayEq(*i
[all...]
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h968 // ArrayEq() compares two k-dimensional native arrays using the
970 // 0, ArrayEq() degenerates into comparing a single pair of values.
973 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
977 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
981 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
982 return internal::ArrayEq(lhs, N, rhs);
986 // the previous ArrayEq() function, arrays with different sizes would
989 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
991 if (!internal::ArrayEq(lhs[i], rhs[i]))
1002 if (internal::ArrayEq(*i
[all...]
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h951 // ArrayEq() compares two k-dimensional native arrays using the
953 // 0, ArrayEq() degenerates into comparing a single pair of values.
956 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
960 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
964 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
965 return internal::ArrayEq(lhs, N, rhs);
969 // the previous ArrayEq() function, arrays with different sizes would
972 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
974 if (!internal::ArrayEq(lhs[i], rhs[i]))
985 if (internal::ArrayEq(*i
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h880 // ArrayEq() compares two k-dimensional native arrays using the
882 // 0, ArrayEq() degenerates into comparing a single pair of values.
885 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
889 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
893 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
894 return internal::ArrayEq(lhs, N, rhs);
898 // the previous ArrayEq() function, arrays with different sizes would
901 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
903 if (!internal::ArrayEq(lhs[i], rhs[i]))
914 if (internal::ArrayEq(*i
[all...]
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h977 // ArrayEq() compares two k-dimensional native arrays using the
979 // 0, ArrayEq() degenerates into comparing a single pair of values.
982 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
986 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
990 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
991 return internal::ArrayEq(lhs, N, rhs);
995 // the previous ArrayEq() function, arrays with different sizes would
998 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
1000 if (!internal::ArrayEq(lhs[i], rhs[i]))
1011 if (internal::ArrayEq(*i
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest.h7841 // ArrayEq() compares two k-dimensional native arrays using the
7843 // 0, ArrayEq() degenerates into comparing a single pair of values.
7846 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
7850 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
7854 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
7855 return internal::ArrayEq(lhs, N, rhs);
7859 // the previous ArrayEq() function, arrays with different sizes would
7862 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
7864 if (!internal::ArrayEq(lhs[i], rhs[i]))
7875 if (internal::ArrayEq(*i
[all...]

Completed in 184 milliseconds