Home
last modified time | relevance | path

Searched refs:ArrayEq (Results 1 – 12 of 12) sorted by relevance

/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-internal.h982 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
986 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
990 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
991 return internal::ArrayEq(lhs, N, rhs);
998 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
1000 if (!internal::ArrayEq(lhs[i], rhs[i]))
1011 if (internal::ArrayEq(*it, elem))
1093 ArrayEq(begin(), size(), rhs.begin());
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-internal.h956 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
960 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
964 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
965 return internal::ArrayEq(lhs, N, rhs);
972 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
974 if (!internal::ArrayEq(lhs[i], rhs[i]))
985 if (internal::ArrayEq(*it, elem))
1067 ArrayEq(begin(), size(), rhs.begin());
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-internal.h1049 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
1053 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
1057 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
1058 return internal::ArrayEq(lhs, N, rhs);
1065 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
1067 if (!internal::ArrayEq(lhs[i], rhs[i]))
1078 if (internal::ArrayEq(*it, elem))
1160 ArrayEq(begin(), size(), rhs.begin());
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-internal.h957 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
961 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
965 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
966 return internal::ArrayEq(lhs, N, rhs);
973 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
975 if (!internal::ArrayEq(lhs[i], rhs[i]))
986 if (internal::ArrayEq(*it, elem))
1068 ArrayEq(begin(), size(), rhs.begin());
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/
Dgtest-internal.h1002 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
1006 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
1010 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
1011 return internal::ArrayEq(lhs, N, rhs);
1018 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
1020 if (!internal::ArrayEq(lhs[i], rhs[i]))
1031 if (internal::ArrayEq(*it, elem))
1113 ArrayEq(begin(), size(), rhs.begin());
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
Dgtest-internal.h990 bool ArrayEq(const T *lhs, size_t size, const U *rhs);
994 inline bool ArrayEq(const T &lhs, const U &rhs) {
1000 inline bool ArrayEq(const T (&lhs)[N], const U (&rhs)[N]) {
1001 return internal::ArrayEq(lhs, N, rhs);
1008 bool ArrayEq(const T *lhs, size_t size, const U *rhs) {
1010 if (!internal::ArrayEq(lhs[i], rhs[i])) return false;
1020 if (internal::ArrayEq(*it, elem)) return it;
1101 return size() == rhs.size() && ArrayEq(begin(), size(), rhs.begin());
/external/googletest/googletest/include/gtest/internal/
Dgtest-internal.h1016 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
1020 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
1024 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
1025 return internal::ArrayEq(lhs, N, rhs);
1032 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
1034 if (!internal::ArrayEq(lhs[i], rhs[i]))
1045 if (internal::ArrayEq(*it, elem))
1127 ArrayEq(begin(), size(), rhs.begin());
/external/tensorflow/tensorflow/lite/kernels/
Dlstm_eval_test.cc34 bool ArrayEq(const T* result, const T* expected_result, int size) { in ArrayEq() function
633 EXPECT_TRUE(ArrayEq(cell->data.i16, expected_cell.data(), 20)); in TestOneFullyQuantizedLSTM()
634 EXPECT_TRUE(ArrayEq(activation->data.int8, expected_activation.data(), 12)); in TestOneFullyQuantizedLSTM()
635 EXPECT_TRUE(ArrayEq(output->data.int8, expected_activation.data(), 12)); in TestOneFullyQuantizedLSTM()
/external/googletest/googletest/test/
Dgtest_unittest.cc240 using testing::internal::ArrayEq;
7367 EXPECT_TRUE(ArrayEq(5, 5L)); in TEST()
7368 EXPECT_FALSE(ArrayEq('a', 0)); in TEST()
7375 EXPECT_TRUE(ArrayEq(a, b)); in TEST()
7376 EXPECT_TRUE(ArrayEq(a, 2, b)); in TEST()
7379 EXPECT_FALSE(ArrayEq(a, b)); in TEST()
7380 EXPECT_FALSE(ArrayEq(a, 1, b)); in TEST()
7388 EXPECT_TRUE(ArrayEq(a, b)); in TEST()
7389 EXPECT_TRUE(ArrayEq(a, 2, b)); in TEST()
7391 EXPECT_FALSE(ArrayEq(a, c)); in TEST()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/
Dgtest_unittest.cc234 using testing::internal::ArrayEq;
7257 EXPECT_TRUE(ArrayEq(5, 5L)); in TEST()
7258 EXPECT_FALSE(ArrayEq('a', 0)); in TEST()
7265 EXPECT_TRUE(ArrayEq(a, b)); in TEST()
7266 EXPECT_TRUE(ArrayEq(a, 2, b)); in TEST()
7269 EXPECT_FALSE(ArrayEq(a, b)); in TEST()
7270 EXPECT_FALSE(ArrayEq(a, 1, b)); in TEST()
7278 EXPECT_TRUE(ArrayEq(a, b)); in TEST()
7279 EXPECT_TRUE(ArrayEq(a, 2, b)); in TEST()
7281 EXPECT_FALSE(ArrayEq(a, c)); in TEST()
[all …]
/external/fmtlib/test/gtest/
Dgtest.h7849 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
7853 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
7857 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
7858 return internal::ArrayEq(lhs, N, rhs);
7865 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
7867 if (!internal::ArrayEq(lhs[i], rhs[i]))
7878 if (internal::ArrayEq(*it, elem))
7960 ArrayEq(begin(), size(), rhs.begin());
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/gmock-1.8.0/gtest/
Dgtest.h8691 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
8695 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
8699 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
8700 return internal::ArrayEq(lhs, N, rhs);
8707 bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
8709 if (!internal::ArrayEq(lhs[i], rhs[i]))
8720 if (internal::ArrayEq(*it, elem))
8802 ArrayEq(begin(), size(), rhs.begin());