Lines Matching refs:Some
28 Some(10) if libc_ci || rustc_dep_of_std => {
31 Some(11) if libc_ci => println!("cargo:rustc-cfg=freebsd11"),
32 Some(12) if libc_ci => println!("cargo:rustc-cfg=freebsd12"),
33 Some(13) if libc_ci => println!("cargo:rustc-cfg=freebsd13"),
34 Some(14) if libc_ci => println!("cargo:rustc-cfg=freebsd14"),
35 Some(_) | None => println!("cargo:rustc-cfg=freebsd11"),
119 Some(e) => e,
134 if pieces.next() != Some("rustc 1") {
171 s if s.starts_with("10") => Some(10),
172 s if s.starts_with("11") => Some(11),
173 s if s.starts_with("12") => Some(12),
174 s if s.starts_with("13") => Some(13),
175 s if s.starts_with("14") => Some(14),