Lines Matching refs:kind

62 #define DEF_RULE(rule, comp, kind, ...) RULE_##rule,  argument
63 #define DEF_RULE_NC(rule, kind, ...) argument
70 #define DEF_RULE(rule, comp, kind, ...) argument
71 #define DEF_RULE_NC(rule, kind, ...) RULE_##rule, argument
87 #define DEF_RULE(rule, comp, kind, ...) kind, argument
88 #define DEF_RULE_NC(rule, kind, ...) argument
95 #define DEF_RULE(rule, comp, kind, ...) argument
96 #define DEF_RULE_NC(rule, kind, ...) kind, argument
116 #define DEF_RULE(rule, comp, kind, ...) __VA_ARGS__, argument
117 #define DEF_RULE_NC(rule, kind, ...) argument
122 #define DEF_RULE(rule, comp, kind, ...) argument
123 #define DEF_RULE_NC(rule, kind, ...) __VA_ARGS__, argument
142 #define DEF_RULE(rule, comp, kind, ...) RULE_PADDING(rule, __VA_ARGS__) argument
143 #define DEF_RULE_NC(rule, kind, ...) argument
147 #define DEF_RULE(rule, comp, kind, ...) argument
148 #define DEF_RULE_NC(rule, kind, ...) RULE_PADDING(rule, __VA_ARGS__) argument
165 #define DEF_RULE(rule, comp, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) & 0xff, argument
166 #define DEF_RULE_NC(rule, kind, ...) argument
171 #define DEF_RULE(rule, comp, kind, ...) argument
172 #define DEF_RULE_NC(rule, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) & 0xff, argument
180 #define DEF_RULE(rule, comp, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) >= 0x100 ? RULE_##rule : argument
181 #define DEF_RULE_NC(rule, kind, ...) argument
185 #define DEF_RULE(rule, comp, kind, ...) argument
186 #define DEF_RULE_NC(rule, kind, ...) RULE_ARG_OFFSET(rule, __VA_ARGS__) >= 0x100 ? RULE_##rule : argument
195 #define DEF_RULE(rule, comp, kind, ...) #rule, argument
196 #define DEF_RULE_NC(rule, kind, ...) argument
201 #define DEF_RULE(rule, comp, kind, ...) argument
202 #define DEF_RULE_NC(rule, kind, ...) #rule, argument
905 uint16_t kind = rule_arg[i] & RULE_ARG_KIND_MASK; in mp_parse() local
906 if (kind == RULE_ARG_TOK) { in mp_parse()
913 assert(kind == RULE_ARG_RULE); in mp_parse()