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

/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java35 return mWindow.getBlob(mPos, columnIndex);
49 return mWindow.getString(mPos, columnIndex);
63 mWindow.copyStringToBuffer(mPos, columnIndex, buffer);
78 return mWindow.getShort(mPos, columnIndex);
93 return mWindow.getInt(mPos, columnIndex);
108 return mWindow.getLong(mPos, columnIndex);
123 return mWindow.getFloat(mPos, columnIndex);
138 return mWindow.getDouble(mPos, columnIndex);
152 return mWindow.isNull(mPos, columnIndex);
166 return mWindow
245 protected CursorWindow mWindow; field in class:AbstractWindowedCursor
[all...]
H A DCursorToBulkCursorAdaptor.java39 private CursorWindow mWindow; field in class:CursorToBulkCursorAdaptor
92 mWindow = window;
108 if (mWindow != null) {
109 mWindow.close();
116 if (mWindow != null) {
117 if (startPos < mWindow.getStartPosition() ||
118 startPos >= (mWindow.getStartPosition() + mWindow.getNumRows())) {
119 mCursor.fillWindow(startPos, mWindow);
121 return mWindow;
[all...]
H A DBulkCursorToCursorAdaptor.java101 if (mWindow != null) {
102 if (newPosition < mWindow.getStartPosition() ||
103 newPosition >= (mWindow.getStartPosition() + mWindow.getNumRows())) {
104 mWindow = mBulkCursor.getWindow(newPosition);
109 mWindow = mBulkCursor.getWindow(newPosition);
118 if (mWindow == null) {
136 mWindow = null;
147 mWindow = null;
159 mWindow
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCursor.java125 // use cached mWindow, to avoid get null mWindow
126 CursorWindow cw = mWindow;
253 if (mWindow == null || newPosition < mWindow.getStartPosition() ||
254 newPosition >= (mWindow.getStartPosition() + mWindow.getNumRows())) {
270 if (mWindow == null) {
272 mWindow = new CursorWindow(true /* the window is local only */);
277 mWindow
[all...]
/frameworks/base/core/java/android/app/
H A DDialog.java77 Window mWindow; field in class:Dialog
143 mWindow = w;
229 mDecor = mWindow.getDecorView();
230 WindowManager.LayoutParams l = mWindow.getAttributes();
281 mWindow.closeAllPanels();
350 bundle.putBundle(DIALOG_HIERARCHY_TAG, mWindow.saveHierarchyState());
372 mWindow.restoreHierarchyState(dialogHierarchyState);
387 return mWindow;
400 return mWindow != null ? mWindow
[all...]
H A DActivity.java642 private Window mWindow; field in class:Activity
746 return mWindow;
759 return mWindow != null ? mWindow.getCurrentFocus() : null;
801 mVisibleFromClient = !mWindow.getWindowStyle().getBoolean(
840 if (mWindow != null) {
843 mWindow.restoreHierarchyState(windowState);
1086 outState.putBundle(WINDOW_HIERARCHY_TAG, mWindow.saveHierarchyState());
1349 if (mWindow != null) {
1351 mWindow
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceView.java101 MyWindow mWindow; field in class:SurfaceView
242 if (mSession != null && mWindow != null) {
247 mSession.relayout(mWindow, mLayout, mWidth, mHeight, VISIBLE, false,
263 if (mWindow != null) {
265 mSession.remove(mWindow);
268 mWindow = null;
413 final boolean creating = mWindow == null;
463 if (mWindow == null) {
464 mWindow = new MyWindow(this);
467 mSession.add(mWindow, mLayou
[all...]
H A DViewRoot.java128 final W mWindow; field in class:ViewRoot
254 mWindow = new W(this, context);
261 mAttachInfo = new View.AttachInfo(sWindowSession, mWindow, this, this);
477 res = sWindowSession.add(mWindow, mWindowAttributes,
496 if (Config.LOGV) Log.v("ViewRoot", "Added window " + mWindow);
518 "Unable to add window -- window " + mWindow
526 "Unable to add window " + mWindow +
530 "Unable to add window " + mWindow +
1079 sWindowSession.setTransparentRegion(mWindow, mTransparentRegion);
1114 sWindowSession.setInsets(mWindow, inset
2836 final IWindow mWindow; field in class:ViewRoot.EventCompletion
[all...]
H A DWindowManagerImpl.java142 if (mRoots[i].mWindow.asBinder() == wparams.token) {
H A DViewDebug.java1035 root.mAttachInfo.mSession.getDisplayFrame(root.mAttachInfo.mWindow, outRect);
H A DView.java3939 mAttachInfo.mSession.getDisplayFrame(mAttachInfo.mWindow, outRect);
9019 final IWindow mWindow; field in class:View.AttachInfo
9199 mWindow = window;
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java61 private final Window mWindow; field in class:AlertController
170 mWindow = window;
198 mWindow.requestFeature(Window.FEATURE_NO_TITLE);
201 mWindow.setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
204 mWindow.setContentView(com.android.internal.R.layout.alert_dialog);
346 LinearLayout contentPanel = (LinearLayout) mWindow.findViewById(R.id.contentPanel);
350 LinearLayout topPanel = (LinearLayout) mWindow.findViewById(R.id.topPanel);
355 View buttonPanel = mWindow.findViewById(R.id.buttonPanel);
362 customPanel = (FrameLayout) mWindow.findViewById(R.id.customPanel);
363 FrameLayout custom = (FrameLayout) mWindow
[all...]
/frameworks/base/core/java/android/widget/
H A DMediaController.java76 private Window mWindow; field in class:MediaController
127 mWindow = PolicyManager.makeNewWindow(mContext);
128 mWindow.setWindowManager(mWindowManager, null, null);
129 mWindow.requestFeature(Window.FEATURE_NO_TITLE);
130 mDecor = mWindow.getDecorView();
132 mWindow.setContentView(this);
133 mWindow.setBackgroundDrawableResource(android.R.color.transparent);
137 mWindow.setVolumeControlStream(AudioManager.STREAM_MUSIC);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java208 final BaseIWindow mWindow = new BaseIWindow() { field in class:WallpaperService.Engine
490 mSession.add(mWindow, mLayout, View.VISIBLE, mContentInsets);
498 mWindow, mLayout, mWidth, mHeight,
571 mSession.finishDrawing(mWindow);
595 mWindow.setSession(mSession);
675 mSession.wallpaperOffsetsComplete(mWindow.asBinder());
692 mSession.wallpaperCommandComplete(mWindow.asBinder(), result);
740 mSession.remove(mWindow);
796 mEngine.mWindow.onDispatchPointer(event, event.getEventTime(), false);
850 mEngine.mSession.finishDrawing(mEngine.mWindow);
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java226 SoftInputWindow mWindow; field in class:InputMethodService
320 mWindow.setToken(token);
545 if (mWindow != null) {
557 mWindow = new SoftInputWindow(this, mTheme, mDispatcherState);
559 mWindow.getWindow().setLayout(MATCH_PARENT, WRAP_CONTENT);
587 mWindow.setContentView(mRootView);
591 mWindow.getWindow().setWindowAnimations(
619 mWindow.dismiss();
697 return mWindow;
794 onConfigureWindow(mWindow
[all...]

Completed in 859 milliseconds