Home
last modified time | relevance | path

Searched defs:Date2 (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dbitfield_align.h35 struct Date2 { struct
36 unsigned short nWeekDay : 3; // 0..7 (3 bits)
37 unsigned short nMonthDay : 6; // 0..31 (6 bits)
38 unsigned short nMonth : 5; // 0..12 (5 bits)
39 unsigned short nYear : 8; // 0..100 (8 bits)
40 unsigned char byte : 8;
/third_party/rust/crates/bindgen/bindgen-integration/cpp/
DTest.h124 struct Date2 { struct
125 unsigned short nWeekDay : 3; // 0..7 (3 bits)
126 unsigned short nMonthDay : 6; // 0..31 (6 bits)
127 unsigned short nMonth : 5; // 0..12 (5 bits)
128 unsigned short nYear : 8; // 0..100 (8 bits)
129 unsigned char byte : 8;
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dbitfield_align.rs567 pub struct Date2 { struct
574 ::std::mem::size_of::<Date2>(), in bindgen_test_layout_Date2() argument
584 impl Date2 { implementation
/third_party/node/test/parallel/
Dtest-util-inspect.js539 const Date2 = vm.runInNewContext('Date'); constant
542 Date2.prototype.foo = 'bar'; class