Home
last modified time | relevance | path

Searched refs:file_stem (Results 1 – 9 of 9) sorted by relevance

/external/icu/icu4c/source/python/icutools/databuilder/
Dfiltration.py99 file_stem = self._file_to_file_stem(file)
100 return self._should_include(file_stem)
103 def _should_include(self, file_stem): argument
108 def _should_include(self, file_stem): argument
110 return file_stem in self.includelist
112 return file_stem not in self.excludelist
116 def _should_include(self, file_stem): argument
117 language = file_stem.split("_")[0]
136 def _should_include(self, file_stem): argument
139 if pattern.match(file_stem):
[all …]
/external/icu/icu4c/source/python/icutools/databuilder/test/
Dfiltration_test.py415 for file_stem in EXAMPLE_FILE_STEMS:
416 is_match = filter.match(InFile("%s/%s.txt" % (tree, file_stem)))
417 expected_match = file_stem in expected_matches
418 self.assertEqual(is_match, expected_match, file_stem)
/external/crosvm/protos/
Dbuild.rs108 let file_stem = input_path.file_stem().unwrap().to_str().unwrap(); in protoc() localVariable
109 writeln!(out, "#[path = \"{}/{}.rs\"]", out_dir, file_stem)?; in protoc()
/external/rust/crates/libfuzzer-sys/
Dbuild.rs6 let custom_lib_name = custom_lib_path.file_stem().unwrap().to_string_lossy(); in main()
/external/icu/icu4c/source/data/
DBUILDRULES.py563 file_stem = IndexRequest.locale_file_stem(f)
564 if file_stem in excluded_locales:
566 destination = alias_files if file_stem in alias_locales else installed_files
/external/crosvm/power_monitor/
Dbuild.rs44 let stem = input_file.file_stem().unwrap().to_str().unwrap(); in main()
/external/rust/crates/clang-sys/build/
Dstatic.rs23 path.file_stem().map(|p| { in get_library_name()
/external/selinux/libselinux/src/
Dlabel_file.c906 int i, rc, file_stem; in lookup_all() local
951 file_stem = find_stem_from_file(data, key); in lookup_all()
964 bool stem_matches = spec->stem_id == -1 || spec->stem_id == file_stem; in lookup_all()
/external/rust/crates/ring/
Dbuild.rs731 let src_stem = src.file_stem().expect("source file without basename"); in asm_path()