OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputDevice
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/android/hardware/input/
InputManager.java
36
import android.view.
InputDevice
;
64
private SparseArray<
InputDevice
> mInputDevices;
199
public
InputDevice
getInputDevice(int id) {
208
InputDevice
inputDevice
= mInputDevices.valueAt(index);
209
if (
inputDevice
== null) {
211
inputDevice
= mIm.getInputDevice(id);
215
if (
inputDevice
!= null) {
216
mInputDevices.setValueAt(index,
inputDevice
);
219
return
inputDevice
;
[
all
...]
/packages/apps/Settings/src/com/android/settings/inputmethod/
KeyboardLayoutPickerFragment.java
30
import android.view.
InputDevice
;
73
InputDevice
inputDevice
= mIm.getInputDeviceByDescriptor(mInputDeviceDescriptor);
74
if (
inputDevice
== null) {
78
mInputDeviceId =
inputDevice
.getId();
KeyboardLayoutDialogFragment.java
37
import android.view.
InputDevice
;
122
InputDevice
inputDevice
= mIm.getInputDeviceByDescriptor(mInputDeviceDescriptor);
123
if (
inputDevice
== null) {
127
mInputDeviceId =
inputDevice
.getId();
/frameworks/base/services/java/com/android/server/input/
InputManagerService.java
71
import android.view.
InputDevice
;
126
private
InputDevice
[] mInputDevices = new
InputDevice
[0];
132
private final ArrayList<
InputDevice
>
133
mTempFullKeyboards = new ArrayList<
InputDevice
>(); // handler thread only
359
* @param sourceMask The input sources to consult, or {@link
InputDevice
#SOURCE_ANY} to
372
* @param sourceMask The input sources to consult, or {@link
InputDevice
#SOURCE_ANY} to
385
* @param sourceMask The input sources to consult, or {@link
InputDevice
#SOURCE_ANY} to
398
* @param sourceMask The input sources to consult, or {@link
InputDevice
#SOURCE_ANY} to
550
public
InputDevice
getInputDevice(int deviceId)
[
all
...]
Completed in 37 milliseconds