OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mHasButtonUnderPad
(Results
1 - 2
of
2
) sorted by null
/frameworks/native/include/input/
InputDevice.h
105
inline void setButtonUnderPad(bool hasButton) {
mHasButtonUnderPad
= hasButton; }
106
inline bool hasButtonUnderPad() const { return
mHasButtonUnderPad
; }
123
bool
mHasButtonUnderPad
;
/frameworks/base/core/java/android/view/
InputDevice.java
57
private final boolean
mHasButtonUnderPad
;
363
mHasButtonUnderPad
= hasButtonUnderPad;
379
mHasButtonUnderPad
= in.readInt() != 0;
688
return
mHasButtonUnderPad
;
816
out.writeInt(
mHasButtonUnderPad
? 1 : 0);
Completed in 138 milliseconds