Home
last modified time | relevance | path

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

/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dcomplex.rs87 pub struct TestFloat { struct
92 const UNINIT: ::std::mem::MaybeUninit<TestFloat> = in bindgen_test_layout_TestFloat() argument
96 ::std::mem::size_of::<TestFloat>(), in bindgen_test_layout_TestFloat()
98 concat!("Size of: ", stringify!(TestFloat)) in bindgen_test_layout_TestFloat()
101 ::std::mem::align_of::<TestFloat>(), in bindgen_test_layout_TestFloat()
103 concat!("Alignment of ", stringify!(TestFloat)) in bindgen_test_layout_TestFloat()
110 stringify!(TestFloat), in bindgen_test_layout_TestFloat()
/third_party/python/Lib/test/test_json/
Dtest_float.py5 class TestFloat: class
32 class TestPyFloat(TestFloat, PyTest): pass
33 class TestCFloat(TestFloat, CTest): pass
/third_party/python/Lib/test/
Dtest_enum.py533 class TestFloat(float, Enum): class
538 self.assertEqual(str(TestFloat.one), 'TestFloat.one')
539 self.assertEqual('{}'.format(TestFloat.one), 'TestFloat success!')