/src/mozilla-central/parser/html/nsHtml5ArrayCopy.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright (c) 2008 Mozilla Foundation |
3 | | * |
4 | | * Permission is hereby granted, free of charge, to any person obtaining a |
5 | | * copy of this software and associated documentation files (the "Software"), |
6 | | * to deal in the Software without restriction, including without limitation |
7 | | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
8 | | * and/or sell copies of the Software, and to permit persons to whom the |
9 | | * Software is furnished to do so, subject to the following conditions: |
10 | | * |
11 | | * The above copyright notice and this permission notice shall be included in |
12 | | * all copies or substantial portions of the Software. |
13 | | * |
14 | | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
15 | | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
16 | | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
17 | | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
18 | | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
19 | | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | | * DEALINGS IN THE SOFTWARE. |
21 | | */ |
22 | | |
23 | | #ifndef nsHtml5ArrayCopy_h |
24 | | #define nsHtml5ArrayCopy_h |
25 | | |
26 | | #include "nsStringFwd.h" |
27 | | |
28 | | class nsHtml5StackNode; |
29 | | class nsHtml5AttributeName; |
30 | | |
31 | | // Unfortunately, these don't work as template functions because the arguments |
32 | | // would need coercion from a template class, which complicates things. |
33 | | class nsHtml5ArrayCopy |
34 | | { |
35 | | public: |
36 | | static inline void arraycopy(char16_t* source, |
37 | | int32_t sourceOffset, |
38 | | char16_t* target, |
39 | | int32_t targetOffset, |
40 | | int32_t length) |
41 | 0 | { |
42 | 0 | memcpy(&(target[targetOffset]), |
43 | 0 | &(source[sourceOffset]), |
44 | 0 | size_t(length) * sizeof(char16_t)); |
45 | 0 | } |
46 | | |
47 | | static inline void arraycopy(char16_t* source, |
48 | | char16_t* target, |
49 | | int32_t length) |
50 | 0 | { |
51 | 0 | memcpy(target, source, size_t(length) * sizeof(char16_t)); |
52 | 0 | } |
53 | | |
54 | | static inline void arraycopy(int32_t* source, int32_t* target, int32_t length) |
55 | 0 | { |
56 | 0 | memcpy(target, source, size_t(length) * sizeof(int32_t)); |
57 | 0 | } |
58 | | |
59 | | static inline void arraycopy(nsHtml5String* source, |
60 | | nsHtml5String* target, |
61 | | int32_t length) |
62 | 0 | { |
63 | 0 | memcpy(target, source, size_t(length) * sizeof(nsHtml5String)); |
64 | 0 | } |
65 | | |
66 | | static inline void arraycopy(nsHtml5AttributeName** source, |
67 | | nsHtml5AttributeName** target, |
68 | | int32_t length) |
69 | 0 | { |
70 | 0 | memcpy(target, source, size_t(length) * sizeof(nsHtml5AttributeName*)); |
71 | 0 | } |
72 | | |
73 | | static inline void arraycopy(nsHtml5StackNode** source, |
74 | | nsHtml5StackNode** target, |
75 | | int32_t length) |
76 | 0 | { |
77 | 0 | memcpy(target, source, size_t(length) * sizeof(nsHtml5StackNode*)); |
78 | 0 | } |
79 | | |
80 | | static inline void arraycopy(nsHtml5StackNode** arr, |
81 | | int32_t sourceOffset, |
82 | | int32_t targetOffset, |
83 | | int32_t length) |
84 | 0 | { |
85 | 0 | memmove(&(arr[targetOffset]), |
86 | 0 | &(arr[sourceOffset]), |
87 | 0 | size_t(length) * sizeof(nsHtml5StackNode*)); |
88 | 0 | } |
89 | | }; |
90 | | #endif // nsHtml5ArrayCopy_h |