Searched refs:win (Results 26 - 40 of 40) sorted by last modified time

12

/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java131 Window win = getWindow();
132 win.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
134 Log.d(TAG, "flags=" + Integer.toHexString(win.getAttributes().flags));
139 Window win = getWindow();
140 win.setFlags(0, WindowManager.LayoutParams.FLAG_FULLSCREEN);
141 Log.d(TAG, "flags=" + Integer.toHexString(win.getAttributes().flags));
/frameworks/base/native/android/
H A Dnative_window.cpp28 sp<ANativeWindow> win = android_view_Surface_getNativeWindow(env, surface); local
29 if (win != NULL) {
30 win->incStrong((void*)ANativeWindow_acquire);
32 return win.get();
/frameworks/base/opengl/java/android/opengl/
H A DEGL14.java226 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
231 Object win,
239 Object win,
246 Object win,
251 if (win instanceof SurfaceView) {
252 SurfaceView surfaceView = (SurfaceView)win;
254 } else if (win instanceof SurfaceHolder) {
255 SurfaceHolder holder = (SurfaceHolder)win;
257 } else if (win instanceof Surface) {
258 sur = (Surface) win;
228 _eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
236 _eglCreateWindowSurfaceTexture( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
244 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
[all...]
H A DGLU.java123 * and view. The result is stored in win.
140 * @param win the output vector {winX, winY, winZ}, that returns the
142 * @param winOffset the offset into the win array where the win vector data
149 int[] view, int viewOffset, float[] win, int winOffset) {
173 win[winOffset] =
177 win[winOffset + 1] =
180 win[winOffset + 2] = (scratch[V2_OFFSET + 2] * rw + 1.0f) * 0.5f;
147 gluProject(float objX, float objY, float objZ, float[] model, int modelOffset, float[] project, int projectOffset, int[] view, int viewOffset, float[] win, int winOffset) argument
/frameworks/base/libs/hwui/debug/
H A Dnullegl.cpp83 EGLNativeWindowType win,
82 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list) argument
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java3640 final PhoneWindow win = ref.get();
3641 if (win == null || win == phoneWindow) {
3655 final PhoneWindow win = ref.get();
3656 if (win != null) {
3657 win.onOptionsPanelRotationChanged();
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuDialogHelper.java93 Window win = mDialog.getWindow();
94 if (win != null) {
95 View decor = win.getDecorView();
105 Window win = mDialog.getWindow();
106 if (win != null) {
107 View decor = win.getDecorView();
/frameworks/base/core/jni/
H A Dandroid_opengl_EGL14.cpp517 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
520 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
559 if (win == NULL) {
567 window = android::android_view_Surface_getNativeWindow(_env, win);
590 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
593 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
619 if (win == NULL) {
626 producer = android::SurfaceTexture_getProducer(_env, win);
519 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
592 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
/frameworks/base/core/java/android/app/
H A DActivity.java1270 final Window win = getWindow();
1271 if (win != null) win.makeActive();
3020 Window win = getWindow();
3021 if (win.superDispatchKeyEvent(event)) {
3025 if (decor == null) decor = win.getDecorView();
5645 final Window win = getWindow();
5646 if (win != null) {
5647 win.setTitle(title);
5649 win
[all...]
H A DInstrumentation.java776 Window win = activity.getWindow();
778 returnValue = win.performPanelIdentifierAction(
839 Window win = activity.getWindow();
840 returnValue = win.performContextMenuIdentifierAction(
H A DLocalActivityManager.java358 Window win;
359 win = r.window;
371 return win;
388 Window win = null;
390 win = performDestroy(r, finish);
396 return win;
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java233 WindowNode win = as.mWindowNodes.get(pos);
239 win.writeSelfToParcel(out, pwriter, mTmpMatrix);
241 ViewNode root = win.mRoot;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java1076 * @param win The input method's window.
1083 public void onConfigureWindow(Window win, boolean isFullscreen, argument
/frameworks/base/core/java/android/view/
H A DViewConfiguration.java302 final WindowManager win = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
303 final Display display = win.getDefaultDisplay();
H A DWindowManagerPolicy.java707 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs); argument
766 * @param win The window being added.
772 public int prepareAddWindowLw(WindowState win, argument
779 * @param win The window being removed.
781 public void removeWindowLw(WindowState win); argument
788 * @param win The window that is changing.
795 public int selectAnimationLw(WindowState win, int transit); argument
869 * @param win The window that currently has focus. This is where the key
878 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags); argument
887 * @param win Th
894 dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) argument
932 layoutWindowLw(WindowState win, WindowState attached) argument
988 applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs, WindowState attached) argument
1251 performHapticFeedbackLw(WindowState win, int effectId, boolean always) argument
1388 isNavBarForcedShownLw(WindowState win) argument
[all...]

Completed in 420 milliseconds

12