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

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.cpp1128 BOOL AwtWindow::IsOneOfOwnersOf(AwtWindow * wnd) { argument
1129 while (wnd != NULL) {
1130 if (wnd == this || wnd->GetOwningFrameOrDialog() == this) return TRUE;
1131 wnd = (AwtWindow*)GetComponent(::GetWindow(wnd->GetHWnd(), GW_OWNER));
H A Dawt_Component.cpp914 AwtComponent::SetWindowPos(HWND wnd, HWND after, argument
920 || ((::GetWindowLong(wnd, GWL_STYLE) & WS_CHILD) == 0))
922 return ::SetWindowPos(wnd, after, x, y, w, h, flags);
928 ::GetWindowPlacement(wnd, &wp);
936 ::SetWindowPlacement(wnd, &wp);

Completed in 366 milliseconds