Home
last modified time | relevance | path

Searched refs:probe_sysroot_crate (Results 1 – 3 of 3) sorted by relevance

/device/google/cuttlefish_vmm/qemu/third_party/rust/crates/autocfg/tests/
Drustflags.rs17 assert!(ac.probe_sysroot_crate("std")); in test_with_sysroot()
18 assert!(!ac.probe_sysroot_crate("autocfg")); in test_with_sysroot()
26 assert!(ac.probe_sysroot_crate("autocfg")); in test_with_sysroot()
32 assert!(ac.probe_sysroot_crate("autocfg")); in test_with_sysroot()
/device/google/cuttlefish_vmm/qemu/third_party/rust/crates/autocfg/src/
Dtests.rs97 ac.assert_std(ac.probe_sysroot_crate("std")); in probe_std()
103 ac.assert_min(1, 36, ac.probe_sysroot_crate("alloc")); in probe_alloc()
109 assert!(!ac.probe_sysroot_crate("doesnt_exist")); in probe_bad_sysroot_crate()
Dlib.rs246 pub fn probe_sysroot_crate(&self, name: &str) -> bool { in probe_sysroot_crate() method
253 if self.probe_sysroot_crate(name) { in emit_sysroot_crate()