Lines Matching refs:union
152 结构体(struct)、共用体(union)、枚举(enum)类型kernel-doc注释的一般格式为::
164 可以用 ``union`` 或 ``enum`` 替换上面示例中的 ``struct`` ,以描述共用体或枚举。
207 * @memb1: first member of anonymous union/anonymous struct
208 * @memb2: second member of anonymous union/anonymous struct
209 * @memb3: third member of anonymous union/anonymous struct
210 * @memb4: fourth member of anonymous union/anonymous struct
211 * @bar: non-anonymous union
214 * @bar.st1.memb1: first member of struct st1 on union bar
215 * @bar.st1.memb2: second member of struct st1 on union bar
216 * @bar.st2.memb1: first member of struct st2 on union bar
217 * @bar.st2.memb2: second member of struct st2 on union bar
220 /* Anonymous union/struct*/
221 union {
231 union {
273 union {
359 只需以 ``()`` 结束函数名,并在类型之前写上 ``struct`` , ``union`` , ``enum``
365 See union bar.