Lines Matching refs:u32
44 void Update( u32 buttonStatus );
57 bool IsButtonPress( u32 buttonBit ) const { return ( m_ButtonPress & buttonBit ) != 0; } in IsButtonPress()
58 bool IsButtonDown( u32 buttonBit ) const { return ( m_ButtonDown & buttonBit ) != 0; } in IsButtonDown()
59 bool IsButtonUp( u32 buttonBit ) const { return ( m_ButtonUp & buttonBit ) != 0; } in IsButtonUp()
60 bool IsButtonRepeat( u32 buttonBit ) const { return ( m_ButtonRepeat & buttonBit ) != 0; } in IsButtonRepeat()
61 … bool IsButtonRepeatFast( u32 buttonBit ) const { return ( m_ButtonRepeatFast & buttonBit ) != 0; } in IsButtonRepeatFast()
64 u32 m_ButtonPress;
65 u32 m_ButtonDown;
66 u32 m_ButtonUp;
67 u32 m_ButtonRepeat;
68 u32 m_ButtonRepeatFast;