Searched refs:RE_FUN_CALL (Results 1 – 3 of 3) sorted by relevance
/openbmc/qemu/scripts/codeconverter/codeconverter/ |
H A D | test_regexps.py | 18 assert fullmatch(RE_FUN_CALL, 'sizeof(X86CPU)') 21 print(RE_FUN_CALL) 22 assert fullmatch(RE_FUN_CALL, 'X86_CPU_TYPE_NAME("base")')
|
H A D | regexps.py | 102 RE_FUN_CALL = S(RE_IDENTIFIER, r'\s*\(\s*', RE_SIMPLE_VALUE, r'\s*\)') variable 116 RE_EXPRESSION = OR(RE_SIZEOF, RE_FUN_CALL, RE_MACRO_CONCAT, RE_SIMPLE_VALUE,
|
H A D | qom_macros.py | 500 OR(RE_IDENTIFIER, RE_STRING, RE_MACRO_CONCAT, RE_FUN_CALL, name='typename'), SP, 513 OR(RE_IDENTIFIER, RE_STRING, RE_MACRO_CONCAT, RE_FUN_CALL, name='typename'), SP, 550 OR(RE_IDENTIFIER, RE_STRING, RE_MACRO_CONCAT, RE_FUN_CALL, name='typename'), SP, 565 OR(RE_IDENTIFIER, RE_STRING, RE_MACRO_CONCAT, RE_FUN_CALL, name='typename'), SP, 699 OR(RE_IDENTIFIER, RE_STRING, RE_MACRO_CONCAT, RE_FUN_CALL, name='typename'),
|