Searched defs:Date2 (Results 1 – 4 of 4) sorted by relevance
35 struct Date2 { struct36 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;
124 struct Date2 { struct125 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;
567 pub struct Date2 { struct574 ::std::mem::size_of::<Date2>(), in bindgen_test_layout_Date2() argument584 impl Date2 { implementation
539 const Date2 = vm.runInNewContext('Date'); constant542 Date2.prototype.foo = 'bar'; class