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

12345

/frameworks/base/native/android/
H A Dnative_window_jni.cpp21 #include <system/window.h>
38 jobject ANativeWindow_toSurface(JNIEnv* env, ANativeWindow* window) { argument
39 if (window == NULL) {
42 sp<Surface> surface = static_cast<Surface*>(window);
/frameworks/base/core/java/android/database/
H A DCrossProcessCursor.java25 * the cursor can provide a pre-filled window to use via {@link #getWindow} thereby
26 * obviating the need to copy the data to yet another cursor window.
30 * Returns a pre-filled window that contains the data within this cursor.
32 * In particular, the window contains the row indicated by {@link Cursor#getPosition}.
33 * The window's contents are automatically scrolled whenever the current
34 * row moved outside the range covered by the window.
37 * @return The pre-filled window, or null if none.
42 * Copies cursor data into the window.
44 * Clears the window and fills it with data beginning at the requested
46 * or the window run
61 fillWindow(int position, CursorWindow window) argument
[all...]
H A DBulkCursorDescriptor.java48 public CursorWindow window; field in class:BulkCursorDescriptor
61 if (window != null) {
63 window.writeToParcel(out, flags);
75 window = CursorWindow.CREATOR.createFromParcel(in);
H A DCrossProcessCursorWrapper.java46 public void fillWindow(int position, CursorWindow window) { argument
49 crossProcessCursor.fillWindow(position, window);
53 DatabaseUtils.cursorFillWindow(mCursor, position, window);
/frameworks/av/camera/ndk/impl/
H A DACaptureRequest.h25 explicit ACameraOutputTarget(ANativeWindow* window) : mWindow(window) {}; argument
H A DACameraCaptureSession.h27 explicit ACaptureSessionOutput(ANativeWindow* window) : mWindow(window) {}; argument
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_mpeg2_get_scale_factors.cpp129 int32 window; local
156 for (window = 0; window < 3; window++)
158 scalefac->s[window][sfb] = scalefac_buffer[k];
178 for (window = 0; window < 3; window++)
180 scalefac->s[window][sfb] = scalefac_buffer[k];
H A Dpvmp3_mdct_18.cpp41 const int32 *window sine window used in the mdct, three types are allowed
133 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window) argument
199 vec[ i] = fxp_mac32_Q32(tmp, (vec[i+10]), window[ i]);
209 vec[ 6] = fxp_mac32_Q32(tmp, vec[16] << 1, window[ i]);
216 vec[ 7] = fxp_mac32_Q32(tmp, tmp4 << 1, window[ 7]);
218 vec[ 8] = fxp_mac32_Q32(tmp1, vec[17] << 1, window[ 8]);
223 vec[ 9] = fxp_mac32_Q32(tmp, vec[17] << 1, window[ 9]);
225 vec[17] = fxp_mac32_Q32(tmp1, vec[10] << 1, window[17]);
227 vec[16] = fxp_mac32_Q32(tmp2, vec[11] << 1, window[1
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java45 * @param window The window to fill into
46 * @param startPos The start position for filling the window.
47 * @param requiredPos The position of a row that MUST be in the window.
50 * return regardless of whether they fit in the window.
57 int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) { argument
60 window.acquireReference();
63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
73 window.releaseReference();
/frameworks/base/core/java/android/view/
H A DFrameMetricsObserver.java48 FrameMetricsObserver(@NonNull Window window, @NonNull Looper looper, argument
60 mWindow = new WeakReference<>(window);
67 final Window window = mWindow.get();
68 if (window != null) {
69 mListener.onFrameMetricsAvailable(window, mFrameMetrics, dropCount);
/frameworks/base/core/java/com/android/internal/app/
H A DMicroAlertController.java35 public MicroAlertController(Context context, DialogInterface di, Window window) { argument
36 super(context, di, window);
/frameworks/base/core/tests/coretests/src/android/database/
H A DCursorWindowTest.java39 CursorWindow window = new CursorWindow("MyWindow");
40 assertEquals("MyWindow", window.getName());
41 assertEquals(0, window.getStartPosition());
42 window.close();
47 CursorWindow window = new CursorWindow("");
48 assertEquals("<unnamed>", window.getName());
49 assertEquals(0, window.getStartPosition());
50 window.close();
55 CursorWindow window = new CursorWindow(null);
56 assertEquals("<unnamed>", window
77 doTestValues(CursorWindow window) argument
[all...]
/frameworks/native/opengl/tests/finish/
H A Dfinish.cpp50 EGLNativeWindowType window = windowSurface.getSurface(); local
56 dpy, configAttribs, window, &config);
62 surface = eglCreateWindowSurface(dpy, config, window, NULL);
/frameworks/native/opengl/tests/textures/
H A Dtextures.cpp46 EGLNativeWindowType window = windowSurface.getSurface(); local
52 dpy, configAttribs, window, &config);
58 surface = eglCreateWindowSurface(dpy, config, window, NULL);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDelegateImplN.java30 AppCompatDelegateImplN(Context context, Window window, AppCompatCallback callback) { argument
31 super(context, window, callback);
H A DAppCompatDelegateImplV11.java28 AppCompatDelegateImplV11(Context context, Window window, AppCompatCallback callback) { argument
29 super(context, window, callback);
H A DAppCompatDelegateImplV23.java30 AppCompatDelegateImplV23(Context context, Window window, AppCompatCallback callback) { argument
31 super(context, window, callback);
38 // Override the window callback so that we can intercept onWindowStartingActionMode(type)
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DMidiBtleTimeTracker.java77 // The event cannot be in the future. So move window if we hit that.
83 // Timestamp should not be older than our window time.
105 public void setWindowMillis(int window) { argument
106 this.mWindowMillis = window;
/frameworks/native/opengl/tests/filter/
H A Dfilter.cpp42 EGLNativeWindowType window = 0; local
46 window = windowSurface->getSurface();
53 dpy, s_configAttribs, window, &config);
54 surface = eglCreateWindowSurface(dpy, config, window, NULL);
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp90 EGLNativeWindowType window = windowSurface.getSurface(); local
91 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
99 surface = eglCreateWindowSurface(dpy, myConfig, window, NULL);
/frameworks/native/opengl/tests/include/
H A DEGLUtils.h24 #include <system/window.h>
48 EGLNativeWindowType window,
124 EGLNativeWindowType window,
130 if (!window)
133 if ((err = window->query(window, NATIVE_WINDOW_FORMAT, &format)) < 0) {
121 selectConfigForNativeWindow( EGLDisplay dpy, EGLint const* attrs, EGLNativeWindowType window, EGLConfig* outConfig) argument
/frameworks/native/opengl/tests/linetex/
H A Dlinetex.cpp48 EGLNativeWindowType window = windowSurface.getSurface(); local
54 dpy, configAttribs, window, &config);
60 surface = eglCreateWindowSurface(dpy, config, window, NULL);
/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLog.cpp34 void EventLog::doLogFrameDurations(const String8& window, argument
38 buffer.writeString8(window);
46 void EventLog::logFrameDurations(const String8& window, argument
48 EventLog::getInstance().doLogFrameDurations(window, durations,
/frameworks/av/camera/ndk/
H A DNdkCameraDevice.cpp99 ANativeWindow* window, /*out*/ACaptureSessionOutput** out) {
101 if (window == nullptr || out == nullptr) {
102 ALOGE("%s: Error: bad argument. window %p, out %p",
103 __FUNCTION__, window, out);
106 *out = new ACaptureSessionOutput(window);
98 ACaptureSessionOutput_create( ANativeWindow* window, ACaptureSessionOutput** out) argument
H A DNdkCaptureRequest.cpp30 ANativeWindow* window, ACameraOutputTarget** out) {
32 if (window == nullptr) {
33 ALOGE("%s: Error: input window is null", __FUNCTION__);
36 *out = new ACameraOutputTarget(window);
29 ACameraOutputTarget_create( ANativeWindow* window, ACameraOutputTarget** out) argument

Completed in 973 milliseconds

12345