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

/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h907 // ArrayEq() compares two k-dimensional native arrays using the
909 // 0, ArrayEq() degenerates into comparing a single pair of values.
912 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
916 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
920 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
921 return internal::ArrayEq(lhs, N, rhs);
925 // the previous ArrayEq() function, arrays with different sizes would
928 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
930 if (!internal::ArrayEq(lhs[i], rhs[i]))
941 if (internal::ArrayEq(*i
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-internal.h948 // ArrayEq() compares two k-dimensional native arrays using the
950 // 0, ArrayEq() degenerates into comparing a single pair of values.
953 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
957 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
961 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
962 return internal::ArrayEq(lhs, N, rhs);
966 // the previous ArrayEq() function, arrays with different sizes would
969 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
971 if (!internal::ArrayEq(lhs[i], rhs[i]))
982 if (internal::ArrayEq(*i
[all...]
/external/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/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.h948 // ArrayEq() compares two k-dimensional native arrays using the
950 // 0, ArrayEq() degenerates into comparing a single pair of values.
953 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
957 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
961 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
962 return internal::ArrayEq(lhs, N, rhs);
966 // the previous ArrayEq() function, arrays with different sizes would
969 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
971 if (!internal::ArrayEq(lhs[i], rhs[i]))
982 if (internal::ArrayEq(*i
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7840 // ArrayEq() compares two k-dimensional native arrays using the
7842 // 0, ArrayEq() degenerates into comparing a single pair of values.
7845 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
7849 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
7853 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
7854 return internal::ArrayEq(lhs, N, rhs);
7858 // the previous ArrayEq() function, arrays with different sizes would
7861 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
7863 if (!internal::ArrayEq(lhs[i], rhs[i]))
7874 if (internal::ArrayEq(*i
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7840 // ArrayEq() compares two k-dimensional native arrays using the
7842 // 0, ArrayEq() degenerates into comparing a single pair of values.
7845 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
7849 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function in namespace:testing::internal
7853 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
7854 return internal::ArrayEq(lhs, N, rhs);
7858 // the previous ArrayEq() function, arrays with different sizes would
7861 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { function in namespace:testing::internal
7863 if (!internal::ArrayEq(lhs[i], rhs[i]))
7874 if (internal::ArrayEq(*i
[all...]

Completed in 302 milliseconds