Home
last modified time | relevance | path

Searched refs:SendMsg (Results 1 - 20 of 20) sorted by relevance

/third_party/lzma/CPP/Windows/Control/
H A 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), (LPARAM)s); } in GetLBText()
41 LRESULT SetItemData(int index, LPARAM lParam) { return SendMsg(CB_SETITEMDATA, MY_int_TO_WPARAM(index), lParam); } in SetItemData()
42 LRESULT GetItemData(int index) { return SendMsg(CB_GETITEMDAT in SetItemData()
[all...]
H A 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()
H A 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, buttonID, MAKELONG(BoolToBOOL(enable), 0))); } in EnableButton()
33 void ButtonStructSize() { SendMsg(TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON)); } in ButtonStructSize()
34 HIMAGELIST SetImageList(UINT listIndex, HIMAGELIST imageList) { return HIMAGELIST(SendMsg(TB_SETIMAGELIST, listIndex, (LPARAM)imageList)); } in SetImageList()
35 bool AddButton(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONS, numButtons, (LPARAM)buttons)); } in AddButton()
37 bool AddButtonW(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONSW, numButtons, (LPARAM)buttons)); } in AddButtonW()
H A DTrackbar.h15 { SendMsg(TBM_SETRANGE, BoolToBOOL(redraw), MAKELONG(minimum, maximum)); } in SetRange()
17 { SendMsg(TBM_SETPOS, BoolToBOOL(redraw), pos); } in SetPos()
19 { SendMsg(TBM_SETTICFREQ, freq); } in SetTicFreq()
22 { return (int)SendMsg(TBM_GETPOS); } in GetPos()
H A DProgressBar.h18 LRESULT SetPos(int pos) { return SendMsg(PBM_SETPOS, (unsigned)pos, 0); } in SetPos()
19 // LRESULT DeltaPos(int increment) { return SendMsg(PBM_DELTAPOS, increment, 0); }
20 // UINT GetPos() { return (UINT)SendMsg(PBM_GETPOS, 0, 0); }
21 // LRESULT SetRange(unsigned short minValue, unsigned short maxValue) { return SendMsg(PBM_SETRANGE, 0, MAKELPARAM(minValue, maxValue)); }
22 DWORD SetRange32(int minValue, int maxValue) { return (DWORD)SendMsg(PBM_SETRANGE32, (unsigned)minValue, (LPARAM)(unsigned)maxValue); } in SetRange32()
23 // int SetStep(int step) { return (int)SendMsg(PBM_SETSTEP, step, 0); }
24 // LRESULT StepIt() { return SendMsg(PBM_STEPIT, 0, 0); }
25 // INT GetRange(bool minValue, PPBRANGE range) { return (INT)SendMsg(PBM_GETRANGE, BoolToBOOL(minValue), (LPARAM)range); }
28 COLORREF SetBarColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBARCOLOR, 0, (LPARAM)color); } in SetBarColor()
29 COLORREF SetBackgroundColor(COLORREF color) { return (COLORREF)SendMsg(PBM_SETBKCOLO in SetBarColor()
[all...]
H A DStatic.h14 HANDLE SetImage(WPARAM imageType, HANDLE handle) { return (HANDLE)SendMsg(STM_SETIMAGE, imageType, (LPARAM)handle); } 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()
H A 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()
H A DListView.h55 int InsertColumn(unsigned columnIndex, const LVCOLUMNW *columnInfo) { return (int)SendMsg(LVM_INSERTCOLUMNW, (WPARAM)columnIndex, (LPARAM)columnInfo); } 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()
H A DEdit.h14 void SetPasswordChar(WPARAM c) { SendMsg(EM_SETPASSWORDCHAR, c); } in SetPasswordChar()
H A DCommandBar.h28 // bool AddButtons(UINT numButtons, LPTBBUTTON buttons) { return BOOLToBool(SendMsg(TB_ADDBUTTONS, (WPARAM)numButtons, (LPARAM)buttons)); }
29 // bool InsertButton(unsigned iButton, LPTBBUTTON button) { return BOOLToBool(SendMsg(TB_INSERTBUTTON, (WPARAM)iButton, (LPARAM)button)); }
30 // BOOL AddToolTips(UINT numToolTips, LPTSTR toolTips) { return BOOLToBool(SendMsg(TB_SETTOOLTIPS, (WPARAM)numToolTips, (LPARAM)toolTips)); }
31 void AutoSize() { SendMsg(TB_AUTOSIZE, 0, 0); } in AutoSize()
H A DDialog.h82 { return SendMsg(WM_NEXTDLGCTL, wParam, lParam); } in SendMsg_NextDlgCtl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUAsmUtils.h14 namespace SendMsg { // Symbolic names for the sendmsg(...) syntax. namespace
20 } // namespace SendMsg
H A DAMDGPUAsmUtils.cpp12 namespace SendMsg { namespace
14 // This must be in sync with llvm::AMDGPU::SendMsg::Id enum members, see SIDefines.h.
34 // These two must be in sync with llvm::AMDGPU::SendMsg::Op enum members, see SIDefines.h.
50 } // namespace SendMsg
H A DAMDGPUBaseInfo.h486 namespace SendMsg { namespace
525 } // namespace SendMsg
H A DAMDGPUBaseInfo.cpp765 // SendMsg
768 namespace SendMsg { namespace
875 } // namespace SendMsg
/third_party/lzma/CPP/Windows/
H A DWindow.h252 void SetRedraw(bool redraw = true) { SendMsg(WM_SETREDRAW, (WPARAM)BoolToBOOL(redraw), 0); } in SetRedraw()
305 LRESULT SendMsg(UINT message, WPARAM wParam = 0, LPARAM lParam = 0) in SendMsg() function in NWindows::CWindow
353 HICON SetIcon(WPARAM sizeType, HICON icon) { return (HICON)SendMsg(WM_SETICON, sizeType, (LPARAM)icon); } in SetIcon()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIDefines.h261 namespace SendMsg { // Encoding of SIMM16 used in s_sendmsg* insns. namespace
311 } // namespace SendMsg
H A DSIInsertWaitcnts.cpp875 ((MI.getOperand(0).getImm() & AMDGPU::SendMsg::ID_MASK_) == in generateWaitcntInstBefore()
876 AMDGPU::SendMsg::ID_GS_DONE)) { in generateWaitcntInstBefore()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A 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/
H A DAMDGPUAsmParser.cpp856 case ImmTySendMsg: OS << "SendMsg"; break; in printImmTy()
5079 using namespace llvm::AMDGPU::SendMsg;
5112 using namespace llvm::AMDGPU::SendMsg;
5142 using namespace llvm::AMDGPU::SendMsg;

Completed in 25 milliseconds