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;
924 if (mWindow != null) {
927 mWindow.getWindowManager().removeViewImmediate(mWindow.getDecorView());
928 mWindow = null;
969 mWindow = new PhoneWindow(this);
970 mWindow.setCallback(this);
971 mWindow.requestFeature(Window.FEATURE_NO_TITLE);
972 mWindow.setBackgroundDrawable(new ColorDrawable(0xFF000000));
973 mWindow.setFormat(PixelFormat.OPAQUE);
978 WindowManager.LayoutParams lp = mWindow.getAttributes();
990 mWindow.setAttributes(lp);
993 mWindow.clearFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
994 mWindow.setWindowManager(null, windowToken, "dream", true);
1001 getWindowManager().addView(mWindow.getDecorView(), mWindow.getAttributes());
1008 mWindow = null;
1019 if (mWindow != null || mWindowless) {
1037 return mWindow == null ? defaultValue : (mWindow.getAttributes().flags & flag) != 0;
1041 if (mWindow != null) {
1042 WindowManager.LayoutParams lp = mWindow.getAttributes();
1044 mWindow.setAttributes(lp);
1045 mWindow.getWindowManager().updateViewLayout(mWindow.getDecorView(), lp);
1050 View v = mWindow == null ? null : mWindow.getDecorView();
1055 View v = mWindow == null ? null : mWindow.getDecorView();
1083 pw.println(" window: " + mWindow);