Searched refs:CopyArray (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_key_builders.cc37 static std::vector<base::string16> CopyArray( function
115 return IndexedDBKeyPath(CopyArray(key_path.array()));
130 return blink::WebIDBKeyPath::create(CopyArray(key_path.array()));
/external/gtest/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/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h947 // CopyArray() copies a k-dimensional native array using the elements'
949 // CopyArray() degenerates into copying a single value.
952 void CopyArray(const T* from, size_t size, U* to);
956 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
960 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
961 internal::CopyArray(from, N, *to);
965 // the previous CopyArray() function, arrays with different sizes
968 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
970 internal::CopyArray(from[i], to + i);
1035 CopyArray(arra
[all...]
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field.h184 void CopyArray(Element to[], const Element from[], int size);
677 CopyArray(elements_ + current_size_, other.elements_, other.current_size_);
771 CopyArray(to, from, array_size);
775 inline void RepeatedField<Element>::CopyArray( function in class:google::protobuf::RepeatedField
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h146 void CopyArray(Element to[], const Element from[], int size);
500 CopyArray(elements_ + current_size_, other.elements_, other.current_size_);
602 inline void RepeatedField<Element>::CopyArray( function in class:google::protobuf::RepeatedField
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc244 using testing::internal::CopyArray;
7401 // Tests CopyArray().
7405 CopyArray('a', &n);
7413 CopyArray(a, &b);
7418 CopyArray(a, 3, c);
7426 CopyArray(a, &b);
7431 CopyArray(a, 2, c);
/external/gtest/test/
H A Dgtest_unittest.cc245 using testing::internal::CopyArray;
7292 // Tests CopyArray().
7296 CopyArray('a', &n);
7304 CopyArray(a, &b);
7309 CopyArray(a, 3, c);
7317 CopyArray(a, &b);
7322 CopyArray(a, 2, c);
/external/chromium_org/third_party/libvpx/source/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...]
/external/libvpx/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 5646 milliseconds