OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mInputManager
(Results
1 - 10
of
10
) sorted by null
/packages/apps/Browser/src/com/android/browser/
UrlInputView.java
70
private InputMethodManager
mInputManager
;
103
mInputManager
= (InputMethodManager) ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
245
mInputManager
.hideSoftInputFromWindow(getWindowToken(), 0);
249
mInputManager
.focusIn(this);
250
mInputManager
.showSoftInput(this, 0);
256
mInputManager
.hideSoftInputFromWindow(getWindowToken(), 0);
BaseUi.java
84
private InputMethodManager
mInputManager
;
122
mInputManager
= (InputMethodManager)
563
if (
mInputManager
.isActive()) {
564
mInputManager
.hideSoftInputFromWindow(mContentView.getWindowToken(),
/frameworks/base/services/java/com/android/server/wm/
FakeWindowImpl.java
50
mService.
mInputManager
.registerInputChannel(mServerChannel, null);
100
mService.
mInputManager
.unregisterInputChannel(mServerChannel);
InputMonitor.java
312
mService.
mInputManager
.setInputWindows(mInputWindowHandles);
422
mService.
mInputManager
.setFocusedApplication(null);
428
mService.
mInputManager
.setFocusedApplication(handle);
488
mService.
mInputManager
.setInputDispatchMode(mInputDispatchEnabled, mInputDispatchFrozen);
DragState.java
103
mService.
mInputManager
.registerInputChannel(mServerChannel, null);
156
mService.
mInputManager
.unregisterInputChannel(mServerChannel);
WindowManagerService.java
542
final InputManagerService
mInputManager
;
731
mInputManager
= inputManager; // Must be before createDisplayContentLocked.
737
mPointerEventDispatcher = new PointerEventDispatcher(
mInputManager
.monitorInput(TAG));
[
all
...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java
68
private DefaultSoftKeyboardJAJP
mInputManager
;
210
mInputManager
= inputManager;
350
mInputManager
.nextKeyMode();
/development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java
60
private InputManager
mInputManager
;
70
mInputManager
= (InputManager)getSystemService(Context.INPUT_SERVICE);
95
mInputManager
.registerInputDeviceListener(this, null);
99
int[] ids =
mInputManager
.getInputDeviceIds();
110
mInputManager
.unregisterInputDeviceListener(this);
159
final InputDevice device =
mInputManager
.getInputDevice(deviceId);
/frameworks/base/services/java/com/android/server/
WiredAccessoryManager.java
84
private final InputManagerService
mInputManager
;
93
mInputManager
= inputManager;
112
if (
mInputManager
.getSwitchState(-1, InputDevice.SOURCE_ANY, SW_HEADPHONE_INSERT) == 1) {
115
if (
mInputManager
.getSwitchState(-1, InputDevice.SOURCE_ANY, SW_MICROPHONE_INSERT) == 1) {
/frameworks/base/services/jni/
com_android_server_input_InputManagerService.cpp
164
inline sp<InputManager> getInputManager() const { return
mInputManager
; }
217
sp<InputManager>
mInputManager
;
282
mInputManager
= new InputManager(eventHub, this, this);
293
mInputManager
->getReader()->dump(dump);
296
mInputManager
->getDispatcher()->dump(dump);
333
mInputManager
->getReader()->requestRefreshConfiguration(
341
return
mInputManager
->getDispatcher()->registerInputChannel(
347
return
mInputManager
->getDispatcher()->unregisterInputChannel(inputChannel);
645
mInputManager
->getDispatcher()->setInputWindows(windowHandles);
670
mInputManager
->getReader()->requestRefreshConfiguration(changes)
[
all
...]
Completed in 2114 milliseconds