Home
last modified time | relevance | path

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

/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DBitFieldTesters.h27 virtual bool IsMatching(uint32 field) = 0;
43 virtual bool IsMatching(uint32 field);
62 virtual bool IsMatching(uint32 field);
82 virtual bool IsMatching(uint32 field);
105 virtual bool IsMatching(uint32 field);
H A DBitFieldTesters.cpp77 ConstantFieldTester::IsMatching(uint32 field) in IsMatching() function in ConstantFieldTester
129 HasBitsFieldTester::IsMatching(uint32 field) in IsMatching() function in HasBitsFieldTester
201 NotFieldTester::IsMatching(uint32 field) in IsMatching() function in NotFieldTester
203 return fSlave ? (!fSlave->IsMatching(field)) : false; in IsMatching()
295 MinMatchFieldTester::IsMatching(uint32 field) in IsMatching() function in MinMatchFieldTester
306 if ((((BitFieldTester*)fSlaves.ItemAt(i))->IsMatching(field)) in IsMatching()
H A DKeyCommandMap.cpp61 { return fTester->IsMatching(bits); } in DoModifiersMatch()