Home
last modified time | relevance | path

Searched refs:pMsg (Results 1 – 25 of 41) sorted by relevance

12

/external/pdfium/xfa/fwl/
Dcfwl_notedriver.cpp167 CFWL_MessageKey* pMsg = static_cast<CFWL_MessageKey*>(pMessage); in DoKey() local
169 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown && in DoKey()
170 pMsg->m_dwKeyCode == XFA_FWL_VKEY_Tab) { in DoKey()
172 CFWL_Widget* pForm = GetMessageForm(pMsg->GetDstTarget()); in DoKey()
192 pMsg->SetDstTarget(m_pFocus.Get()); in DoKey()
196 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown && in DoKey()
197 pMsg->m_dwKeyCode == XFA_FWL_VKEY_Return) { in DoKey()
201 pMsg->SetDstTarget(pDefButton); in DoKey()
210 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in DoMouse() local
211 if (pMsg->m_dwCmd == FWL_MouseCommand::Leave || in DoMouse()
[all …]
Dcfwl_combolist.cpp83 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
87 if (rect.Contains(pMsg->m_pos)) { in OnProcessMessage()
88 pMsg->m_pos -= rect.TopLeft(); in OnProcessMessage()
89 vertSB->GetDelegate()->OnProcessMessage(pMsg); in OnProcessMessage()
93 switch (pMsg->m_dwCmd) { in OnProcessMessage()
96 OnDropListMouseMove(pMsg); in OnProcessMessage()
101 OnDropListLButtonDown(pMsg); in OnProcessMessage()
106 OnDropListLButtonUp(pMsg); in OnProcessMessage()
119 void CFWL_ComboList::OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnDropListFocusChanged() argument
123 CFWL_MessageKillFocus* pKill = static_cast<CFWL_MessageKillFocus*>(pMsg); in OnDropListFocusChanged()
[all …]
Dcfwl_pushbutton.cpp108 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
109 switch (pMsg->m_dwCmd) { in OnProcessMessage()
111 OnLButtonDown(pMsg); in OnProcessMessage()
114 OnLButtonUp(pMsg); in OnProcessMessage()
117 OnMouseMove(pMsg); in OnProcessMessage()
120 OnMouseLeave(pMsg); in OnProcessMessage()
146 void CFWL_PushButton::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
155 void CFWL_PushButton::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
162 void CFWL_PushButton::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
164 if (m_rtClient.Contains(pMsg->m_pos)) { in OnLButtonUp()
[all …]
Dcfwl_notedriver.h46 bool DoSetFocus(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
47 bool DoKillFocus(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
48 bool DoKey(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
49 bool DoMouse(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
50 bool DoWheel(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
51 bool DoMouseEx(CFWL_Message* pMsg, CFWL_Widget* pMessageForm);
52 void MouseSecondary(CFWL_Message* pMsg);
Dcfwl_pushbutton.h40 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
41 void OnLButtonDown(CFWL_MessageMouse* pMsg);
42 void OnLButtonUp(CFWL_MessageMouse* pMsg);
43 void OnMouseMove(CFWL_MessageMouse* pMsg);
44 void OnMouseLeave(CFWL_MessageMouse* pMsg);
45 void OnKeyDown(CFWL_MessageKey* pMsg);
Dcfwl_checkbox.cpp212 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
213 switch (pMsg->m_dwCmd) { in OnProcessMessage()
218 OnLButtonUp(pMsg); in OnProcessMessage()
221 OnMouseMove(pMsg); in OnProcessMessage()
269 void CFWL_CheckBox::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
274 if (!m_rtClient.Contains(pMsg->m_pos)) in OnLButtonUp()
282 void CFWL_CheckBox::OnMouseMove(CFWL_MessageMouse* pMsg) { in OnMouseMove() argument
288 if (m_rtClient.Contains(pMsg->m_pos)) { in OnMouseMove()
308 if (m_rtClient.Contains(pMsg->m_pos)) { in OnMouseMove()
328 void CFWL_CheckBox::OnKeyDown(CFWL_MessageKey* pMsg) { in OnKeyDown() argument
[all …]
Dcfwl_edit.h140 void DoRButtonDown(CFWL_MessageMouse* pMsg);
141 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
142 void OnLButtonDown(CFWL_MessageMouse* pMsg);
143 void OnLButtonUp(CFWL_MessageMouse* pMsg);
144 void OnButtonDoubleClick(CFWL_MessageMouse* pMsg);
145 void OnMouseMove(CFWL_MessageMouse* pMsg);
146 void OnKeyDown(CFWL_MessageKey* pMsg);
147 void OnChar(CFWL_MessageKey* pMsg);
Dcfwl_datetimepicker.cpp379 void CFWL_DateTimePicker::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
380 if (!pMsg) in OnFocusChanged()
391 pMsg->SetDstTarget(m_pEdit.get()); in OnFocusChanged()
392 m_pEdit->GetDelegate()->OnProcessMessage(pMsg); in OnFocusChanged()
399 pMsg->SetSrcTarget(m_pEdit.get()); in OnFocusChanged()
400 m_pEdit->GetDelegate()->OnProcessMessage(pMsg); in OnFocusChanged()
407 void CFWL_DateTimePicker::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
408 if (!pMsg) in OnLButtonDown()
410 if (!m_rtBtn.Contains(pMsg->m_pos)) in OnLButtonDown()
423 void CFWL_DateTimePicker::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
[all …]
Dcfwl_combolist.h31 void OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet);
32 void OnDropListMouseMove(CFWL_MessageMouse* pMsg);
33 void OnDropListLButtonDown(CFWL_MessageMouse* pMsg);
34 void OnDropListLButtonUp(CFWL_MessageMouse* pMsg);
Dcfwl_datetimepicker.h88 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
89 void OnLButtonDown(CFWL_MessageMouse* pMsg);
90 void OnLButtonUp(CFWL_MessageMouse* pMsg);
91 void OnMouseMove(CFWL_MessageMouse* pMsg);
92 void OnMouseLeave(CFWL_MessageMouse* pMsg);
Dcfwl_listbox.cpp665 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
666 switch (pMsg->m_dwCmd) { in OnProcessMessage()
668 OnLButtonDown(pMsg); in OnProcessMessage()
671 OnLButtonUp(pMsg); in OnProcessMessage()
682 CFWL_MessageKey* pMsg = static_cast<CFWL_MessageKey*>(pMessage); in OnProcessMessage() local
683 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown) in OnProcessMessage()
684 OnKeyDown(pMsg); in OnProcessMessage()
715 void CFWL_ListBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
738 void CFWL_ListBox::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
741 CFWL_ListItem* pItem = GetItemAtPoint(pMsg->m_pos); in OnLButtonDown()
[all …]
Dcfwl_edit.cpp1015 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
1016 switch (pMsg->m_dwCmd) { in OnProcessMessage()
1018 OnLButtonDown(pMsg); in OnProcessMessage()
1021 OnLButtonUp(pMsg); in OnProcessMessage()
1024 OnButtonDoubleClick(pMsg); in OnProcessMessage()
1027 OnMouseMove(pMsg); in OnProcessMessage()
1030 DoRButtonDown(pMsg); in OnProcessMessage()
1071 void CFWL_Edit::DoRButtonDown(CFWL_MessageMouse* pMsg) { in DoRButtonDown() argument
1073 m_pEditEngine->GetIndexForPoint(DeviceToEngine(pMsg->m_pos))); in DoRButtonDown()
1076 void CFWL_Edit::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
[all …]
Dcfwl_listbox.h110 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
111 void OnLButtonDown(CFWL_MessageMouse* pMsg);
112 void OnLButtonUp(CFWL_MessageMouse* pMsg);
113 void OnMouseWheel(CFWL_MessageMouseWheel* pMsg);
114 void OnKeyDown(CFWL_MessageKey* pMsg);
Dcfwl_combobox.cpp447 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); in OnProcessMessage() local
448 switch (pMsg->m_dwCmd) { in OnProcessMessage()
450 OnLButtonDown(pMsg); in OnProcessMessage()
453 OnLButtonUp(pMsg); in OnProcessMessage()
505 void CFWL_ComboBox::OnLButtonUp(CFWL_MessageMouse* pMsg) { in OnLButtonUp() argument
506 if (m_rtBtn.Contains(pMsg->m_pos)) in OnLButtonUp()
514 void CFWL_ComboBox::OnLButtonDown(CFWL_MessageMouse* pMsg) { in OnLButtonDown() argument
517 if (!rtBtn.Contains(pMsg->m_pos)) in OnLButtonDown()
529 void CFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { in OnFocusChanged() argument
544 void CFWL_ComboBox::OnKey(CFWL_MessageKey* pMsg) { in OnKey() argument
[all …]
Dcfwl_checkbox.h58 void OnLButtonUp(CFWL_MessageMouse* pMsg);
59 void OnMouseMove(CFWL_MessageMouse* pMsg);
61 void OnKeyDown(CFWL_MessageKey* pMsg);
Dcfwl_combobox.h112 void OnLButtonUp(CFWL_MessageMouse* pMsg);
117 void OnLButtonDown(CFWL_MessageMouse* pMsg);
118 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
119 void OnKey(CFWL_MessageKey* pMsg);
Dcfwl_monthcalendar.h146 void OnLButtonDown(CFWL_MessageMouse* pMsg);
147 void OnLButtonUp(CFWL_MessageMouse* pMsg);
148 void OnMouseMove(CFWL_MessageMouse* pMsg);
149 void OnMouseLeave(CFWL_MessageMouse* pMsg);
/external/ltp/testcases/kernel/io/disktest/
Dparse.c62 pMsg(WARN, args, "Missing argument for perameter.\n"); in fill_cld_args()
68 pMsg(WARN, args, in fill_cld_args()
73 pMsg(WARN, args, in fill_cld_args()
79 pMsg(ERR, args, in fill_cld_args()
91 pMsg(WARN, args, in fill_cld_args()
96 pMsg(WARN, args, in fill_cld_args()
104 pMsg(WARN, args, in fill_cld_args()
143 pMsg(INFO, args, "Version %s\n", VER_STR); in fill_cld_args()
147 pMsg(WARN, args, in fill_cld_args()
152 pMsg(WARN, args, in fill_cld_args()
[all …]
Dstats.c179 pMsg(ERR, args, "Unknown stats display type.\n"); in print_stats()
190 pMsg(STAT, args, HRTSTR, in print_stats()
195 pMsg(STAT, args, HWTSTR, in print_stats()
202 pMsg(STAT, args, CRTSTR, in print_stats()
207 pMsg(STAT, args, CWTSTR, in print_stats()
214 pMsg(STAT, args, TRTSTR, in print_stats()
219 pMsg(STAT, args, TWTSTR, in print_stats()
225 pMsg(ERR, args, in print_stats()
234 pMsg(STAT, args, HRTHSTR, in print_stats()
244 pMsg(STAT, args, HWTHSTR, in print_stats()
[all …]
Dmain.c89 pMsg(INFO, test->args, in linear_read_write_test()
93 pMsg(INFO, test->args, in linear_read_write_test()
98 pMsg(INFO, test->args, "Starting write pass\n"); in linear_read_write_test()
128 pMsg(INFO, test->args, in linear_read_write_test()
132 pMsg(INFO, test->args, in linear_read_write_test()
137 pMsg(INFO, test->args, "Starting read pass\n"); in linear_read_write_test()
157 pMsg(ERR, test->args, in init_data()
164 pMsg(ERR, test->args, in init_data()
171 pMsg(ERR, test->args, in init_data()
200 pMsg(ERR, test->args, in init_data()
[all …]
Dglobals.h87 #define PDBG1 if (gbl_dbg_lvl > 0) pMsg
88 #define PDBG2 if (gbl_dbg_lvl > 1) pMsg
89 #define PDBG3 if (gbl_dbg_lvl > 2) pMsg
90 #define PDBG4 if (gbl_dbg_lvl > 3) pMsg
91 #define PDBG5 if (gbl_dbg_lvl > 4) pMsg
Dthreading.c161 pMsg(ERR, test->args, in CreateTestChild()
172 pMsg(ERR, test->args, in CreateTestChild()
175 pMsg(INFO, test->args, in CreateTestChild()
191 pMsg(ERR, test->args, "%d : Could not create child thread...\n", in createChild()
Dchildmain.c517 pMsg(ERR, args, "EXPECTED:\n"); in miscompare_dump()
522 pMsg(ERR, args, "ACTUAL:\n"); in miscompare_dump()
527 pMsg(ERR, args, "REREAD ACTUAL:\n"); in miscompare_dump()
615 pMsg(ERR, args, in ChildMain()
639 pMsg(ERR, args, "Thread %d: could not open %s, errno = %u.\n", in ChildMain()
648 pMsg(ERR, args, in ChildMain()
660 pMsg(ERR, args, in ChildMain()
764 pMsg(msg_level, args, SFSTR, this_thread_id, in ChildMain()
770 pMsg(INFO, args, in ChildMain()
831 pMsg(msg_level, args, in ChildMain()
[all …]
Ddump.c192 pMsg(ERR, args, "could not open %s.\n", args->device); in do_dump()
193 pMsg(ERR, args, "%s: Error = %u\n", args->device, in do_dump()
201 pMsg(ERR, args, "Could not seek to start position.\n"); in do_dump()
210 pMsg(ERR, args, "Failure reading %s\n", args->device); in do_dump()
211 pMsg(ERR, args, "Last Error was %lu\n", GETLASTERROR()); in do_dump()
/external/OpenCSD/decoder/include/opencsd/c_api/
Docsd_c_api_cust_impl.h66 const char *pMsg) in lib_cb_LogError() argument
70 callbacks->fn_log_error(callbacks->lib_context, filter_level, code, idx, chan_id, pMsg); in lib_cb_LogError()
78 const char *pMsg) in lib_cb_LogMsg() argument
82 callbacks->fn_log_msg(callbacks->lib_context, filter_level, pMsg); in lib_cb_LogMsg()

12