Home | History | Annotate | Download | only in bitfields

Lines Matching full:four

76                        '(uint32_t:4) four = 15'])
88 '(uint32_t:4) four = 15'])
104 self.expect("expr (bits.four)", VARIABLES_DISPLAYED_CORRECTLY,
176 four = bits.GetChildMemberWithName("four")
177 self.DebugSBValue(four)
178 self.assertTrue(four.GetName() == "four" and
179 four.GetTypeName() == "uint32_t:4" and
180 four.IsInScope() and
181 int(four.GetValue(), 0) == 15,
182 'bits.four has type uint32_t:4, is in scope, and == 15')