Searched refs:get_file_preprocessor (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Tools/c-analyzer/c_parser/ |
D | __init__.py | 7 get_file_preprocessor=None, argument 9 if get_file_preprocessor is None: 10 get_file_preprocessor = _get_preprocessor() 11 yield from _parse_file(filename, match_kind, get_file_preprocessor) 16 get_file_preprocessor=None, argument 18 if get_file_preprocessor is None: 19 get_file_preprocessor = _get_preprocessor() 21 yield from _parse_file(filename, match_kind, get_file_preprocessor) 24 def _parse_file(filename, match_kind, get_file_preprocessor): argument 26 preprocess = get_file_preprocessor(filename)
|
/external/python/cpython3/Tools/c-analyzer/cpython/ |
D | _parser.py | 294 get_file_preprocessor = get_preprocessor( 301 get_file_preprocessor=get_file_preprocessor, 309 get_file_preprocessor=None, argument 312 if get_file_preprocessor is None: 313 get_file_preprocessor = get_preprocessor( 320 get_file_preprocessor=get_file_preprocessor,
|
/external/python/cpython3/Tools/c-analyzer/c_parser/preprocessor/ |
D | __init__.py | 88 def get_file_preprocessor(filename): function 106 return get_file_preprocessor
|
D | __main__.py | 50 args.get_file_preprocessor = get_preprocessor(
|