Searched refs:STR_TK (Results 1 – 1 of 1) sorted by relevance
/development/vndk/tools/sourcedr/ninja/ |
D | ninja.py | 395 class STR_TK(object): class in Lexer 405 (STR_TK.END, r'[ \t\n|:]'), 406 (STR_TK.CHARS, r'[^ \t\n|:$]+'), 407 (STR_TK.ESC_CHAR, r'\$[^\n{\w_-]'), 408 (STR_TK.ESC_NEWLINE, r'\$\n[ \t]*'), 409 (STR_TK.VAR, r'\$[\w_-]+'), 410 (STR_TK.CURVE_VAR, r'\$\{[\w_.-]+\}'), 415 (STR_TK.END, r'\n+'), 416 (STR_TK.CHARS, r'[^\n$]+'), 417 (STR_TK.ESC_CHAR, r'\$[^\n{\w_-]'), [all …]
|