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

1 2 3

  /external/chromium_org/third_party/libjingle/source/talk/base/
win32window_unittest.cc 59 TestWindow wnd; local
60 EXPECT_TRUE(wnd.handle() == NULL);
61 EXPECT_FALSE(wnd.destroyed());
62 EXPECT_TRUE(wnd.Create(0, L"Test", 0, 0, 0, 0, 100, 100));
63 EXPECT_TRUE(wnd.handle() != NULL);
64 EXPECT_EQ(kDummyResult, ::SendMessage(wnd.handle(), WM_USER, 1, 2));
65 EXPECT_EQ(WM_USER, wnd.msg().message);
66 EXPECT_EQ(1, wnd.msg().wParam);
67 EXPECT_EQ(2, wnd.msg().lParam);
68 wnd.Destroy()
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
grp_data.c 54 Word32 wnd; local
63 for (wnd=0; wnd<TRANS_FAC; wnd++) {
67 if (mdctSpectrum[wnd*FRAME_LEN_SHORT+line] != 0) break;
106 wnd = 0;
110 Word32 thresh = sfbThreshold->sfbShort[wnd][sfb];
112 thresh = L_add(thresh, sfbThreshold->sfbShort[wnd+j][sfb]);
117 wnd += groupLen[grp];
121 wnd = 0
    [all...]
  /external/chromium/chrome/common/
native_window_notification_source.h 19 explicit Source(gfx::NativeWindow wnd) : NotificationSource(wnd) {}
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main.cc 41 MainWnd wnd; local
42 if (!wnd.Create()) {
49 new talk_base::RefCountedObject<Conductor>(&client, &wnd));
55 if (!wnd.PreTranslateMessage(&msg)) {
64 if (!wnd.PreTranslateMessage(&msg)) {
main_wnd.cc 45 void CalculateWindowSizeForText(HWND wnd, const wchar_t* text,
47 HDC dc = ::GetDC(wnd);
50 ::ReleaseDC(wnd, dc);
52 ::GetClientRect(wnd, &client);
53 ::GetWindowRect(wnd, &window);
68 std::string GetWindowText(HWND wnd) {
70 ::GetWindowTextA(wnd, &text[0], ARRAYSIZE(text));
438 void MainWnd::CreateChildWindow(HWND* wnd, MainWnd::ChildWindowID id,
441 if (::IsWindow(*wnd))
446 *wnd = ::CreateWindowEx(ex_style, class_name, L"", style
474 HWND wnd; member in struct:Windows
    [all...]
  /external/chromium_org/tools/site_compare/scrapers/firefox/
firefox2.py 39 (proc, wnd) = windowing.InvokeAndWait(path)
43 wnd,
46 return (proc, wnd, render_pane)
62 wnd = wnds[0]
66 (proc, wnd) = windowing.InvokeAndWait(path)
70 wnd,
73 return (wnd, proc, render_pane)
93 (wnd, proc, render_pane) = InvokeBrowser(path)
96 windowing.MoveAndSizeWindow(wnd, pos, size, render_pane)
104 mouse.ClickInWindow(wnd)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/
main.cc 39 CustomSocketServer(talk_base::Thread* thread, GtkMainWnd* wnd)
40 : thread_(thread), wnd_(wnd), conductor_(NULL), client_(NULL) {}
89 GtkMainWnd wnd(FLAG_server, FLAG_port, FLAG_autoconnect, FLAG_autocall);
90 wnd.Create();
94 CustomSocketServer socket_server(thread, &wnd);
100 new talk_base::RefCountedObject<Conductor>(&client, &wnd));
107 wnd.Destroy();
  /external/chromium_org/chrome/browser/
native_window_notification_source.h 20 explicit Source(gfx::NativeWindow wnd) : content::NotificationSource(wnd) {}
fullscreen_win.cc 52 HWND wnd = ::GetForegroundWindow(); local
53 if (!wnd)
58 if (!::GetWindowRect(wnd, &wnd_rect))
79 LONG style = ::GetWindowLong(wnd, GWL_STYLE);
80 LONG ext_style = ::GetWindowLong(wnd, GWL_EXSTYLE);
  /external/aac/libAACenc/src/
grp_data.cpp 122 INT wnd; /* counts through windows in a group */ local
134 for (wnd = 0; wnd < TRANS_FAC; wnd++)
140 if ( mdctSpectrum[wnd*granuleLength_short+line] != FL2FXCONST_SPC(0.0) ) break; /* this band is not completely zero */
175 wnd = 0;
181 FIXP_DBL thresh = sfbThreshold->Short[wnd][sfb];
184 thresh = nrgAddSaturate(thresh, sfbThreshold->Short[wnd+j][sfb]);
189 wnd += groupLen[grp];
193 wnd = 0
    [all...]
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chromebase.py 37 wnd = wnds[0]
41 (proc, wnd) = windowing.InvokeAndWait(path)
44 address_bar = windowing.FindChildWindow(wnd, "Chrome_AutocompleteEdit")
45 render_pane = GetChromeRenderPane(wnd)
47 return (wnd, proc, address_bar, render_pane)
67 (wnd, proc, address_bar, render_pane) = InvokeBrowser(path)
70 windowing.MoveAndSizeWindow(wnd, pos, size, render_pane)
84 load_time = windowing.WaitForThrobber(wnd, (20, 16, 36, 32), timeout)
104 windowing.SetForegroundWindow(wnd)
142 (wnd, proc, address_bar, render_pane) = InvokeBrowser(path
    [all...]
chrome011010.py 15 def GetChromeRenderPane(wnd):
16 return windowing.FindChildWindow(wnd, "Chrome_TabContents")
chrome01970.py 15 def GetChromeRenderPane(wnd):
16 return windowing.FindChildWindow(wnd, "Chrome_BrowserWindow")
  /external/chromium/chrome/browser/
fullscreen_win.cc 51 HWND wnd = ::GetForegroundWindow(); local
52 if (!wnd)
57 if (!::GetWindowRect(wnd, &wnd_rect))
78 LONG style = ::GetWindowLong(wnd, GWL_STYLE);
79 LONG ext_style = ::GetWindowLong(wnd, GWL_EXSTYLE);
  /external/chromium/chrome/browser/bookmarks/
bookmark_folder_editor_controller.cc 21 gfx::NativeWindow wnd,
26 new BookmarkFolderEditorController(profile, wnd, node, index, type);
31 gfx::NativeWindow wnd,
51 dialog_ = InputWindowDialog::Create(wnd,
bookmark_drop_info.cc 15 BookmarkDropInfo::BookmarkDropInfo(gfx::NativeWindow wnd, int top_margin)
20 wnd_(wnd),
bookmark_folder_editor_controller.h 31 gfx::NativeWindow wnd,
38 gfx::NativeWindow wnd,
  /external/chromium_org/chrome_frame/
task_marshaller.h 33 void SetWindow(HWND wnd, UINT msg) {
34 wnd_ = wnd;
  /external/chromium_org/tools/site_compare/commands/
scrape.py 44 def ScrapeResult(url, proc, wnd, result):
49 image = windowing.ScrapeWindow(wnd)
measure.py 43 def LogResult(url, proc, wnd, result):
  /external/chromium_org/tools/site_compare/utils/
browser_iterate.py 76 iteration_func: called for each URL with (proc, wnd, url, result)
84 (proc, frame, wnd) = scraper.GetBrowser(path)
86 if not wnd: raise ValueError("Could not invoke browser.")
107 windowing.MoveAndSizeWindow(frame, (0, 0), command["--size"], wnd)
112 Iterate.wnd = wnd
160 Iterate.wnd = None
196 iteration_func(url, Iterate.proc, Iterate.wnd, response)
  /external/chromium_org/chrome_frame/test/perf/
silverlight.cc 141 CComObjectStackEx<SilverlightContainer> wnd; local
143 wnd.CreateWndAndHost(&rc);
145 wnd.CreateControl();
147 wnd.DestroyWindow();
  /external/chromium_org/tools/site_compare/drivers/win32/
windowing.py 254 def MoveAndSizeWindow(wnd, position=None, size=None, child=None):
261 wnd: handle of the frame window
269 rect = win32gui.GetWindowRect(wnd)
280 win32gui.MoveWindow(wnd, # window to move
347 (proc, wnd) = InvokeAndWait(
352 wnd, "TabWindowClass/Shell DocObject View/Internet Explorer_Server")
355 MoveAndSizeWindow(wnd, (0, 0), (1024, 768), browser)
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 78 static BOOL initEGL(HWND wnd)
129 wnd, NULL);
162 static LRESULT CALLBACK wndProc(HWND wnd, UINT message,
171 DestroyWindow(wnd);
201 return DefWindowProc(wnd, message, wParam, lParam);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
MacNative.m 166 NSWindow* wnd = [view window];
167 if(wnd != nil){
168 NSWindowDepth limit = [wnd depthLimit];

Completed in 1258 milliseconds

1 2 3