Searched refs:NativeArray (Results 1 - 5 of 5) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc643 StaticAssertTypeEq<NativeArray<int>,
645 StaticAssertTypeEq<NativeArray<double>,
647 StaticAssertTypeEq<NativeArray<char[3]>,
650 StaticAssertTypeEq<const NativeArray<int>,
654 NativeArray<int> a2 = StlContainerView<int[3]>::ConstReference(a1);
658 const NativeArray<int> a3 = StlContainerView<int[3]>::Copy(a1);
670 StaticAssertTypeEq<NativeArray<int>,
672 StaticAssertTypeEq<NativeArray<double>,
675 StaticAssertTypeEq<const NativeArray<int>,
680 NativeArray<in
[all...]
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1018 // The relation between an NativeArray object (see below) and the
1034 class NativeArray { class in namespace:testing::internal
1042 NativeArray(const Element* array, size_t count, RelationToSourceReference) { function in class:testing::internal::NativeArray
1047 NativeArray(const Element* array, size_t count, RelationToSourceCopy) { function in class:testing::internal::NativeArray
1052 NativeArray(const NativeArray& rhs) { function in class:testing::internal::NativeArray
1056 ~NativeArray() {
1057 if (clone_ != &NativeArray::InitRef)
1065 bool operator==(const NativeArray& rhs) const {
1082 clone_ = &NativeArray
[all...]
/gem5/ext/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h425 typedef internal::NativeArray<RawElement> type;
426 // NativeArray<T> can represent a native array either by value or by
439 // function call '[testing::internal::NativeArray<char *>].NativeArray(
442 // 'testing::internal::NativeArray<char *>::NativeArray(
472 typedef internal::NativeArray<RawElement> type;
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc268 using testing::internal::NativeArray;
7616 // Tests NativeArray.
7620 NativeArray<int> na(a, 3, RelationToSourceReference());
7630 NativeArray<int> na(*a, 2, RelationToSourceCopy());
7641 StaticAssertTypeEq<char, NativeArray<char>::value_type>();
7642 StaticAssertTypeEq<int[2], NativeArray<int[2]>::value_type>();
7644 StaticAssertTypeEq<const char*, NativeArray<char>::const_iterator>();
7645 StaticAssertTypeEq<const bool(*)[2], NativeArray<bool[2]>::const_iterator>();
7650 NativeArray<int> na(a, 3, RelationToSourceCopy());
7654 NativeArray<in
[all...]
H A Dgtest-printers_test.cc207 using ::testing::internal::NativeArray;
964 NativeArray<int> b(a, 3, RelationToSourceReference());
970 NativeArray<int[3]> b(a, 2, RelationToSourceReference());

Completed in 44 milliseconds