Searched refs:CopyArray (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.h7880 // CopyArray() copies a k-dimensional native array using the elements'
7882 // CopyArray() degenerates into copying a single value.
7885 void CopyArray(const T* from, size_t size, U* to);
7889 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
7893 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
7894 internal::CopyArray(from, N, *to);
7898 // the previous CopyArray() function, arrays with different sizes
7901 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
7903 internal::CopyArray(from[i], to + i);
7967 CopyArray(arra
[all...]

Completed in 105 milliseconds