Searched refs:filter_paths (Results 1 – 5 of 5) sorted by relevance
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | pigweed_presubmit.py | 39 from pw_presubmit import call, filter_paths, plural, PresubmitContext 77 @filter_paths(endswith=_BUILD_EXTENSIONS) 92 @filter_paths(endswith=_BUILD_EXTENSIONS) 106 @filter_paths(endswith=_BUILD_EXTENSIONS) 114 @filter_paths(endswith=_BUILD_EXTENSIONS) 121 @filter_paths(endswith=_BUILD_EXTENSIONS) 127 @filter_paths(endswith=_BUILD_EXTENSIONS) 141 @filter_paths(endswith=_BUILD_EXTENSIONS) 154 @filter_paths(endswith=_BUILD_EXTENSIONS) 160 @filter_paths(endswith=_BUILD_EXTENSIONS) [all …]
|
D | python_checks.py | 34 from pw_presubmit import call, filter_paths 48 @filter_paths(endswith='.py') 71 @filter_paths(endswith='.py') 91 @filter_paths(endswith='.py') 150 filter_paths(endswith=endswith, **filter_paths_args)(function)
|
D | presubmit.py | 563 def filter_paths(endswith: Iterable[str] = (''), function 589 @filter_paths(endswith='.h', exclude=(r'\.pb\.h$', ))
|
D | format_code.py | 304 @pw_presubmit.filter_paths(**filter_paths_args)
|
/external/pigweed/pw_presubmit/ |
D | docs.rst | 72 Presubmit checks may use the ``filter_paths`` decorator to automatically filter 79 @pw_presubmit.filter_paths(endswith='.py') 99 :members: filter_paths, call, PresubmitFailure, Programs 131 from pw_presubmit import python_checks, filter_paths, PresubmitContext 177 # filters with @filter_paths. 178 @filter_paths(endswith='.h', exclude=PATH_EXCLUSIONS)
|