Home
last modified time | relevance | path

Searched refs:excluded_files (Results 1 – 12 of 12) sorted by relevance

/third_party/mbedtls/scripts/
Dgenerate_visualc_files.pl76 my @excluded_files = qw(
79 my %excluded_files = ();
80 foreach (@excluded_files) { $excluded_files{$_} = 1 }
284 @headers = grep { ! $excluded_files{$_} } @headers;
285 @sources = grep { ! $excluded_files{$_} } @sources;
/third_party/python/Tools/peg_generator/scripts/
Dtest_parse_directory.py105 def parse_directory(directory: str, verbose: bool, excluded_files: List[str], short: bool) -> int:
114 if any(PurePath(file).match(pattern) for pattern in excluded_files):
144 excluded_files = args.exclude
146 sys.exit(parse_directory(directory, verbose, excluded_files, short))
Dbenchmark.py79 excluded_files=["*/bad*", "*/lib2to3/tests/data/*",],
Dtest_pypi_packages.py61 excluded_files=[],
/third_party/cef/tools/
Dmake_wrapper_types_header.py46 excluded_files = ['cef_api_hash.h', 'cef_application_mac.h', 'cef_version.h'] variable
47 header.add_directory(sys.argv[1], excluded_files)
Dmake_views_stub_impl.py91 excluded_files = ['cef_api_hash.h', 'cef_application_mac.h', 'cef_version.h'] variable
92 header.add_directory(cpp_header_dir, excluded_files)
Dmake_libcef_dll_dylib_impl.py212 excluded_files = ['cef_api_hash.h', 'cef_application_mac.h', 'cef_version.h'] variable
213 header.add_directory(cpp_header_dir, excluded_files)
Dtranslator.py102 excluded_files = ['cef_api_hash.h', 'cef_application_mac.h', 'cef_version.h'] variable
103 header.add_directory(cpp_header_dir, excluded_files)
Dcef_api_hash.py58 self.excluded_files = [
82 if not filename in self.excluded_files
Dcef_parser.py551 def add_directory(self, directory, excluded_files=[]): argument
555 if len(excluded_files) == 0 or \
556 not os.path.split(file)[1] in excluded_files:
/third_party/mbedtls/tests/scripts/
Dcheck_names.py234 self.excluded_files = ["*/bn_mul", "*/compat-2.x.h"]
246 .format(str(self.excluded_files))
322 exclude_wildcards = (exclude_wildcards or []) + self.excluded_files
659 included_files, excluded_files = \
669 for header_file in excluded_files:
/third_party/node/deps/v8/tools/testrunner/local/
Dtestsuite.py141 def excluded_files(self): member in GenericTestLoader
175 if os.path.basename(filename) in self.excluded_files: