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

1 2 3

  /external/lzma/CPP/7zip/UI/FileManager/
PasswordDialog.h 25 INT_PTR Create(HWND parentWindow = 0) { return CModalDialog::Create(IDD_PASSWORD, parentWindow); }
ComboDialog.h 25 INT_PTR Create(HWND parentWindow = 0) { return CModalDialog::Create(IDD_COMBO, parentWindow); }
ProgressDialog2.h 304 HRESULT Create(const UString &title, HWND parentWindow = 0);
  /external/webrtc/webrtc/modules/video_capture/windows/
device_info_mf.cc 44 void* parentWindow,
device_info_mf.h 37 void* parentWindow, uint32_t positionX, uint32_t positionY);
device_info_ds.h 65 void* parentWindow,
  /external/lzma/CPP/Windows/Control/
Dialog.cpp 193 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow)
195 HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
202 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow)
204 return DialogBoxParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
209 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow)
213 aHWND = CreateDialogParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
225 aHWND = CreateDialogParamA(g_hInstance, templateNameA, parentWindow, DialogProcedure, (LPARAM)this);
233 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow)
236 return DialogBoxParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
246 return DialogBoxParamA(g_hInstance, templateNameA, parentWindow, DialogProcedure, (LPARAM)this);
    [all...]
Dialog.h 129 bool Create(LPCTSTR templateName, HWND parentWindow);
130 bool Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindow); }
132 bool Create(LPCWSTR templateName, HWND parentWindow);
141 INT_PTR Create(LPCTSTR templateName, HWND parentWindow);
142 INT_PTR Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindow); }
144 INT_PTR Create(LPCWSTR templateName, HWND parentWindow);
Window2.h 20 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance);
25 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance);
Window2.cpp 51 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance)
71 x, y, width, height, parentWindow, idOrHMenu, instance, this);
78 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance)
118 x, y, width, height, parentWindow, idOrHMenu, instance, this);
ListView.cpp 16 HWND parentWindow, HMENU idOrHMenu,
20 height, parentWindow, idOrHMenu, instance, createParam);
ListView.h 20 HWND parentWindow, HMENU idOrHMenu,
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
WindowStateTests.java 71 final WindowState parentWindow = createWindow(null, TYPE_APPLICATION, "parentWindow");
72 final WindowState child1 = createWindow(parentWindow, FIRST_SUB_WINDOW, "child1");
73 final WindowState child2 = createWindow(parentWindow, FIRST_SUB_WINDOW, "child2");
75 // parentWindow is initially set to hidden.
76 assertTrue(parentWindow.mHidden);
77 assertFalse(parentWindow.isParentWindowHidden());
81 parentWindow.mHidden = false;
82 assertFalse(parentWindow.isParentWindowHidden());
90 final WindowState parentWindow = createWindow(null, TYPE_APPLICATION, "parentWindow")
    [all...]
  /external/lzma/CPP/Windows/
Window.cpp 52 HWND parentWindow, HMENU idOrHMenu,
58 style, x, y, width, height, parentWindow,
63 style, x, y, width, height, parentWindow,
70 HWND parentWindow, HMENU idOrHMenu,
76 style, x, y, width, height, parentWindow,
99 style, x, y, width, height, parentWindow,
Window.h 88 HWND parentWindow, HMENU idOrHMenu,
92 style, x, y, width, height, parentWindow,
100 HWND parentWindow, HMENU idOrHMenu,
104 style, x, y, width, height, parentWindow,
113 HWND parentWindow, HMENU idOrHMenu,
118 HWND parentWindow, HMENU idOrHMenu,
  /frameworks/base/core/java/android/view/
WindowManagerImpl.java 67 private WindowManagerImpl(Context context, Window parentWindow) {
69 mParentWindow = parentWindow;
72 public WindowManagerImpl createLocalWindowManager(Window parentWindow) {
73 return new WindowManagerImpl(mContext, parentWindow);
WindowManagerGlobal.java 279 Display display, Window parentWindow) {
291 if (parentWindow != null) {
292 parentWindow.adjustLayoutParamsForSubWindow(wparams);
  /external/webrtc/webrtc/modules/video_capture/ios/
device_info_ios.h 44 void* parentWindow,
device_info_ios.mm 151 void* parentWindow,
  /external/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit_info.h 81 const char* dialogTitleUTF8, void* parentWindow,
video_capture_qtkit_info.mm 103 const char* dialogTitleUTF8, void* parentWindow,
110 AndParentWindow:parentWindow AtX:positionX AndY:positionY]
video_capture_qtkit_info_objc.h 63 AndParentWindow:(void*) parentWindow AtX:(uint32_t)positionX
video_capture_qtkit_info_objc.mm 57 AndParentWindow:(void*) parentWindow
  /external/webrtc/webrtc/modules/video_capture/
video_capture.h 71 void* parentWindow,
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 678 WindowState parentWindow, int appOp, int seq, WindowManager.LayoutParams a,
680 this(service, s, c, token, parentWindow, appOp, seq, a, viewVisibility, ownerId,
695 WindowState parentWindow, int appOp, int seq, WindowManager.LayoutParams a,
    [all...]

Completed in 917 milliseconds

1 2 3