Searched defs:windowType (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DInputConsumerImpl.java78 private int getLayerLw(int windowType) { argument
79 return mService.mPolicy.windowTypeToLayerLw(windowType)
H A DWindowToken.java41 final int windowType; field in class:WindowToken
76 windowType = type;
91 pw.print(prefix); pw.print("windowType="); pw.print(windowType);
H A DAccessibilityController.java391 final int windowType = windowState.mAttrs.type;
392 if (!policy.isTopLevelWindow(windowType) && windowState.mAttachedWindow != null
393 && !policy.canMagnifyWindow(windowType)) {
1295 private static boolean isReportedWindowType(int windowType) { argument
1296 return (windowType != WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
1297 && windowType != WindowManager.LayoutParams.TYPE_WALLPAPER
1298 && windowType != WindowManager.LayoutParams.TYPE_BOOT_PROGRESS
1299 && windowType != WindowManager.LayoutParams.TYPE_DISPLAY_OVERLAY
1300 && windowType != WindowManager.LayoutParams.TYPE_DRAG
1301 && windowType !
[all...]
H A DWindowManagerService.java1839 private static boolean excludeWindowTypeFromTapOutTask(int windowType) { argument
1840 switch (windowType) {
1965 if (token.windowType != TYPE_INPUT_METHOD) {
1971 if (token.windowType != TYPE_VOICE_INTERACTION) {
1977 if (token.windowType != TYPE_WALLPAPER) {
1983 if (token.windowType != TYPE_DREAM) {
1989 if (token.windowType != TYPE_ACCESSIBILITY_OVERLAY) {
1995 if (token.windowType != TYPE_QS_DIALOG) {
3388 } else if (wtoken.windowType == TYPE_WALLPAPER) {
3391 } else if (wtoken.windowType
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DSoftInputWindow.java69 int windowType, int gravity, boolean takesFocus) {
75 mWindowType = windowType;
67 SoftInputWindow(Context context, String name, int theme, Callback callback, KeyEvent.Callback keyEventCallback, KeyEvent.DispatcherState dispatcherState, int windowType, int gravity, boolean takesFocus) argument
/frameworks/base/core/tests/coretests/src/android/hardware/display/
H A DVirtualDisplayTest.java283 final int color, final int windowType, final int windowFlags) {
295 color, windowType, windowFlags);
349 int color, int windowType, int windowFlags) {
352 mWindowType = windowType;
282 assertDisplayCanShowPresentation(String message, final Display display, final int color, final int windowType, final int windowFlags) argument
348 TestPresentation(Context context, Display display, int color, int windowType, int windowFlags) argument
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java1091 int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) {
1095 mWindowType = windowType;
1242 int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) {
1244 windowType, isPreview, reqWidth, reqHeight, padding);
1089 IWallpaperEngineWrapper(WallpaperService context, IWallpaperConnection conn, IBinder windowToken, int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) argument
1241 attach(IWallpaperConnection conn, IBinder windowToken, int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialog.java145 public VolumeDialog(Context context, int windowType, VolumeDialogController controller, argument
150 mWindowType = windowType;
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java1349 * @param windowType The window type.
1352 public boolean canMagnifyWindow(int windowType); argument
1360 * @param windowType The window type.
1363 public boolean isTopLevelWindow(int windowType); argument
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java3553 private int getTypeForWindowManagerWindowType(int windowType) { argument
3554 switch (windowType) {
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java7545 public boolean canMagnifyWindow(int windowType) { argument
7546 switch (windowType) {
7558 public boolean isTopLevelWindow(int windowType) { argument
7559 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
7560 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
7561 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);

Completed in 2318 milliseconds