Searched defs:wnd (Results 1 - 15 of 15) sorted by relevance

/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
H A DSwingHelper.java44 * @param wnd The parent window
47 public static void centerInWindow(Window wnd, Component cmp) { argument
48 Dimension size = wnd.getSize();
49 Point loc = wnd.getLocationOnScreen();
/external/webrtc/webrtc/base/
H A Dwin32window_unittest.cc42 TestWindow wnd; local
43 EXPECT_TRUE(wnd.handle() == NULL);
44 EXPECT_FALSE(wnd.destroyed());
45 EXPECT_TRUE(wnd.Create(0, L"Test", 0, 0, 0, 0, 100, 100));
46 EXPECT_TRUE(wnd.handle() != NULL);
47 EXPECT_EQ(kDummyResult, ::SendMessage(wnd.handle(), WM_USER, 1, 2));
48 EXPECT_EQ(WM_USER, wnd.msg().message);
49 EXPECT_EQ(1, wnd.msg().wParam);
50 EXPECT_EQ(2, wnd.msg().lParam);
51 wnd
[all...]
/external/webrtc/webrtc/examples/peerconnection/client/linux/
H A Dmain.cc23 CustomSocketServer(rtc::Thread* thread, GtkMainWnd* wnd) argument
24 : thread_(thread), wnd_(wnd), conductor_(NULL), client_(NULL) {}
77 GtkMainWnd wnd(FLAG_server, FLAG_port, FLAG_autoconnect, FLAG_autocall);
78 wnd.Create();
82 CustomSocketServer socket_server(thread, &wnd);
89 new rtc::RefCountedObject<Conductor>(&client, &wnd));
96 wnd.Destroy();
H A Dmain_wnd.cc115 GtkMainWnd* wnd = reinterpret_cast<GtkMainWnd*>(data); local
116 wnd->OnRedraw();
/external/skia/tools/viewer/sk_app/win/
H A DGLWindowContext_win.cpp38 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) argument
40 , fHWND(wnd)
129 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) { argument
130 GLWindowContext_win* ctx = new GLWindowContext_win(wnd, params);
H A DRasterWindowContext_win.cpp36 RasterWindowContext_win::RasterWindowContext_win(HWND wnd, const DisplayParams& params) argument
37 : fWnd(wnd) {
40 GetWindowRect(wnd, &rect);
87 WindowContext* NewRasterForWin(HWND wnd, const DisplayParams& params) { argument
88 WindowContext* ctx = new RasterWindowContext_win(wnd, params);
/external/aac/libAACenc/src/
H A Dgrp_data.cpp122 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
[all...]
/external/lzma/CPP/Windows/
H A DWindow.cpp106 bool MySetWindowText(HWND wnd, LPCWSTR s) argument
109 return BOOLToBool(::SetWindowTextW(wnd, s));
110 return BOOLToBool(::SetWindowTextA(wnd, UnicodeStringToMultiByte(s)));
H A DWindow.h38 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } argument
40 bool MySetWindowText(HWND wnd, LPCWSTR s);
/external/google-breakpad/src/client/windows/tests/crash_generation_app/
H A Dcrash_generation_app.cc117 HWND wnd = CreateWindow(window_class, local
129 if (!wnd) {
133 ShowWindow(wnd, command_show);
134 UpdateWindow(wnd);
357 LRESULT CALLBACK WndProc(HWND wnd, argument
366 HINSTANCE instance = (HINSTANCE)GetWindowLongPtr(wnd, GWLP_HINSTANCE);
377 wnd,
381 DestroyWindow(wnd);
402 return DefWindowProc(wnd, message, w_param, l_param);
413 wnd,
[all...]
/external/syslinux/core/lwip/src/core/
H A Dtcp_out.c106 tcphdr->wnd = htons(pcb->rcv_ann_wnd);
152 * The TCP header is filled in except ackno and wnd.
194 /* wnd and chksum are set in tcp_output */
895 u32_t wnd, snd_nxt; local
908 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd);
920 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len > wnd)) {
939 ", cwnd %"U16_F", wnd %"U32_F
941 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack));
944 ("tcp_output: snd_wnd %"U16_F", cwnd %"U16_F", wnd %"U32_F
946 pcb->snd_wnd, pcb->cwnd, wnd,
[all...]
/external/webrtc/webrtc/p2p/base/
H A Dpseudotcp.h116 uint16_t wnd; member in struct:cricket::PseudoTcp::Segment
/external/aac/libAACdec/src/
H A Dconceal.cpp1064 int wnd; local
1074 for (wnd = 0; wnd < 8; wnd++)
1077 &pSpectralCoefficient[wnd * (samplesPerFrame / 8)], /* spec_(n-2) */
1084 &pConcealmentInfo->spectralCoefficient[wnd * (samplesPerFrame / 8)], /* spec_n */
1091 &pSpectralCoefficient[wnd * (samplesPerFrame / 8)], /* spec_(n-1) */
1092 &pSpecScale[wnd],
1093 &pConcealmentInfo->specScale[wnd],
1094 &pSpecScale[wnd],
[all...]
/external/lzma/CPP/7zip/UI/FileManager/
H A DBrowseDialog.cpp70 static void MessageBox_Error_Global(HWND wnd, const wchar_t *message) argument
72 ::MessageBoxW(wnd, message, L"7-Zip", MB_ICONERROR);
75 static void MessageBox_HResError(HWND wnd, HRESULT errorCode, const wchar_t *name) argument
83 MessageBox_Error_Global(wnd, s);
997 bool Dlg_CreateFolder(HWND wnd, UString &destName) argument
1004 if (dlg.Create(wnd) != IDOK)
/external/webrtc/webrtc/examples/peerconnection/client/
H A Dmain_wnd.cc31 void CalculateWindowSizeForText(HWND wnd, const wchar_t* text, argument
33 HDC dc = ::GetDC(wnd);
36 ::ReleaseDC(wnd, dc);
38 ::GetClientRect(wnd, &client);
39 ::GetWindowRect(wnd, &window);
54 std::string GetWindowText(HWND wnd) { argument
56 ::GetWindowTextA(wnd, &text[0], ARRAYSIZE(text));
445 void MainWnd::CreateChildWindow(HWND* wnd, MainWnd::ChildWindowID id, argument
448 if (::IsWindow(*wnd))
453 *wnd
481 HWND wnd; member in struct:Windows
565 VideoRenderer( HWND wnd, int width, int height, webrtc::VideoTrackInterface* track_to_render) argument
[all...]

Completed in 472 milliseconds