Home
last modified time | relevance | path

Searched refs:startKey (Results 1 – 4 of 4) sorted by relevance

/hardware/libhardware/tests/input/evdev/
DInputMocks.cpp21 bool MockInputDeviceNode::hasKeyInRange(int32_t startKey, int32_t endKey) const { in hasKeyInRange() argument
22 auto iter = mKeys.lower_bound(startKey); in hasKeyInRange()
DInputMocks.h56 virtual bool hasKeyInRange(int32_t startKey, int32_t endKey) const override;
/hardware/libhardware/modules/input/evdev/
DInputHub.h81 virtual bool hasKeyInRange(int32_t startKey, int32_t endKey) const = 0;
DInputHub.cpp266 bool EvdevDeviceNode::hasKeyInRange(int32_t startKey, int32_t endKey) const { in hasKeyInRange() argument
267 return testBitInRange(mKeyBitmask, startKey, endKey); in hasKeyInRange()