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.java129 // use cached mWindow, to avoid get null mWindow
130 CursorWindow cw = mWindow;
257 if (mWindow == null || newPosition < mWindow.getStartPosition() ||
258 newPosition >= (mWindow.getStartPosition() + mWindow.getNumRows())) {
274 if (mWindow == null) {
276 mWindow = new CursorWindow(true /* the window is local only */);
281 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.java643 private Window mWindow; field in class:Activity
747 return mWindow;
760 return mWindow != null ? mWindow.getCurrentFocus() : null;
802 mVisibleFromClient = !mWindow.getWindowStyle().getBoolean(
841 if (mWindow != null) {
844 mWindow.restoreHierarchyState(windowState);
1087 outState.putBundle(WINDOW_HIERARCHY_TAG, mWindow.saveHierarchyState());
1368 if (mWindow != null) {
1370 mWindow
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceView.java101 MyWindow mWindow; field in class:SurfaceView
249 if (mSession != null && mWindow != null) {
254 mSession.relayout(mWindow, mLayout, mWidth, mHeight, VISIBLE, false,
270 if (mWindow != null) {
272 mSession.remove(mWindow);
275 mWindow = null;
422 final boolean creating = mWindow == null;
472 if (mWindow == null) {
473 mWindow = new MyWindow(this);
476 mSession.addWithoutInputChannel(mWindow, mLayou
[all...]
H A DViewRoot.java131 final W mWindow; field in class:ViewRoot
265 mWindow = new W(this, context);
272 mAttachInfo = new View.AttachInfo(sWindowSession, mWindow, this, this);
497 res = sWindowSession.add(mWindow, mWindowAttributes,
518 if (Config.LOGV) Log.v(TAG, "Added window " + mWindow);
540 "Unable to add window -- window " + mWindow
548 "Unable to add window " + mWindow +
552 "Unable to add window " + mWindow +
1174 sWindowSession.setTransparentRegion(mWindow, mTransparentRegion);
1209 sWindowSession.setInsets(mWindow, inset
[all...]
H A DWindowManagerImpl.java142 if (mRoots[i].mWindow.asBinder() == wparams.token) {
H A DViewDebug.java1075 root.mAttachInfo.mSession.getDisplayFrame(root.mAttachInfo.mWindow, outRect);
H A DView.java4075 mAttachInfo.mSession.getDisplayFrame(mAttachInfo.mWindow, outRect);
9283 final IWindow mWindow; field in class:View.AttachInfo
9463 mWindow = window;
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java62 private final Window mWindow; field in class:AlertController
171 mWindow = window;
199 mWindow.requestFeature(Window.FEATURE_NO_TITLE);
202 mWindow.setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
205 mWindow.setContentView(com.android.internal.R.layout.alert_dialog);
347 LinearLayout contentPanel = (LinearLayout) mWindow.findViewById(R.id.contentPanel);
351 LinearLayout topPanel = (LinearLayout) mWindow.findViewById(R.id.topPanel);
356 View buttonPanel = mWindow.findViewById(R.id.buttonPanel);
363 customPanel = (FrameLayout) mWindow.findViewById(R.id.customPanel);
364 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/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...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java234 final BaseIWindow mWindow = new BaseIWindow() { field in class:WallpaperService.Engine
517 mSession.add(mWindow, mLayout, View.VISIBLE, mContentInsets,
529 mWindow, mLayout, mWidth, mHeight,
615 mSession.finishDrawing(mWindow);
640 mWindow.setSession(mSession);
723 mSession.wallpaperOffsetsComplete(mWindow.asBinder());
740 mSession.wallpaperCommandComplete(mWindow.asBinder(), result);
791 mSession.remove(mWindow);

Completed in 165 milliseconds