Home | History | Annotate | Download | only in dreams

Lines Matching defs:mWindow

180     private Window mWindow;
221 return mWindow.superDispatchKeyEvent(event);
232 return mWindow.superDispatchKeyShortcutEvent(event);
245 return mWindow.superDispatchTouchEvent(event);
256 return mWindow.superDispatchTrackballEvent(event);
267 return mWindow.superDispatchGenericMotionEvent(event);
380 return mWindow != null ? mWindow.getWindowManager() : null;
390 return mWindow;
970 if (mWindow != null) {
973 mWindow.getWindowManager().removeViewImmediate(mWindow.getDecorView());
974 mWindow = null;
1015 mWindow = new PhoneWindow(this);
1016 mWindow.setCallback(this);
1017 mWindow.requestFeature(Window.FEATURE_NO_TITLE);
1018 mWindow.setBackgroundDrawable(new ColorDrawable(0xFF000000));
1019 mWindow.setFormat(PixelFormat.OPAQUE);
1024 WindowManager.LayoutParams lp = mWindow.getAttributes();
1036 mWindow.setAttributes(lp);
1039 mWindow.clearFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1040 mWindow.setWindowManager(null, windowToken, "dream", true);
1047 getWindowManager().addView(mWindow.getDecorView(), mWindow.getAttributes());
1054 mWindow = null;
1065 if (mWindow != null || mWindowless) {
1083 return mWindow == null ? defaultValue : (mWindow.getAttributes().flags & flag) != 0;
1087 if (mWindow != null) {
1088 WindowManager.LayoutParams lp = mWindow.getAttributes();
1090 mWindow.setAttributes(lp);
1091 mWindow.getWindowManager().updateViewLayout(mWindow.getDecorView(), lp);
1096 View v = mWindow == null ? null : mWindow.getDecorView();
1101 View v = mWindow == null ? null : mWindow.getDecorView();
1129 pw.println(" window: " + mWindow);