Home | History | Annotate | Download | only in tools

Lines Matching refs:first_word

26 FIRST_WORD = re.compile("^\s*(.*?)[\s({\[]")
869 match = FIRST_WORD.match(line)
871 first_word = match.group(1)
872 if first_word in found_macros:
873 MACRO_CALL = re.compile("%s\(([^)]*)\)" % first_word)
877 expanded_lines += found_macros[first_word].FillIn(args)