/external/lzma/CPP/Windows/ |
D | Window.h | 57 HWND _window; 59 CWindow(HWND newWindow = NULL): _window(newWindow){}; in _window() function 62 _window = newWindow; 65 operator HWND() const { return _window; } in HWND() 66 void Attach(HWND newWindow) { _window = newWindow; } in Attach() 69 HWND window = _window; in Detach() 70 _window = NULL; in Detach() 74 bool Foreground() { return BOOLToBool(::SetForegroundWindow(_window)); } in Foreground() 76 HWND GetParent() const { return ::GetParent(_window); } in GetParent() 77 bool GetWindowRect(LPRECT rect) const { return BOOLToBool(::GetWindowRect(_window,rect)); } in GetWindowRect() [all …]
|
D | Window.cpp | 57 _window = ::CreateWindowW(className, windowName, in Create() 60 return (_window != NULL); in Create() 75 _window = ::CreateWindowExW(exStyle, className, windowName, in CreateEx() 78 return (_window != NULL); in CreateEx() 133 int length = GetWindowTextLengthW(_window); in GetText() 136 length = GetWindowTextW(_window, s.GetBuffer(length), length + 1); in GetText()
|
/external/lzma/CPP/Windows/Control/ |
D | ListView.h | 24 ListView_SetUnicodeFormat(_window, TRUE); in SetUnicodeFormat() 28 bool DeleteAllItems() { return BOOLToBool(ListView_DeleteAllItems(_window)); } in DeleteAllItems() 29 …bool DeleteColumn(int columnIndex) { return BOOLToBool(ListView_DeleteColumn(_window, columnIndex)… in DeleteColumn() 31 … columnIndex, const LVCOLUMN *columnInfo) { return ListView_InsertColumn(_window, columnIndex, col… in InsertColumn() 33 int InsertItem(const LVITEM* item) { return ListView_InsertItem(_window, item); } in InsertItem() 35 bool SetItem(const LVITEM* item) { return BOOLToBool(ListView_SetItem(_window, item)); } in SetItem() 49 bool DeleteItem(int itemIndex) { return BOOLToBool(ListView_DeleteItem(_window, itemIndex)); } in DeleteItem() 51 UINT GetSelectedCount() const { return ListView_GetSelectedCount(_window); } in GetSelectedCount() 52 int GetItemCount() const { return ListView_GetItemCount(_window); } in GetItemCount() 54 INT GetSelectionMark() const { return ListView_GetSelectionMark(_window); } in GetSelectionMark() [all …]
|
D | CommandBar.h | 18 _window = ::CommandBar_Create(hInst, hwndParent, idCmdBar); in Create() 19 return (_window != NULL); in Create() 29 …bool AddAdornments(DWORD dwFlags) { return BOOLToBool(::CommandBar_AddAdornments(_window, dwFlags,… in AddAdornments() 30 …ages, int iImageWidth, int iImageHeight) { return ::CommandBar_AddBitmap(_window, hInst, idBitmap,… in AddBitmap() 31 bool DrawMenuBar(WORD iButton) { return BOOLToBool(::CommandBar_DrawMenuBar(_window, iButton)); } in DrawMenuBar() 32 HMENU GetMenu(WORD iButton) { return ::CommandBar_GetMenu(_window, iButton); } in GetMenu() 33 int Height() { return CommandBar_Height(_window); } in Height() 34 …yle, WORD idComboBox, WORD iButton) { return ::CommandBar_InsertComboBox(_window, hInst, iWidth, d… in InsertComboBox() 35 …ORD idMenu, WORD iButton) { return BOOLToBool(::CommandBar_InsertMenubar(_window, hInst, idMenu, i… in InsertMenubar() 36 … pszMenu, WORD iButton) { return BOOLToBool(::CommandBar_InsertMenubarEx(_window, hInst, pszMenu, … in InsertMenubarEx() [all …]
|
D | Dialog.h | 18 { return GetDlgItem(_window, itemID); } in GetItem() 32 { return BOOLToBool(SetDlgItemText(_window, itemID, s)); } in SetItemText() 43 { return GetDlgItemText(_window, itemID, string, maxCount); } in GetItemText() 55 { return BOOLToBool(SetDlgItemInt(_window, itemID, value, BoolToBOOL(isSigned))); } in SetItemInt() 59 value = GetDlgItemInt(_window, itemID, &result, BoolToBOOL(isSigned)); in GetItemInt() 64 { return GetNextDlgGroupItem(_window, control, BoolToBOOL(previous)); } in GetNextGroupItem() 66 { return GetNextDlgTabItem(_window, control, BoolToBOOL(previous)); } in GetNextTabItem() 69 { return BOOLToBool(MapDialogRect(_window, rect)); } in MapRect() 72 { return BOOLToBool(IsDialogMessage(_window, message)); } in IsMessage() 75 { return SendDlgItemMessage(_window, itemID, message, wParam, lParam); } in SendItemMessage() [all …]
|
D | StatusBar.h | 15 { return (_window = ::CreateStatusWindow(style, text, hwndParent, id)) != 0; } in Create() 25 { return (_window = ::CreateStatusWindowW(style, text, hwndParent, id)) != 0; } in Create()
|
D | Window2.cpp | 127 return DefWindowProcW(_window, message, wParam, lParam); in DefProc() 130 return DefWindowProc(_window, message, wParam, lParam); in DefProc()
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/mac/ |
D | APPRTCAppDelegate.m | 25 NSWindow* _window; 39 _window = [[NSWindow alloc] initWithContentRect:windowRect 43 _window.delegate = self; 44 [_window makeKeyAndOrderFront:self]; 45 [_window makeMainWindow]; 48 [_window setContentView:[_viewController view]];
|
/external/webrtc/webrtc/modules/video_render/linux/ |
D | video_x11_channel.cc | 26 _shminfo(), _image(NULL), _window(0L), _gc(NULL), in VideoX11Channel() 88 XShmPutImage(_display, _window, _gc, _image, 0, 0, _xPos, _yPos, _width, in DeliverFrame() 111 _window = window; in Init() 118 if (!_window || !_display) in Init() 144 if (XGetGeometry(_display, _window, &rootret, &x, &y, &winWidth, in Init() 159 _gc = XCreateGC(_display, _window, 0, 0); in Init() 182 _window = window; in ChangeWindow() 188 if (XGetGeometry(_display, _window, &rootret, &x, &y, &winWidth, in ChangeWindow() 235 if (!_window || !_display) in CreateLocalRenderer()
|
D | video_x11_render.cc | 20 _window(window), in VideoX11Render() 57 _window = window; in ChangeWindow() 89 renderChannel->Init(_window, left, top, right, bottom); in CreateX11RenderChannel()
|
D | video_x11_render.h | 49 Window _window;
|
D | video_x11_channel.h | 72 Window _window; variable
|
/external/webrtc/webrtc/modules/video_render/mac/ |
D | cocoa_full_screen_window.mm | 48 _window = [[NSWindow alloc]initWithContentRect:screenRect 54 [_window setLevel:windowLevel]; 55 [_window setBackgroundColor:[NSColor blackColor]]; 56 [_window makeKeyAndOrderFront:nil]; 62 [_window orderOut:self]; 76 return _window;
|
D | cocoa_full_screen_window.h | 23 NSWindow* _window; variable
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/ |
D | ARDAppDelegate.m | 19 UIWindow *_window; 27 _window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 28 [_window makeKeyAndVisible]; 30 _window.rootViewController = viewController; 44 (ARDMainViewController *)_window.rootViewController;
|
/external/webrtc/webrtc/modules/video_render/test/testAPI/ |
D | testAPI.cc | 208 Window _window = XCreateWindow(_display, DefaultRootWindow(_display), in WebRtcCreateWindow() local 220 XStoreName(_display, _window, "VE MM Local Window"); in WebRtcCreateWindow() 221 XSetIconName(_display, _window, "VE MM Local Window"); in WebRtcCreateWindow() 225 XStoreName(_display, _window, "VE MM Remote Window"); in WebRtcCreateWindow() 226 XSetIconName(_display, _window, "VE MM Remote Window"); in WebRtcCreateWindow() 230 XSelectInput(_display, _window, StructureNotifyMask); in WebRtcCreateWindow() 233 XMapWindow(_display, _window); in WebRtcCreateWindow() 240 while (evnt.type != MapNotify || evnt.xmap.event != _window); in WebRtcCreateWindow() 242 *outWindow = _window; in WebRtcCreateWindow()
|
/external/autotest/client/deps/pyxinput/src/ |
D | xi2reader.py | 22 self._window = xlib.XDefaultRootWindow(self._display) 44 xi2.XISelectEvents(self._display, self._window, ctypes.pointer(mask), 1) 45 xlib.XSelectInput(self._display, self._window, ctypes.c_long(0))
|
/external/deqp/framework/platform/ios/ |
D | tcuIOSAppDelegate.m | 30 @synthesize window = _window; 91 [_window release];
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-crash-2.m | 15 @synthesize window = _window;
|
/external/clang/test/SemaObjC/ |
D | err-ivar-access-in-class-method.m | 20 @synthesize window = _window;
|
/external/opencv3/modules/imgproc/src/ |
D | phasecorr.cpp | 491 cv::Point2d cv::phaseCorrelate(InputArray _src1, InputArray _src2, InputArray _window, double* resp… in phaseCorrelate() argument 495 Mat window = _window.getMat(); in phaseCorrelate()
|
/external/chromium-trace/catapult/third_party/Paste/paste/evalexception/media/ |
D | MochiKit.packed.js | 2752 return MochiKit.DOM._window; 2758 var _2f7=self._window; 2761 self._window=win; 2766 self._window=_2f7; 2770 self._window=_2f7; 3255 self.addToCallStack(self._window,"onload",func,true); 3504 this._window=win; 4287 var w=MochiKit.DOM._window; 5595 this._window=win;
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-objc-meta-data.test | 284 OBJC2_32BIT_EXE: name 0x4e2f _window
|