Home
last modified time | relevance | path

Searched refs:SendMsg (Results 1 – 21 of 21) sorted by relevance

/third_party/lzma/CPP/Windows/Control/
DComboBox.h18 void ResetContent() { SendMsg(CB_RESETCONTENT, 0, 0); } in ResetContent()
19 LRESULT AddString(LPCTSTR s) { return SendMsg(CB_ADDSTRING, 0, (LPARAM)s); } in AddString()
25 LRESULT SetCurSel(int index) { return SendMsg(CB_SETCURSEL, MY_int_TO_WPARAM(index), 0); } in SetCurSel()
26 LRESULT SetCurSel(unsigned index) { return SendMsg(CB_SETCURSEL, index, 0); } in SetCurSel()
29 int GetCurSel() { return (int)SendMsg(CB_GETCURSEL, 0, 0); } in GetCurSel()
32 int GetCount() { return (int)SendMsg(CB_GETCOUNT, 0, 0); } in GetCount()
34 LRESULT GetLBTextLen(int index) { return SendMsg(CB_GETLBTEXTLEN, MY_int_TO_WPARAM(index), 0); } in GetLBTextLen()
35 …LRESULT GetLBText(int index, LPTSTR s) { return SendMsg(CB_GETLBTEXT, MY_int_TO_WPARAM(index), (LP… in GetLBText()
41 …LRESULT SetItemData(int index, LPARAM lParam) { return SendMsg(CB_SETITEMDATA, MY_int_TO_WPARAM(in… in SetItemData()
42 LRESULT GetItemData(int index) { return SendMsg(CB_GETITEMDATA, MY_int_TO_WPARAM(index), 0); } in GetItemData()
[all …]
DReBar.h15 { return LRESULTToBool(SendMsg(RB_SETBARINFO, 0, (LPARAM)barInfo)); } in SetBarInfo()
17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, MY_int_TO_WPARAM(index), (LPARAM)bandInfo)); } in InsertBand()
19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); } in SetBandInfo()
21 { SendMsg(RB_MAXIMIZEBAND, index, BoolToBOOL(ideal)); } in MaximizeBand()
23 { return LRESULTToBool(SendMsg(RB_SIZETORECT, 0, (LPARAM)rect)); } in SizeToRect()
25 { return (UINT)SendMsg(RB_GETBARHEIGHT); } in GetHeight()
27 { return (UINT)SendMsg(RB_GETBANDCOUNT); } in GetBandCount()
29 { return LRESULTToBool(SendMsg(RB_DELETEBAND, index)); } in DeleteBand()
DToolBar.h14 void AutoSize() { SendMsg(TB_AUTOSIZE, 0, 0); } in AutoSize()
15 DWORD GetButtonSize() { return (DWORD)SendMsg(TB_GETBUTTONSIZE, 0, 0); } in GetButtonSize()
28 return LRESULTToBool(SendMsg(TB_GETMAXSIZE, 0, (LPARAM)size));
32 …bool EnableButton(UINT buttonID, bool enable) { return LRESULTToBool(SendMsg(TB_ENABLEBUTTON, butt… in EnableButton()
33 void ButtonStructSize() { SendMsg(TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON)); } in ButtonStructSize()
34 …HIMAGELIST SetImageList(UINT listIndex, HIMAGELIST imageList) { return HIMAGELIST(SendMsg(TB_SETIM… in SetImageList()
35 …bool AddButton(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONS, … in AddButton()
37 …bool AddButtonW(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONSW… in AddButtonW()
DTrackbar.h15 { SendMsg(TBM_SETRANGE, BoolToBOOL(redraw), MAKELONG(minimum, maximum)); }
17 { SendMsg(TBM_SETPOS, BoolToBOOL(redraw), pos); }
19 { SendMsg(TBM_SETTICFREQ, freq); } in SetTicFreq()
22 { return (int)SendMsg(TBM_GETPOS); } in GetPos()
DProgressBar.h18 LRESULT SetPos(int pos) { return SendMsg(PBM_SETPOS, (unsigned)pos, 0); } in SetPos()
22 …DWORD SetRange32(int minValue, int maxValue) { return (DWORD)SendMsg(PBM_SETRANGE32, (unsigned)min… in SetRange32()
28 …COLORREF SetBarColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBARCOLOR, 0, (LPARAM)color)… in SetBarColor()
29 …COLORREF SetBackgroundColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBKCOLOR, 0, (LPARAM)… in SetBackgroundColor()
DStatic.h14 …HANDLE SetImage(WPARAM imageType, HANDLE handle) { return (HANDLE)SendMsg(STM_SETIMAGE, imageType,… in SetImage()
15 HANDLE GetImage(WPARAM imageType) { return (HANDLE)SendMsg(STM_GETIMAGE, imageType, 0); } in GetImage()
21 HICON SetIcon(HICON icon) { return (HICON)SendMsg(STM_SETICON, (WPARAM)icon, 0); } in SetIcon()
22 HICON GetIcon() { return (HICON)SendMsg(STM_GETICON, 0, 0); } in GetIcon()
DStatusBar.h19 { return LRESULTToBool(SendMsg(SB_SETTEXT, index | type, (LPARAM)text)); } in SetText()
29 { return LRESULTToBool(SendMsg(SB_SETTEXTW, index | type, (LPARAM)text)); } in SetText()
35 { return LRESULTToBool(SendMsg(SB_SETPARTS, numParts, (LPARAM)edgePostions)); } in SetParts()
37 { SendMsg(SB_SIMPLE, (WPARAM)BoolToBOOL(simple), 0); } in Simple()
DListView.h55 …int InsertColumn(unsigned columnIndex, const LVCOLUMNW *columnInfo) { return (int)SendMsg(LVM_INSE… in InsertColumn()
57 int InsertItem(const LV_ITEMW* item) { return (int)SendMsg(LVM_INSERTITEMW, 0, (LPARAM)item); } in InsertItem()
59 …bool SetItem(const LV_ITEMW* item) { return BOOLToBool((BOOL)SendMsg(LVM_SETITEMW, 0, (LPARAM)item… in SetItem()
DEdit.h14 void SetPasswordChar(WPARAM c) { SendMsg(EM_SETPASSWORDCHAR, c); } in SetPasswordChar()
DCommandBar.h31 void AutoSize() { SendMsg(TB_AUTOSIZE, 0, 0); } in AutoSize()
DDialog.h82 { return SendMsg(WM_NEXTDLGCTL, wParam, lParam); } in SendMsg_NextDlgCtl()
/third_party/lzma/CPP/Windows/
DWindow.h252 void SetRedraw(bool redraw = true) { SendMsg(WM_SETREDRAW, (WPARAM)BoolToBOOL(redraw), 0); }
305 LRESULT SendMsg(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
353 …HICON SetIcon(WPARAM sizeType, HICON icon) { return (HICON)SendMsg(WM_SETICON, sizeType, (LPARAM)i… in SetIcon()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUAsmUtils.h14 namespace SendMsg { // Symbolic names for the sendmsg(...) syntax.
DAMDGPUAsmUtils.cpp12 namespace SendMsg { namespace
DAMDGPUBaseInfo.h486 namespace SendMsg {
DAMDGPUBaseInfo.cpp768 namespace SendMsg { namespace
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIDefines.h261 namespace SendMsg { // Encoding of SIMM16 used in s_sendmsg* insns.
DSIInsertWaitcnts.cpp875 ((MI.getOperand(0).getImm() & AMDGPU::SendMsg::ID_MASK_) == in generateWaitcntInstBefore()
876 AMDGPU::SendMsg::ID_GS_DONE)) { in generateWaitcntInstBefore()
DSIInstrInfo.td852 let Name = "SendMsg";
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
DAMDGPUInstPrinter.cpp1147 using namespace llvm::AMDGPU::SendMsg; in printSendMsg()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp5079 using namespace llvm::AMDGPU::SendMsg; in parseSendMsgBody()
5112 using namespace llvm::AMDGPU::SendMsg; in validateSendMsg()
5142 using namespace llvm::AMDGPU::SendMsg; in parseSendMsgOp()