Lines Matching refs:AttributeSection
687 ModuleStatement = AttributeSection "module" Identifier ";"
691 AttributeSection = "[" AttributeList "]"
699 Struct = AttributeSection "struct" Name "{" StructBody "}" ";"
700 | AttributeSection "struct" Name ";"
705 StructField = AttributeSection TypeSpec Name Orginal Default ";"
707 Union = AttributeSection "union" Name "{" UnionBody "}" ";"
709 UnionField = AttributeSection TypeSpec Name Ordinal ";"
711 Interface = AttributeSection "interface" Name "{" InterfaceBody "}" ";"
716 Method = AttributeSection Name Ordinal "(" ParamterList ")" Response ";"
720 Parameter = AttributeSection TypeSpec Name Ordinal
746 Enum = AttributeSection "enum" Name "{" NonEmptyEnumValueList "}" ";"
747 | AttributeSection "enum" Name "{" NonEmptyEnumValueList "," "}" ";"
749 EnumValue = AttributeSection Name
750 | AttributeSection Name "=" Integer
751 | AttributeSection Name "=" Identifier