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
4 * found in the LICENSE file.
8 * This file will test that the IDL snippet matches the comment.
15 /* typedef uint8_t s_array[3]; */
16 typedef uint8_t
[3] s_array
;
18 /* typedef enum { esv1 = 1, esv2 = 2 } senum; */
24 /* struct st1 { int32_t i; senum j; }; */
30 /* struct st2 { s_array pixels[640][480]; }; */
32 s_array
[640][480] pixels
;
35 /* typedef float (*func_t)(const s_array data); */
36 typedef float_t func_t
([in] s_array data
);
38 /* typedef func_t (*findfunc_t)(const char* x); */
39 typedef func_t findfunc_t
([in] str_t x
);
43 * s_array screen[480][640];
48 s_array
[480][640] screen
;