HomeSort by relevance Sort by last modified time
    Searched refs:window (Results 76 - 100 of 1995) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webrtc/webrtc/modules/video_render/mac/
cocoa_full_screen_window.h 29 -(NSWindow*)window;
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 27 * then it is assumed to own the window. Otherwise, the adaptor provides a
28 * window to be filled and ensures it gets closed as needed during deactivation
49 * The cursor window that was filled by the cross process cursor in the
51 * This field is only ever non-null when the window has actually be filled.
146 d.window = mCursor.getWindow();
147 if (d.window != null) {
148 // Acquire a reference to the window because its reference count will be
150 d.window.acquireReference();
166 CursorWindow window = mCursor.getWindow(); local
167 if (window != null)
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 45 * @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) {
60 window.acquireReference();
63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
73 window.releaseReference();
  /frameworks/base/native/android/
native_window_jni.cpp 21 #include <system/window.h>
38 jobject ANativeWindow_toSurface(JNIEnv* env, ANativeWindow* window) {
39 if (window == NULL) {
42 sp<Surface> surface = static_cast<Surface*>(window);
  /frameworks/native/services/surfaceflinger/tests/unittests/mock/
MockNativeWindowSurface.h 21 #include <system/window.h> // for ANativeWindow
  /prebuilts/misc/windows/sdl2/test/
testnative.h 26 void (*DestroyNativeWindow) (void *window);
  /external/bart/tests/
test_sched_assert.py 55 # Non Interrupted Window
56 window = (0.0034, 0.003525)
58 self.assertAlmostEqual(s.getRuntime(window=window), expected_time,
61 # Interrupted Window
62 window = (0.0030, 0.0032)
64 self.assertAlmostEqual(s.getRuntime(window=window), expected_time,
67 # A window with multiple interruptions
68 window = (0.0027, 0.0036
    [all...]
  /external/libxcam/xcore/
handler_interface.cpp 48 _params.window.x_start = 0;
49 _params.window.y_start = 0;
50 _params.window.x_end = 0;
51 _params.window.y_end = 0;
52 _params.window.weight = 0;
78 AeHandler::set_window (XCam3AWindow *window)
81 _params.window = *window;
83 XCAM_LOG_DEBUG ("ae set metering mode window [x:%d, y:%d, x_end:%d, y_end:%d, weight:%d]",
84 window->x_start
    [all...]
  /cts/tests/tests/dpi/src/android/dpi/cts/
OrientationActivity.java 21 import android.view.Window;
33 Window window = getWindow(); local
34 window.addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/assets/
sample.js 21 window.URL = window.URL || window.webkitURL;
38 video.src = window.URL.createObjectURL(stream);
  /developers/samples/android/content/webview/PermissionRequest/Application/src/main/assets/
sample.js 21 window.URL = window.URL || window.webkitURL;
38 video.src = window.URL.createObjectURL(stream);
  /development/tools/winscope/src/
localstore.js 24 var stored = window.localStorage.getItem(name + '.' + k);
29 window.localStorage.setItem(name + '.' + k,
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/android/view/
TestWindowTest.java 13 TestWindow window = new TestWindow(null); local
14 Assert.assertNotNull(window.getWindowManager());
  /frameworks/support/compat/src/main/java/androidx/core/view/
WindowCompat.java 20 import android.view.Window;
26 * Helper for accessing features in {@link Window}.
38 * Flag for requesting an Action Bar that overlays window content.
39 * Normally an Action Bar will sit in the space above window content, but if this
41 * the window content itself. This is useful if you would like your app to have more control
60 * If overlay is enabled, the action mode UI will be allowed to cover existing window content.
79 * @see Window#findViewById(int)
83 public static <T extends View> T requireViewById(@NonNull Window window, @IdRes int id) {
84 // TODO: use and link to Window#requireViewById() directly, once availabl
    [all...]
  /external/autotest/client/site_tests/video_YouTubePage/files/
video_YouTubePageCommon.js 105 window.__videoElement = videoElement;
106 window.__playVideo = playVideo;
107 window.__pauseVideo = pauseVideo;
108 window.__seek = seek;
109 window.__seekToAlmostEnd = seekToAlmostEnd;
110 window.__getVideoState = getVideoState;
111 window.__getDuration = getDuration;
112 window.__getCurrentTime = getCurrentTime;
113 window.__getEventHappened = getEventHappened;
114 window.__clearEventHappened = clearEventHappened
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPhoneWindowTest.java 8 import android.view.Window;
18 private Window window; field in class:ShadowPhoneWindowTest
24 window = activity.getWindow();
29 window.setTitle("Some title");
30 assertThat(shadowOf(window).getTitle()).isEqualTo("Some title");
36 window.setBackgroundDrawable(drawable);
37 assertThat(shadowOf(window).getBackgroundDrawable()).isSameAs(drawable);
  /external/swiftshader/src/Main/
FrameBufferWin.cpp 23 // Force fullscreen window style (no borders)
39 HWND window = windowOverride ? windowOverride : windowHandle; local
43 GetClientRect(window, &bounds);
44 ClientToScreen(window, (POINT*)&bounds);
45 ClientToScreen(window, (POINT*)&bounds + 1);
75 sw::FrameBuffer *createFrameBuffer(void *display, HWND window, int width, int height)
77 return createFrameBufferWin(window, width, height, false, false);
  /external/tensorflow/tensorflow/python/kernel_tests/
pooling_ops_3d_test.py 48 def _VerifyOneTest(self, pool_func, input_sizes, window, strides, padding,
55 window: Tuple of kernel dims: planes, rows, cols.
70 window = [1] + list(window) + [1]
74 window = test_util.NHWCToNCHW(window)
78 ksize=window,
89 def _VerifyValues(self, pool_func, input_sizes, window, strides,
92 self._VerifyOneTest(pool_func, input_sizes, window, strides, padding,
100 window=(2, 2, 2)
    [all...]
  /external/bart/bart/sched/
functions.py 107 def sanitize_asymmetry(series, window=None):
115 :param window: A tuple indicating a time window
116 :type window: tuple
128 if window:
129 series.index.values[0] = window[0]
136 if window:
137 series.index.values[-1] = window[1]
151 def csum(series, window=None, filter_gaps=False):
158 :param window: A tuple indicating a time windo
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidTestActivity.cpp 27 #include <android/window.h>
62 void TestThread::onWindowCreated (ANativeWindow* window)
64 m_platform.getWindowRegistry().addWindow(window);
67 void TestThread::onWindowDestroyed (ANativeWindow* window)
69 m_platform.getWindowRegistry().destroyWindow(window);
72 void TestThread::onWindowResized (ANativeWindow* window)
74 DE_UNREF(window);
75 print("Warning: Native window was resized, results may be undefined");
96 // Set up window flags.
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_syswm.h 25 * Include file for SDL custom system window manager hooks.
46 * which contains window-manager specific information and arrives whenever
47 * an unhandled window event occurs. This event is ignored by default, but
63 /* This is the structure for custom window manager events */
133 HWND hwnd; /**< The window for the message */
152 /* No Cocoa window events yet */
158 /* No UIKit window events yet */
167 * The custom window manager information structure.
181 HWND window; /**< The window handle * member in struct:SDL_SysWMinfo::__anon263::__anon264
187 IInspectable * window; \/**< The WinRT CoreWindow *\/ member in struct:SDL_SysWMinfo::__anon263::__anon265
194 Window window; \/**< The X11 window *\/ member in struct:SDL_SysWMinfo::__anon263::__anon266
201 IDirectFBWindow *window; \/**< The directfb window handle *\/ member in struct:SDL_SysWMinfo::__anon263::__anon267
208 NSWindow *window; \/* The Cocoa window *\/ member in struct:SDL_SysWMinfo::__anon263::__anon268
214 UIWindow *window; \/* The UIKit window *\/ member in struct:SDL_SysWMinfo::__anon263::__anon269
    [all...]
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_syswm.h 25 * Include file for SDL custom system window manager hooks.
46 * which contains window-manager specific information and arrives whenever
47 * an unhandled window event occurs. This event is ignored by default, but
63 /* This is the structure for custom window manager events */
133 HWND hwnd; /**< The window for the message */
152 /* No Cocoa window events yet */
158 /* No UIKit window events yet */
167 * The custom window manager information structure.
181 HWND window; /**< The window handle * member in struct:SDL_SysWMinfo::__anon372::__anon373
187 IInspectable * window; \/**< The WinRT CoreWindow *\/ member in struct:SDL_SysWMinfo::__anon372::__anon374
194 Window window; \/**< The X11 window *\/ member in struct:SDL_SysWMinfo::__anon372::__anon375
201 IDirectFBWindow *window; \/**< The directfb window handle *\/ member in struct:SDL_SysWMinfo::__anon372::__anon376
208 NSWindow *window; \/* The Cocoa window *\/ member in struct:SDL_SysWMinfo::__anon372::__anon377
214 UIWindow *window; \/* The UIKit window *\/ member in struct:SDL_SysWMinfo::__anon372::__anon378
    [all...]
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_syswm.h 25 * Include file for SDL custom system window manager hooks.
46 * which contains window-manager specific information and arrives whenever
47 * an unhandled window event occurs. This event is ignored by default, but
63 /* This is the structure for custom window manager events */
133 HWND hwnd; /**< The window for the message */
152 /* No Cocoa window events yet */
158 /* No UIKit window events yet */
167 * The custom window manager information structure.
181 HWND window; /**< The window handle * member in struct:SDL_SysWMinfo::__anon545::__anon546
187 IInspectable * window; \/**< The WinRT CoreWindow *\/ member in struct:SDL_SysWMinfo::__anon545::__anon547
194 Window window; \/**< The X11 window *\/ member in struct:SDL_SysWMinfo::__anon545::__anon548
201 IDirectFBWindow *window; \/**< The directfb window handle *\/ member in struct:SDL_SysWMinfo::__anon545::__anon549
208 NSWindow *window; \/* The Cocoa window *\/ member in struct:SDL_SysWMinfo::__anon545::__anon550
214 UIWindow *window; \/* The UIKit window *\/ member in struct:SDL_SysWMinfo::__anon545::__anon551
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
Session.java 70 * Session object per process that is interacting with the window manager.
81 // Set of visible application overlay window surfaces connected to this session.
83 // Set of visible alert window surfaces connected to this session.
168 Slog.wtf(TAG_WM, "Window Session Crash", e);
192 public int add(IWindow window, int seq, WindowManager.LayoutParams attrs,
195 return addToDisplay(window, seq, attrs, viewVisibility, Display.DEFAULT_DISPLAY,
201 public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs,
205 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId, outFrame,
210 public int addWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams attrs,
212 return addToDisplayWithoutInputChannel(window, seq, attrs, viewVisibility
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorActionBarAdvisor.java 46 protected void makeActions(IWorkbenchWindow window) {
47 mQuitAction = ActionFactory.QUIT.create(window);
50 mCopyAction = ActionFactory.COPY.create(window);
53 mSelectAllAction = ActionFactory.SELECT_ALL.create(window);
56 mFindAction = ActionFactory.FIND.create(window);
60 mOpenPerspectiveAction = ActionFactory.OPEN_PERSPECTIVE_DIALOG.create(window);
63 mResetPerspectiveAction = ActionFactory.RESET_PERSPECTIVE.create(window);
66 mPreferencesAction = ActionFactory.PREFERENCES.create(window);
69 mAboutAction = ActionFactory.ABOUT.create(window);
78 MenuManager windowMenu = new MenuManager("&Window", IWorkbenchActionConstants.M_WINDOW)
    [all...]

Completed in 1135 milliseconds

1 2 34 5 6 7 8 91011>>