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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DCrossProcessCursorWrapper.java49 public void fillWindow(int pos, CursorWindow window) { argument
51 mCrossProcessCursor.fillWindow(pos, window);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DMoreKeysPanel.java36 * @param window PopupWindow to be used to show this more keys panel
40 PopupWindow window, KeyboardActionListener listener);
39 showMoreKeysPanel(View parentView, Controller controller, int pointX, int pointY, PopupWindow window, KeyboardActionListener listener) argument
H A DMiniKeyboardView.java142 PopupWindow window, KeyboardActionListener listener) {
159 window.setContentView(container);
160 window.setWidth(container.getMeasuredWidth());
161 window.setHeight(container.getMeasuredHeight());
162 window.showAtLocation(parentView, Gravity.NO_GRAVITY, x, y);
141 showMoreKeysPanel(View parentView, Controller controller, int pointX, int pointY, PopupWindow window, KeyboardActionListener listener) argument
/packages/apps/Browser/tests/src/com/android/browser/
H A DTestWebChromeClient.java100 public void onCloseWindow(WebView window) { argument
101 mWrappedClient.onCloseWindow(window);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DMoreSuggestionsView.java149 PopupWindow window, KeyboardActionListener listener) {
165 window.setContentView(container);
166 window.setWidth(container.getMeasuredWidth());
167 window.setHeight(container.getMeasuredHeight());
168 window.showAtLocation(parentView, Gravity.NO_GRAVITY, x, y);
148 showMoreKeysPanel(View parentView, Controller controller, int pointX, int pointY, PopupWindow window, KeyboardActionListener listener) argument
/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/Camera/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.java160 public void fillWindow(int position, CursorWindow window) { argument
165 window.acquireReference();
169 window.clear();
170 window.setStartPosition(position);
172 window.setNumColumns(columnNum);
173 while (moveToPosition(pos) && window.allocRow()) {
177 if (!window.putString(field, pos, i)) {
178 window.freeLastRow();
182 if (!window.putNull(pos, i)) {
183 window
[all...]
/packages/apps/Email/src/com/android/email/provider/
H A DContentCache.java393 public void fillWindow(int pos, CursorWindow window) { argument
394 ((CrossProcessCursor)mCursor).fillWindow(pos, window);
/packages/apps/Browser/src/com/android/browser/
H A DTab.java945 // Helper method to create a new tab or sub window.
964 // only allow new window or sub window for the foreground case
993 // Allow the popup and create the appropriate window.
1033 public void onCloseWindow(WebView window) {
1035 // JavaScript can only close popup window.
1293 // WebViewClient implementation for the sub window
1361 // WebChromeClient implementation for the sub window
1381 public void onCloseWindow(WebView window) { argument
1382 if (window !
[all...]

Completed in 339 milliseconds