OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* This file will test that the IDL snippet matches the comment */ | 7 /** |
| 8 * This file will test that the IDL snippet matches the comment. |
| 9 */ |
8 | 10 |
9 /* typedef uint8_t s_array[3]; */ | 11 /* typedef uint8_t s_array[3]; */ |
10 typedef uint8_t[3] s_array; | 12 typedef uint8_t[3] s_array; |
11 | 13 |
12 /* typedef enum { esv1 = 1, esv2 = 2 } senum; */ | 14 /* typedef enum { esv1 = 1, esv2 = 2 } senum; */ |
13 enum senum { | 15 enum senum { |
14 esv1=1, | 16 esv1=1, |
15 esv2=2 | 17 esv2=2 |
16 }; | 18 }; |
17 | 19 |
(...skipping 17 matching lines...) Expand all Loading... |
35 /* | 37 /* |
36 * struct sfoo { | 38 * struct sfoo { |
37 * s_array screen[480][640]; | 39 * s_array screen[480][640]; |
38 * findfunc_t myfunc; | 40 * findfunc_t myfunc; |
39 * }; | 41 * }; |
40 */ | 42 */ |
41 struct sfoo { | 43 struct sfoo { |
42 s_array[480][640] screen; | 44 s_array[480][640] screen; |
43 findfunc_t myfunc; | 45 findfunc_t myfunc; |
44 }; | 46 }; |
OLD | NEW |