Searched defs:window (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DSyncWindow.java29 public static int toDays(int window) { argument
30 switch(window) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DViewLayoutUtils.java58 public static void updateLayoutHeightOf(final Window window, final int layoutHeight) { argument
59 final WindowManager.LayoutParams params = window.getAttributes();
62 window.setAttributes(params);
/packages/apps/Browser/tests/src/com/android/browser/
H A DTestWebChromeClient.java100 public void onCloseWindow(WebView window) { argument
101 mWrappedClient.onCloseWindow(window);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DTutorialEN.java90 PopupWindow window; field in class:TutorialEN.Bubble
120 window = new PopupWindow(context);
121 window.setBackgroundDrawable(null);
131 window.setContentView(textView);
132 window.setFocusable(false);
133 window.setTouchable(true);
134 window.setOutsideTouchable(false);
163 int textHeight = chooseSize(window, inputView, text, textView);
168 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight();
169 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DTutorialJAJP.java92 PopupWindow window; field in class:TutorialJAJP.Bubble
122 window = new PopupWindow(context);
123 window.setBackgroundDrawable(null);
133 window.setContentView(textView);
134 window.setFocusable(false);
135 window.setTouchable(true);
136 window.setOutsideTouchable(false);
165 int textHeight = chooseSize(window, inputView, text, textView);
170 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight();
171 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DUtil.java671 public static void enterLightsOutMode(Window window) { argument
672 WindowManager.LayoutParams params = window.getAttributes();
674 window.setAttributes(params);
/packages/apps/Mms/src/com/android/mms/
H A DSuggestionsProvider.java159 public void fillWindow(int position, CursorWindow window) { argument
164 window.acquireReference();
168 window.clear();
169 window.setStartPosition(position);
171 window.setNumColumns(columnNum);
172 while (moveToPosition(pos) && window.allocRow()) {
176 if (!window.putString(field, pos, i)) {
177 window.freeLastRow();
181 if (!window.putNull(pos, i)) {
182 window
[all...]
/packages/apps/Email/src/com/android/email/provider/
H A DContentCache.java394 public void fillWindow(int pos, CursorWindow window) { argument
395 ((CrossProcessCursor)mCursor).fillWindow(pos, window);
/packages/apps/Browser/src/com/android/browser/
H A DTab.java693 // Helper method to create a new tab or sub window.
712 // only allow new window or sub window for the foreground case
741 // Allow the popup and create the appropriate window.
781 public void onCloseWindow(WebView window) {
783 // JavaScript can only close popup window.
1026 // WebViewClient implementation for the sub window
1093 // WebChromeClient implementation for the sub window
1113 public void onCloseWindow(WebView window) { argument
1114 if (window !
[all...]

Completed in 316 milliseconds