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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/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 140 milliseconds