Lines Matching defs:entry
238 for entry in WalkDir::new(repo_dir)
242 let entry = entry.unwrap();
243 if !entry.file_type().is_dir() {
244 rs_files.insert(entry.into_path());
249 for entry in WalkDir::new(repo_dir.join(ui_test_dir)) {
250 let mut path = entry.unwrap().into_path();
266 pub fn base_dir_filter(entry: &DirEntry) -> bool {
267 let path = entry.path();
362 for entry in archive.entries()? {
363 let mut entry = entry?;
364 let path = entry.path()?;
370 entry.unpack(&out)?;