Searched refs:match_op (Results 1 – 4 of 4) sorted by relevance
/third_party/ltp/tools/sparse/sparse-src/ |
D | parse.c | 619 while (!match_op(token, op) && !eof_token(token)) in skip_to() 627 if (!match_op(token, op)) { in expect() 731 (match_op(token->next,';') || match_op(token->next,'{')))) { in struct_union_enum_specifier() 742 if (!match_op(token, '{')) in struct_union_enum_specifier() 754 } else if (match_op(token, '{')) { in struct_union_enum_specifier() 929 if (match_op(next, '=')) { in parse_enum_declaration() 1004 if (!match_op(token, ',')) in parse_enum_declaration() 1053 if (!match_op(token, '(')) { in typeof_specifier() 1086 if (match_op(token, '(')) in ignore_attribute() 1105 if (match_op(token, '(')) { in attribute_aligned() [all …]
|
D | expression.c | 71 if (match_op(token, '{')) { in parens_expression() 168 if (!match_op(token, '(')) in builtin_types_compatible_p_expr() 173 if (!match_op(token, ',')) in builtin_types_compatible_p_expr() 178 if (!match_op(token, ')')) in builtin_types_compatible_p_expr() 196 if (!match_op(token, '(')) in builtin_offsetof_expr() 206 if (!match_op(token, ',')) in builtin_offsetof_expr() 395 if (!match_op(token, ',')) { in generic_selection() 398 while (match_op(token, ',')) { in generic_selection() 534 while (!match_op(token, ')')) { in expression_list() 540 if (!match_op(token, ',')) in expression_list() [all …]
|
D | pre-process.c | 266 if (next->pos.newline && match_op(next, '#')) { in collect_arg() 289 if (match_op(next, '(')) { in collect_arg() 291 } else if (match_op(next, ')')) { in collect_arg() 294 } else if (match_op(next, ',') && !nesting && !vararg) { in collect_arg() 332 if (!eof_token(start->next) || !match_op(next, ')')) { in collect_arguments() 349 if (match_op(next, ')')) { in collect_arguments() 355 if (count == wanted && !match_op(next, ')')) in collect_arguments() 377 while (match_op(next, ',')) { in collect_arguments() 761 if (!match_op(scan_next(&token->next), '(')) in expand() 793 while (!eof_token(token) && !match_op(token, endop)) { in token_name_sequence() [all …]
|
D | token.h | 235 static inline int match_op(struct token *token, unsigned int op) in match_op() function
|