Lines Matching refs:t

56         t if t.contains("android") => test_android(t),  in do_ctest()
57 t if t.contains("apple") => test_apple(t), in do_ctest()
58 t if t.contains("dragonfly") => test_dragonflybsd(t), in do_ctest()
59 t if t.contains("emscripten") => test_emscripten(t), in do_ctest()
60 t if t.contains("freebsd") => test_freebsd(t), in do_ctest()
61 t if t.contains("haiku") => test_haiku(t), in do_ctest()
62 t if t.contains("linux") => test_linux(t), in do_ctest()
63 t if t.contains("netbsd") => test_netbsd(t), in do_ctest()
64 t if t.contains("openbsd") => test_openbsd(t), in do_ctest()
65 t if t.contains("cygwin") => test_cygwin(t), in do_ctest()
66 t if t.contains("redox") => test_redox(t), in do_ctest()
67 t if t.contains("solaris") => test_solarish(t), in do_ctest()
68 t if t.contains("illumos") => test_solarish(t), in do_ctest()
69 t if t.contains("wasi") => test_wasi(t), in do_ctest()
70 t if t.contains("windows") => test_windows(t), in do_ctest()
71 t if t.contains("vxworks") => test_vxworks(t), in do_ctest()
72 t if t.contains("nto-qnx") => test_neutrino(t), in do_ctest()
73 t if t.contains("aix") => return test_aix(t), in do_ctest()
74 t => panic!("unknown target {t}"), in do_ctest()
480 t if is_union => format!("union {t}"), in test_apple()
481 t if t.ends_with("_t") => t.to_string(), in test_apple()
482 t if is_struct => format!("struct {t}"), in test_apple()
483 t => t.to_string(), in test_apple()
666 t if is_union => format!("union {t}"), in test_openbsd()
667 t if t.ends_with("_t") => t.to_string(), in test_openbsd()
668 t if is_struct => format!("struct {t}"), in test_openbsd()
669 t => t.to_string(), in test_openbsd()
765 t if is_union => format!("union {t}"), in test_cygwin()
767 t if t.ends_with("_t") => t.to_string(), in test_cygwin()
773 t if is_struct => format!("struct {t}"), in test_cygwin()
775 t => t.to_string(), in test_cygwin()
917 t if is_union => format!("union {t}"), in test_windows()
918 t if t.ends_with("_t") => t.to_string(), in test_windows()
921 t if is_struct => { in test_windows()
923 t.to_string() in test_windows()
924 } else if t == "stat" { in test_windows()
926 } else if t == "utimbuf" { in test_windows()
933 t => t.to_string(), in test_windows()
1175 t if t.ends_with("_t") => t.to_string(), in test_solarish()
1176 t if is_struct => format!("struct {t}"), in test_solarish()
1177 t if is_union => format!("union {t}"), in test_solarish()
1178 t => t.to_string(), in test_solarish()
1446 t if is_union => format!("union {t}"), in test_netbsd()
1448 t if t.ends_with("_t") => t.to_string(), in test_netbsd()
1451 t if is_struct => format!("struct {t}"), in test_netbsd()
1453 t => t.to_string(), in test_netbsd()
1663 t if is_union => format!("union {t}"), in test_dragonflybsd()
1665 t if t.ends_with("_t") => t.to_string(), in test_dragonflybsd()
1671 t if is_struct => format!("struct {t}"), in test_dragonflybsd()
1673 t => t.to_string(), in test_dragonflybsd()
1841 t if is_union => format!("union {t}"), in test_wasi()
1842 t if t.starts_with("__wasi") && t.ends_with("_u") => format!("union {t}"), in test_wasi()
1843 t if t.starts_with("__wasi") && is_struct => format!("struct {t}"), in test_wasi()
1844 t if t.ends_with("_t") => t.to_string(), in test_wasi()
1845 t if is_struct => format!("struct {t}"), in test_wasi()
1846 t => t.to_string(), in test_wasi()
1892 t if t.contains("aarch64") || t.contains("x86_64") => 64, in test_android()
1893 t if t.contains("i686") || t.contains("arm") => 32, in test_android()
1894 t => panic!("unsupported target: {t}"), in test_android()
2053 t if is_union => format!("union {t}"), in test_android()
2055 t if t.ends_with("_t") => t.to_string(), in test_android()
2063 t if is_struct => format!("struct {t}"), in test_android()
2065 t => t.to_string(), in test_android()
2559 t if is_union => format!("union {t}"), in test_freebsd()
2561 t if t.ends_with("_t") => t.to_string(), in test_freebsd()
2567 t if is_struct => format!("struct {t}"), in test_freebsd()
2569 t => t.to_string(), in test_freebsd()
3167 t if t.ends_with("_t") => t.to_string(), in test_emscripten()
3170 t if is_struct => format!("struct {t}"), in test_emscripten()
3173 t if is_union => format!("union {t}"), in test_emscripten()
3175 t => t.to_string(), in test_emscripten()
3204 t => t.ends_with("64") || t.ends_with("64_t"), in test_emscripten()
3450 t if is_union => format!("union {t}"), in test_neutrino()
3452 t if t.ends_with("_t") => t.to_string(), in test_neutrino()
3455 t if is_struct => format!("struct {t}"), in test_neutrino()
3457 t => t.to_string(), in test_neutrino()
3674 t if is_union => format!("union {t}"), in test_vxworks()
3675 t if t.ends_with("_t") => t.to_string(), in test_vxworks()
3676 t if is_struct => format!("struct {t}"), in test_vxworks()
3677 t => t.to_string(), in test_vxworks()
3987 t if t.ends_with("_t") => t.to_string(), in test_linux()
3989 t if is_struct => format!("struct {t}"), in test_linux()
3991 t if is_union => format!("union {t}"), in test_linux()
3993 t => t.to_string(), in test_linux()
4055 t => { in test_linux()
4058 t.ends_with("64") || t.ends_with("64_t") in test_linux()
5051 t if is_struct => format!("struct {t}"), in test_linux_like_apis()
5052 t if is_union => format!("union {t}"), in test_linux_like_apis()
5053 t => t.to_string(), in test_linux_like_apis()
5077 t if is_struct => format!("struct {t}"), in test_linux_like_apis()
5078 t if is_union => format!("union {t}"), in test_linux_like_apis()
5079 t => t.to_string(), in test_linux_like_apis()
5106 t if is_struct => format!("struct {t}"), in test_linux_like_apis()
5107 t if is_union => format!("union {t}"), in test_linux_like_apis()
5108 t => t.to_string(), in test_linux_like_apis()
5494 t if is_union => format!("union {t}"), in test_haiku()
5495 t if t.ends_with("_t") => t.to_string(), in test_haiku()
5496 t if is_struct => format!("struct {t}"), in test_haiku()
5497 t => t.to_string(), in test_haiku()
5635 t if t.ends_with("_t") => t.to_string(), in test_aix()
5636 t if is_struct => format!("struct {}", t), in test_aix()
5637 t if is_union => format!("union {}", t), in test_aix()
5638 t => t.to_string(), in test_aix()