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

/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h994 // CopyArray() copies a k-dimensional native array using the elements'
996 // CopyArray() degenerates into copying a single value.
999 void CopyArray(const T* from, size_t size, U* to);
1003 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1007 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1008 internal::CopyArray(from, N, *to);
1012 // the previous CopyArray() function, arrays with different sizes
1015 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1017 internal::CopyArray(from[i], to + i);
1081 CopyArray(arra
[all...]
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h991 // CopyArray() copies a k-dimensional native array using the elements'
993 // CopyArray() degenerates into copying a single value.
996 void CopyArray(const T* from, size_t size, U* to);
1000 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1004 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1005 internal::CopyArray(from, N, *to);
1009 // the previous CopyArray() function, arrays with different sizes
1012 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1014 internal::CopyArray(from[i], to + i);
1079 CopyArray(arra
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-internal.h991 // CopyArray() copies a k-dimensional native array using the elements'
993 // CopyArray() degenerates into copying a single value.
996 void CopyArray(const T* from, size_t size, U* to);
1000 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1004 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1005 internal::CopyArray(from, N, *to);
1009 // the previous CopyArray() function, arrays with different sizes
1012 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1014 internal::CopyArray(from[i], to + i);
1079 CopyArray(arra
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h1017 // CopyArray() copies a k-dimensional native array using the elements'
1019 // CopyArray() degenerates into copying a single value.
1022 void CopyArray(const T* from, size_t size, U* to);
1026 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1030 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1031 internal::CopyArray(from, N, *to);
1035 // the previous CopyArray() function, arrays with different sizes
1038 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1040 internal::CopyArray(from[i], to + i);
1104 CopyArray(arra
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h988 // CopyArray() copies a k-dimensional native array using the elements'
990 // CopyArray() degenerates into copying a single value.
993 void CopyArray(const T* from, size_t size, U* to);
997 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1001 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1002 internal::CopyArray(from, N, *to);
1006 // the previous CopyArray() function, arrays with different sizes
1009 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1011 internal::CopyArray(from[i], to + i);
1075 CopyArray(arra
[all...]
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h1008 // CopyArray() copies a k-dimensional native array using the elements'
1010 // CopyArray() degenerates into copying a single value.
1013 void CopyArray(const T* from, size_t size, U* to);
1017 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1021 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1022 internal::CopyArray(from, N, *to);
1026 // the previous CopyArray() function, arrays with different sizes
1029 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1031 internal::CopyArray(from[i], to + i);
1095 CopyArray(arra
[all...]
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h991 // CopyArray() copies a k-dimensional native array using the elements'
993 // CopyArray() degenerates into copying a single value.
996 void CopyArray(const T* from, size_t size, U* to);
1000 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1004 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1005 internal::CopyArray(from, N, *to);
1009 // the previous CopyArray() function, arrays with different sizes
1012 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1014 internal::CopyArray(from[i], to + i);
1079 CopyArray(arra
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h920 // CopyArray() copies a k-dimensional native array using the elements'
922 // CopyArray() degenerates into copying a single value.
925 void CopyArray(const T* from, size_t size, U* to);
929 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
933 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
934 internal::CopyArray(from, N, *to);
938 // the previous CopyArray() function, arrays with different sizes
941 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
943 internal::CopyArray(from[i], to + i);
1007 CopyArray(arra
[all...]
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h267 void CopyArray(Element* to, const Element* from, int size);
1147 CopyArray(rep_->elements + current_size_,
1315 CopyArray(to, from, array_size);
1319 inline void RepeatedField<Element>::CopyArray( function in class:google::protobuf::RepeatedField
/external/fmtlib/test/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...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest.h7881 // CopyArray() copies a k-dimensional native array using the elements'
7883 // CopyArray() degenerates into copying a single value.
7886 void CopyArray(const T* from, size_t size, U* to);
7890 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
7894 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
7895 internal::CopyArray(from, N, *to);
7899 // the previous CopyArray() function, arrays with different sizes
7902 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
7904 internal::CopyArray(from[i], to + i);
7968 CopyArray(arra
[all...]

Completed in 566 milliseconds