Searched refs:window (Results 51 - 75 of 107) sorted by relevance

12345

/frameworks/base/tests/BrowserTestPlugin/jni/
H A Dmain.cpp40 NPError NPP_SetWindow(NPP instance, NPWindow* window);
179 NPError NPP_SetWindow(NPP instance, NPWindow* window) argument
185 obj->window = window;
/frameworks/native/opengl/tests/filter/
H A Dfilter.cpp42 EGLNativeWindowType window = 0; local
44 window = android_createDisplaySurface();
51 dpy, s_configAttribs, window, &config);
52 surface = eglCreateWindowSurface(dpy, config, window, NULL);
/frameworks/base/core/java/android/app/
H A DLocalActivityManager.java57 Window window; // Activity's top-level window. field in class:LocalActivityManager.LocalActivityRecord
140 r.window = r.activity.getWindow();
254 * @return Returns the window of the activity. The caller needs to take
255 * care of adding this window to a view hierarchy, and likewise dealing
256 * with removing the old window if the activity has changed.
322 return r.window;
333 return r.window;
353 return r.window;
358 win = r.window;
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java798 * @param window The cursor window to clear and fill.
799 * @param startPos The start position for filling the window.
800 * @param requiredPos The position of a row that MUST be in the window.
804 * regagless of whether they fit in the window.
814 CursorWindow window, int startPos, int requiredPos, boolean countAllRows,
819 if (window == null) {
820 throw new IllegalArgumentException("window must not be null.");
823 window.acquireReference();
839 mConnectionPtr, statement.mStatementPtr, window
813 executeForCursorWindow(String sql, Object[] bindArgs, CursorWindow window, int startPos, int requiredPos, boolean countAllRows, CancellationSignal cancellationSignal) argument
[all...]
H A DSQLiteCursor.java54 /** The number of rows that can fit in the cursor window, 0 if unknown */
121 // Make sure the row at newPosition is present in the window
234 public void setWindow(CursorWindow window) { argument
235 super.setWindow(window);
H A DSQLiteSession.java802 * @param window The cursor window to clear and fill.
803 * @param startPos The start position for filling the window.
804 * @param requiredPos The position of a row that MUST be in the window.
808 * regagless of whether they fit in the window.
820 CursorWindow window, int startPos, int requiredPos, boolean countAllRows,
825 if (window == null) {
826 throw new IllegalArgumentException("window must not be null.");
830 window.clear();
837 window, startPo
819 executeForCursorWindow(String sql, Object[] bindArgs, CursorWindow window, int startPos, int requiredPos, boolean countAllRows, int connectionFlags, CancellationSignal cancellationSignal) argument
[all...]
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java256 * Fills the specified cursor window by iterating over the contents of the cursor.
257 * The window is filled until the cursor is exhausted or the window runs out
262 * @param cursor The cursor that contains the data to put in the window.
263 * @param position The start position for filling the window.
264 * @param window The window to fill.
268 int position, final CursorWindow window) {
274 window.clear();
275 window
267 cursorFillWindow(final Cursor cursor, int position, final CursorWindow window) argument
[all...]
H A DCursorWindow.java36 * receives a read-only view of the cursor window. Typically the cursor window
44 /** The cursor window size. resource xml file specifies the value in kB.
91 * Creates a new empty cursor window and gives it a name.
97 * @param name The name of the cursor window, or null if none.
104 throw new CursorWindowAllocationException("Cursor window allocation of " +
112 * Creates a new empty cursor window.
118 * @param localWindow True if this window will be used in this process only,
133 throw new CursorWindowAllocationException("Cursor window could not be "
164 * Gets the name of this cursor window, neve
718 recordNewWindow(int pid, int window) argument
727 recordClosingOfWindow(int window) argument
[all...]
H A DAbstractCursor.java106 * window with the contents of the cursor, otherwise null.
108 * @return The pre-filled window that backs this cursor, or null if none.
227 public void fillWindow(int position, CursorWindow window) { argument
228 DatabaseUtils.cursorFillWindow(this, position, window);
/frameworks/base/tests/BrowserTestPlugin/jni/event/
H A DEventPlugin.cpp54 const int W = obj->window->width;
55 const int H = obj->window->height;
/frameworks/native/include/ui/
H A DANativeObjectBase.h24 #include <system/window.h>
/frameworks/native/opengl/tests/finish/
H A Dfinish.cpp49 EGLNativeWindowType window = android_createDisplaySurface(); local
55 dpy, configAttribs, window, &config);
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp143 EGLNativeWindowType window = android_createDisplaySurface(); local
144 EGLUtils::selectConfigForNativeWindow(eglDisplay, attrib, window, &myConfig);
147 window, 0)) == EGL_NO_SURFACE )
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp301 EGLNativeWindowType window = android_createDisplaySurface(); local
302 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
313 surface = eglCreateWindowSurface(dpy, myConfig, window, NULL);
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp239 EGLNativeWindowType window = android_createDisplaySurface(); local
240 EGLUtils::selectConfigForNativeWindow(eglDisplay, attrib, window, &myConfig);
243 window, 0)) == EGL_NO_SURFACE )
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp257 EGLNativeWindowType window = android_createDisplaySurface(); local
258 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
269 surface = eglCreateWindowSurface(dpy, myConfig, window, NULL);
/frameworks/base/core/java/android/webkit/
H A DWebChromeClient.java98 * Request the host application to create a new window. If the host
100 * this method, create a new WebView to host the window, insert it into the
105 * @param view The WebView from which the request for a new window
107 * @param isDialog True if the new window should be a dialog, rather than
108 * a full-size window.
118 * create a new window, in which case resultMsg should be sent to
139 * any loading in this window and has removed any cross-scripting ability
141 * @param window The WebView that needs to be closed.
143 public void onCloseWindow(WebView window) {} argument
151 * @param message Message to be displayed in the window
[all...]
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/
H A DUiAutomatorViewer.java44 import org.eclipse.jface.window.ApplicationWindow;
85 * Create the application window.
94 * Create contents of the application window.
285 UiAutomatorViewer window = new UiAutomatorViewer();
286 window.setBlockOnOpen(true);
287 window.open();
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp24 #include <system/window.h>
231 NativeWindowType window,
242 if (native_window_api_connect(window, NATIVE_WINDOW_API_EGL) != OK) {
244 window);
248 // set the native window's buffers format to match this config
252 int err = native_window_set_buffers_format(window, format);
254 ALOGE("error setting native window pixel format: %s (%d)",
256 native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL);
263 // 1, so explicitly set that on the window here.
264 ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window);
230 eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list) argument
[all...]
H A Degl_object.h33 #include <system/window.h>
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java322 * Sets the required flags on the dialog window to enable input method window to show up.
325 Window window = dialog.getWindow();
326 window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp321 sp<ANativeWindow> window; local
329 window = android_Surface_getNativeWindow(_env, native_window);
330 if (window == NULL)
334 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
348 sp<ANativeWindow> window; local
358 window = new SurfaceTextureClient(surfaceTexture);
359 if (window == NULL)
363 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp367 EGLNativeWindowType window = android_createDisplaySurface(); local
368 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
379 surface = eglCreateWindowSurface(dpy, myConfig, window, NULL);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DDisplayHardware.cpp159 ANativeWindow const * const window = mNativeWindow.get(); local
160 window->query(window, NATIVE_WINDOW_FORMAT, &format);
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp23 #include "system/window.h"
143 // TODO(renn): Do we need the window bit here?
245 ANativeWindow *window = static_cast<ANativeWindow*>( local
247 native_window_set_buffers_timestamp(window, timestamp);

Completed in 569 milliseconds

12345