Searched refs:startKey (Results 1 – 4 of 4) sorted by relevance
21 bool MockInputDeviceNode::hasKeyInRange(int32_t startKey, int32_t endKey) const { in hasKeyInRange() argument22 auto iter = mKeys.lower_bound(startKey); in hasKeyInRange()
56 virtual bool hasKeyInRange(int32_t startKey, int32_t endKey) const override;
81 virtual bool hasKeyInRange(int32_t startKey, int32_t endKey) const = 0;
266 bool EvdevDeviceNode::hasKeyInRange(int32_t startKey, int32_t endKey) const { in hasKeyInRange() argument267 return testBitInRange(mKeyBitmask, startKey, endKey); in hasKeyInRange()