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

/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_key_builders.cc32 static std::vector<string16> CopyArray( function
107 return IndexedDBKeyPath(CopyArray(key_path.array()));
121 return WebKit::WebIDBKeyPath::create(CopyArray(key_path.array()));
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h933 // CopyArray() copies a k-dimensional native array using the elements'
935 // CopyArray() degenerates into copying a single value.
938 void CopyArray(const T* from, size_t size, U* to);
942 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
946 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
947 internal::CopyArray(from, N, *to);
951 // the previous CopyArray() function, arrays with different sizes
954 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
956 internal::CopyArray(from[i], to + i);
1020 CopyArray(arra
[all...]
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h981 // CopyArray() copies a k-dimensional native array using the elements'
983 // CopyArray() degenerates into copying a single value.
986 void CopyArray(const T* from, size_t size, U* to);
990 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
994 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
995 internal::CopyArray(from, N, *to);
999 // the previous CopyArray() function, arrays with different sizes
1002 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1004 internal::CopyArray(from[i], to + i);
1068 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/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.h1016 // CopyArray() copies a k-dimensional native array using the elements'
1018 // CopyArray() degenerates into copying a single value.
1021 void CopyArray(const T* from, size_t size, U* to);
1025 inline void CopyArray(const T& from, U* to) { *to = from; } function in namespace:testing::internal
1029 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1030 internal::CopyArray(from, N, *to);
1034 // the previous CopyArray() function, arrays with different sizes
1037 void CopyArray(const T* from, size_t size, U* to) { function in namespace:testing::internal
1039 internal::CopyArray(from[i], to + i);
1103 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/testing/gtest/test/
H A Dgtest_unittest.cc154 using testing::internal::CopyArray;
7214 // Tests CopyArray().
7218 CopyArray('a', &n);
7226 CopyArray(a, &b);
7231 CopyArray(a, 3, c);
7239 CopyArray(a, &b);
7244 CopyArray(a, 2, c);
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc156 using testing::internal::CopyArray;
7117 // Tests CopyArray().
7121 CopyArray('a', &n);
7129 CopyArray(a, &b);
7134 CopyArray(a, 3, c);
7142 CopyArray(a, &b);
7147 CopyArray(a, 2, c);
/external/gtest/test/
H A Dgtest_unittest.cc154 using testing::internal::CopyArray;
7214 // Tests CopyArray().
7218 CopyArray('a', &n);
7226 CopyArray(a, &b);
7231 CopyArray(a, 3, c);
7239 CopyArray(a, &b);
7244 CopyArray(a, 2, c);
/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 1230 milliseconds