HomeSort by relevance Sort by last modified time
    Searched refs:window (Results 1 - 25 of 1681) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/common_audio/
window_generator_unittest.cc 20 float window[7]; local
22 memset(window, 0, sizeof(window));
24 WindowGenerator::KaiserBesselDerived(0.397856f, 2, window);
25 ASSERT_NEAR(window[0], 0.707106f, 1e-6f);
26 ASSERT_NEAR(window[1], 0.707106f, 1e-6f);
27 ASSERT_NEAR(window[2], 0.0f, 1e-6f);
28 ASSERT_NEAR(window[3], 0.0f, 1e-6f);
29 ASSERT_NEAR(window[4], 0.0f, 1e-6f);
30 ASSERT_NEAR(window[5], 0.0f, 1e-6f)
53 float window[7]; local
    [all...]
window_generator.h 23 static void Hanning(int length, float* window);
24 static void KaiserBesselDerived(float alpha, size_t length, float* window);
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 39 CursorWindow window = new CursorWindow("MyWindow"); local
40 assertEquals("MyWindow", window.getName());
41 assertEquals(0, window.getStartPosition());
42 window.close();
47 CursorWindow window = new CursorWindow(""); local
48 assertEquals("<unnamed>", window.getName());
49 assertEquals(0, window.getStartPosition());
50 window.close();
55 CursorWindow window = new CursorWindow(null); local
56 assertEquals("<unnamed>", window.getName())
64 CursorWindow window = new CursorWindow(true \/*this argument is ignored*\/); local
72 CursorWindow window = new CursorWindow("MyWindow"); local
    [all...]
  /external/skia/src/views/unix/
skia_unix.cpp 13 SkOSWindow* window = create_sk_window(nullptr, argc, argv); local
15 // drain any events that occurred before |window| was assigned.
21 window->loop();
23 delete window;
  /external/lzma/CPP/7zip/UI/Explorer/
MyMessages.cpp 14 void ShowErrorMessage(HWND window, LPCWSTR message)
16 ::MessageBoxW(window, message, L"7-Zip", MB_OK | MB_ICONSTOP);
19 void ShowErrorMessageHwndRes(HWND window, UINT resID)
21 ShowErrorMessage(window, LangString(resID));
29 void ShowErrorMessageDWORD(HWND window, DWORD errorCode)
31 ShowErrorMessage(window, NError::MyFormatMessage(errorCode));
34 void ShowLastErrorMessage(HWND window)
36 ShowErrorMessageDWORD(window, ::GetLastError());
  /frameworks/base/native/android/
native_window.cpp 35 void ANativeWindow_acquire(ANativeWindow* window) {
36 window->incStrong((void*)ANativeWindow_acquire);
39 void ANativeWindow_release(ANativeWindow* window) {
40 window->decStrong((void*)ANativeWindow_acquire);
43 static int32_t getWindowProp(ANativeWindow* window, int what) {
45 int res = window->query(window, what, &value);
49 int32_t ANativeWindow_getWidth(ANativeWindow* window) {
50 return getWindowProp(window, NATIVE_WINDOW_WIDTH);
53 int32_t ANativeWindow_getHeight(ANativeWindow* window) {
    [all...]
  /external/flac/libFLAC/include/private/
window.h 48 * Calculates window coefficients according to different apodization
51 * OUT window[0,L-1]
52 * IN L (number of points in window)
54 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L);
55 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L);
56 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L);
57 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L);
58 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L);
59 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L);
60 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev); /* 0.0 < stddev <= 0.5 *
    [all...]
  /external/webrtc/webrtc/modules/video_render/test/testAPI/
testAPI.h 16 void RunVideoRenderTests(void* window, webrtc::VideoRenderType windowType);
  /prebuilts/misc/windows/sdl2/test/
testnativex11.c 18 static void DestroyWindowX11(void *window);
31 Window window = 0; local
35 window =
38 XMapRaised(dpy, window);
41 return (void *) window;
45 DestroyWindowX11(void *window)
48 XDestroyWindow(dpy, (Window) window);
testautomation_syswm.c 20 SDL_Window *window; local
23 window = SDL_CreateWindow("", 0, 0, 0, 0, SDL_WINDOW_HIDDEN);
25 SDLTest_AssertCheck(window != NULL, "Check that value returned from SDL_CreateWindow is not NULL");
26 if (window == NULL) {
34 result = SDL_GetWindowWMInfo(window, &info);
36 SDLTest_Log((result == SDL_TRUE) ? "Got window information" : "Couldn't get window information");
38 SDL_DestroyWindow(window);
  /external/autotest/client/deps/webgl_mpd/src/common/
webgl-utils.js 48 * window.requestAnimFrame(render, canvas);
112 if (!window.WebGLRenderingContext) {
153 window.requestAnimFrame = (function() {
154 return window.requestAnimationFrame ||
155 window.webkitRequestAnimationFrame ||
156 window.mozRequestAnimationFrame ||
157 window.oRequestAnimationFrame ||
158 window.msRequestAnimationFrame ||
160 return window.setTimeout(callback, 1000/60);
167 window.cancelAnimFrame = (function()
    [all...]
  /system/core/include/system/
window.h 155 * to the window compositor. The query sets the returned 'value' argument
156 * to 1 if the ANativeWindow DOES send queued buffers directly to the window
157 * compositor and 0 if the buffers do not go directly to the window
180 * dimensions of the window buffers irrespective of the
181 * NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS call and match the native window
276 * example, if the window is double-buffered, the age of any given buffer in
360 /* the window content is not updated (frozen) until a buffer of
361 * the window size is received (enqueued)
364 /* the buffer is scaled in both dimensions to match the window size */
367 * of the buffer matches the window size (cropping in the process
    [all...]
  /external/opencv3/modules/highgui/src/
window_carbon.cpp 89 WindowRef window; member in struct:CvWindow
160 static int icvCountTrackbarInWindow( const CvWindow* window)
162 CvTrackbar* trackbar = window->toolbar.first;
173 CvWindow* window = hg_windows; local
175 while( window != 0 && window->window != handle) {
176 trackbar = window->toolbar.first;
181 window = window->next
188 CvWindow* window = hg_windows; local
198 CvWindow* window = hg_windows; local
346 CvWindow* window; local
365 CvWindow* window = hg_windows; local
377 CvWindow* window; local
431 CvWindow* window; local
452 CvWindow* window; local
521 CvWindow* window = 0; local
650 CvWindow* window = icvFindWindowByName( name ); local
670 CvWindow* window; local
694 CvWindow* window; local
727 CvWindow* window; local
748 CvWindow* window; local
769 CvWindow* window; local
793 CvWindow* window; local
839 CvWindow* window = icvFindWindowByName(winname.c_str()); local
887 CvWindow* window; local
957 CvWindow* window = NULL; local
    [all...]
  /development/ndk/platforms/android-14/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]
  /development/ndk/platforms/android-9/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]
  /external/skia/experimental/FileReaderApp/
FileReaderAppDelegate.h 11 SkNSWindow *window; variable
14 @property (assign) IBOutlet SkNSWindow *window; variable
  /external/skia/experimental/SimpleiOSApp/iPad/
AppDelegate_iPad.h 12 UIWindow *window; variable
15 @property (nonatomic, retain) IBOutlet UIWindow *window; variable
  /external/skia/experimental/SimpleiOSApp/iPhone/
AppDelegate_iPhone.h 12 UIWindow *window; variable
15 @property (nonatomic, retain) IBOutlet UIWindow *window; variable
  /frameworks/native/include/android/
native_window.h 36 * Pixel formats that a window can use.
49 * {@link ANativeWindow} is opaque type that provides access to a native window.
85 void ANativeWindow_acquire(ANativeWindow* window);
90 void ANativeWindow_release(ANativeWindow* window);
93 * Return the current width in pixels of the window surface. Returns a
96 int32_t ANativeWindow_getWidth(ANativeWindow* window);
99 * Return the current height in pixels of the window surface. Returns a
102 int32_t ANativeWindow_getHeight(ANativeWindow* window);
105 * Return the current pixel format of the window surface. Returns a
108 int32_t ANativeWindow_getFormat(ANativeWindow* window);
    [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/android/
native_window.h 27 * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers
    [all...]

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>