Searched refs:mWindow (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java40 protected CursorWindow mWindow; field in class:AbstractWindowedCursor
45 return mWindow.getBlob(mPos, columnIndex);
51 return mWindow.getString(mPos, columnIndex);
57 mWindow.copyStringToBuffer(mPos, columnIndex, buffer);
63 return mWindow.getShort(mPos, columnIndex);
69 return mWindow.getInt(mPos, columnIndex);
75 return mWindow.getLong(mPos, columnIndex);
81 return mWindow.getFloat(mPos, columnIndex);
87 return mWindow.getDouble(mPos, columnIndex);
93 return mWindow
[all...]
H A DBulkCursorToCursorAdaptor.java80 if (mWindow == null
81 || newPosition < mWindow.getStartPosition()
82 || newPosition >= mWindow.getStartPosition() + mWindow.getNumRows()) {
94 if (mWindow == null) {
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/actions/
H A DExpandAllAction.java26 UiAutomatorViewer mWindow; field in class:ExpandAllAction
30 mWindow = window;
40 mWindow.expandAll();
H A DOpenFilesAction.java28 ApplicationWindow mWindow; field in class:OpenFilesAction
32 mWindow = window;
42 OpenDialog d = new OpenDialog(mWindow.getShell());
/frameworks/base/core/java/android/service/dreams/
H A DDream.java54 private Window mWindow; field in class:Dream
72 return mWindow.superDispatchKeyEvent(event);
81 return mWindow.superDispatchKeyShortcutEvent(event);
90 return mWindow.superDispatchTouchEvent(event);
99 return mWindow.superDispatchTrackballEvent(event);
108 return mWindow.superDispatchGenericMotionEvent(event);
158 mWindow.addFlags(
197 return mWindow;
295 final View v = mWindow.getDecorView();
317 mWindowManager.removeView(mWindow
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCursor.java122 if (mWindow == null || newPosition < mWindow.getStartPosition() ||
123 newPosition >= (mWindow.getStartPosition() + mWindow.getNumRows())) {
143 mCount = mQuery.fillWindow(mWindow, startPos, requiredPos, true);
144 mCursorWindowCapacity = mWindow.getNumRows();
151 mQuery.fillWindow(mWindow, startPos, requiredPos, false);
215 if (mWindow != null) {
216 mWindow.clear();
253 if (mWindow !
[all...]
/frameworks/base/core/java/android/app/
H A DDialog.java87 Window mWindow; field in class:Dialog
161 mWindow = w;
245 if (mWindow.hasFeature(Window.FEATURE_ACTION_BAR)) {
246 mWindow.invalidatePanelMenu(Window.FEATURE_ACTION_BAR);
260 mDecor = mWindow.getDecorView();
262 if (mActionBar == null && mWindow.hasFeature(Window.FEATURE_ACTION_BAR)) {
266 WindowManager.LayoutParams l = mWindow.getAttributes();
313 if (mWindow.isDestroyed()) {
325 mWindow.closeAllPanels();
396 bundle.putBundle(DIALOG_HIERARCHY_TAG, mWindow
[all...]
H A DActivity.java703 private Window mWindow; field in class:Activity
799 return mWindow;
840 return mWindow != null ? mWindow.getCurrentFocus() : null;
925 if (mWindow != null) {
928 mWindow.restoreHierarchyState(windowState);
1188 outState.putBundle(WINDOW_HIERARCHY_TAG, mWindow.saveHierarchyState());
1449 if (mWindow != null) {
1451 mWindow.onConfigurationChanged(newConfig);
1924 mWindow
[all...]
H A DAlertDialog.java115 mWindow.alwaysReadCloseOnTouchAttr();
121 mWindow.alwaysReadCloseOnTouchAttr();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java67 private ViewGroup mWindow; field in class:TabletTicker
166 if (mWindow != null) {
167 mWindow.removeView(mCurrentView);
179 if (mWindow == null) {
180 mWindow = makeWindow();
181 WindowManagerImpl.getDefault().addView(mWindow, mWindow.getLayoutParams());
184 mWindow.addView(mCurrentView);
192 mWindowShouldClose = (mCurrentView == null && mWindow != null);
245 WindowManagerImpl.getDefault().removeView(mWindow);
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java63 private final Window mWindow; field in class:AlertController
185 mWindow = window;
234 mWindow.requestFeature(Window.FEATURE_NO_TITLE);
237 mWindow.setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
240 mWindow.setContentView(mAlertDialogLayout);
382 LinearLayout contentPanel = (LinearLayout) mWindow.findViewById(R.id.contentPanel);
386 LinearLayout topPanel = (LinearLayout) mWindow.findViewById(R.id.topPanel);
391 View buttonPanel = mWindow.findViewById(R.id.buttonPanel);
394 mWindow.setCloseOnTouchOutsideIfNotSet(true);
399 customPanel = (FrameLayout) mWindow
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceView.java98 MyWindow mWindow; field in class:SurfaceView
259 if (mWindow != null) {
261 mSession.remove(mWindow);
265 mWindow = null;
412 final boolean creating = mWindow == null;
458 if (mWindow == null) {
459 mWindow = new MyWindow(this);
462 mSession.addWithoutInputChannel(mWindow, mWindow.mSeq, mLayout,
481 mWindow, mWindo
[all...]
H A DViewRootImpl.java167 final W mWindow; field in class:ViewRootImpl
381 mWindow = new W(this);
394 mAttachInfo = new View.AttachInfo(sWindowSession, mWindow, this, mHandler, this);
551 res = sWindowSession.add(mWindow, mSeq, mWindowAttributes,
574 if (DEBUG_LAYOUT) Log.v(TAG, "Added window " + mWindow);
598 "Unable to add window -- window " + mWindow
606 "Unable to add window " + mWindow +
610 "Unable to add window " + mWindow +
1509 if (!sWindowSession.outOfMemory(mWindow)) {
1542 if (!sWindowSession.outOfMemory(mWindow)) {
[all...]
H A DWindowManagerImpl.java286 if (mRoots[i].mWindow.asBinder() == wparams.token) {
H A DViewDebug.java604 root.mAttachInfo.mSession.getDisplayFrame(root.mAttachInfo.mWindow, outRect);
H A DView.java7473 mAttachInfo.mSession.getDisplayFrame(mAttachInfo.mWindow, outRect);
15940 IBinder token = mAttachInfo.mSession.prepareDrag(mAttachInfo.mWindow,
15961 okay = mAttachInfo.mSession.performDrag(mAttachInfo.mWindow, token,
17302 final IWindow mWindow; field in class:View.AttachInfo
17572 mWindow = window;
/frameworks/base/core/java/android/widget/
H A DMediaController.java78 private Window mWindow; field in class:MediaController
128 mWindow = PolicyManager.makeNewWindow(mContext);
129 mWindow.setWindowManager(mWindowManager, null, null);
130 mWindow.requestFeature(Window.FEATURE_NO_TITLE);
131 mDecor = mWindow.getDecorView();
133 mWindow.setContentView(this);
134 mWindow.setBackgroundDrawableResource(android.R.color.transparent);
138 mWindow.setVolumeControlStream(AudioManager.STREAM_MUSIC);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java257 SoftInputWindow mWindow; field in class:InputMethodService
354 mWindow.setToken(token);
611 if (mWindow != null) {
628 mWindow = new SoftInputWindow(this, mTheme, mDispatcherState);
630 mWindow.getWindow().setLayout(MATCH_PARENT, WRAP_CONTENT);
659 mWindow.setContentView(mRootView);
663 mWindow.getWindow().setWindowAnimations(
695 mWindow.getWindow().setWindowAnimations(0);
696 mWindow.dismiss();
780 return mWindow;
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java254 final BaseIWindow mWindow = new BaseIWindow() { field in class:WallpaperService.Engine
607 if (mSession.add(mWindow, mWindow.mSeq, mLayout, View.VISIBLE, mContentInsets,
622 mWindow, mWindow.mSeq, mLayout, mWidth, mHeight,
733 mSession.finishDrawing(mWindow);
758 mWindow.setSession(mSession);
853 mSession.wallpaperOffsetsComplete(mWindow.asBinder());
870 mSession.wallpaperCommandComplete(mWindow.asBinder(), result);
922 mSession.remove(mWindow);
[all...]

Completed in 414 milliseconds