Searched defs:pMsg (Results 1 - 25 of 26) sorted by relevance

12

/external/pdfium/xfa/fwl/
H A Dcfwl_comboedit.cpp61 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
62 if ((pMsg->m_dwCmd == FWL_MouseCommand::LeftButtonDown) &&
H A Dcfwl_comboboxproxy.cpp36 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
37 switch (pMsg->m_dwCmd) {
39 OnLButtonDown(pMsg);
42 OnLButtonUp(pMsg);
73 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
74 if (CFX_RectF(0, 0, GetWidgetRect().Size()).Contains(pMsg->m_pos)) {
98 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
99 if (!CFX_RectF(0, 0, GetWidgetRect().Size()).Contains(pMsg->m_pos) &&
109 CFWL_MessageKillFocus* pMsg = static_cast<CFWL_MessageKillFocus*>(pMessage);
110 if (!pMsg
[all...]
H A Dcfwl_checkbox.cpp236 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
237 switch (pMsg->m_dwCmd) {
242 OnLButtonUp(pMsg);
245 OnMouseMove(pMsg);
294 void CFWL_CheckBox::OnLButtonUp(CFWL_MessageMouse* pMsg) { argument
299 if (!m_rtClient.Contains(pMsg->m_pos))
307 void CFWL_CheckBox::OnMouseMove(CFWL_MessageMouse* pMsg) { argument
313 if (m_rtClient.Contains(pMsg->m_pos)) {
333 if (m_rtClient.Contains(pMsg->m_pos)) {
353 void CFWL_CheckBox::OnKeyDown(CFWL_MessageKey* pMsg) { argument
[all...]
H A Dcfwl_combolist.cpp83 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
87 if (rect.Contains(pMsg->m_pos)) {
88 pMsg->m_pos -= rect.TopLeft();
89 vertSB->GetDelegate()->OnProcessMessage(pMsg);
93 switch (pMsg->m_dwCmd) {
96 OnDropListMouseMove(pMsg);
101 OnDropListLButtonDown(pMsg);
106 OnDropListLButtonUp(pMsg);
119 void CFWL_ComboList::OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet) { argument
123 CFWL_MessageKillFocus* pKill = static_cast<CFWL_MessageKillFocus*>(pMsg);
131 OnDropListMouseMove(CFWL_MessageMouse* pMsg) argument
156 OnDropListLButtonDown(CFWL_MessageMouse* pMsg) argument
164 OnDropListLButtonUp(CFWL_MessageMouse* pMsg) argument
[all...]
H A Dcfwl_form.cpp220 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
221 switch (pMsg->m_dwCmd) {
223 OnLButtonDown(pMsg);
226 OnLButtonUp(pMsg);
244 void CFWL_Form::OnLButtonDown(CFWL_MessageMouse* pMsg) { argument
248 void CFWL_Form::OnLButtonUp(CFWL_MessageMouse* pMsg) { argument
H A Dcfwl_pushbutton.cpp108 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
109 switch (pMsg->m_dwCmd) {
111 OnLButtonDown(pMsg);
114 OnLButtonUp(pMsg);
117 OnMouseMove(pMsg);
120 OnMouseLeave(pMsg);
144 void CFWL_PushButton::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { argument
153 void CFWL_PushButton::OnLButtonDown(CFWL_MessageMouse* pMsg) { argument
163 void CFWL_PushButton::OnLButtonUp(CFWL_MessageMouse* pMsg) { argument
165 if (m_rtClient.Contains(pMsg
179 OnMouseMove(CFWL_MessageMouse* pMsg) argument
213 OnMouseLeave(CFWL_MessageMouse* pMsg) argument
220 OnKeyDown(CFWL_MessageKey* pMsg) argument
[all...]
H A Dcfwl_notedriver.cpp289 CFWL_MessageKey* pMsg = static_cast<CFWL_MessageKey*>(pMessage); local
291 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown &&
292 pMsg->m_dwKeyCode == FWL_VKEY_Tab) {
294 CFWL_Widget* pForm = GetMessageForm(pMsg->m_pDstTarget);
314 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown &&
315 pMsg->m_dwKeyCode == FWL_VKEY_Return) {
319 pMsg->m_pDstTarget = defButton;
325 pMsg->m_pDstTarget = m_pFocus;
331 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
332 if (pMsg
369 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
[all...]
H A Dcfwl_datetimepicker.cpp519 void CFWL_DateTimePicker::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { argument
520 if (!pMsg)
523 return DisForm_OnFocusChanged(pMsg, bSet);
532 if (pMsg->m_pSrcTarget == m_pMonthCal.get() && IsMonthCalendarVisible()) {
538 void CFWL_DateTimePicker::OnLButtonDown(CFWL_MessageMouse* pMsg) { argument
539 if (!pMsg)
543 if (!m_rtBtn.Contains(pMsg->m_pos))
556 void CFWL_DateTimePicker::OnLButtonUp(CFWL_MessageMouse* pMsg) { argument
557 if (!pMsg)
561 if (m_rtBtn.Contains(pMsg
568 OnMouseMove(CFWL_MessageMouse* pMsg) argument
574 OnMouseLeave(CFWL_MessageMouse* pMsg) argument
581 DisForm_OnFocusChanged(CFWL_Message* pMsg, bool bSet) argument
[all...]
H A Dcfwl_scrollbar.cpp334 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
335 switch (pMsg->m_dwCmd) {
337 OnLButtonDown(pMsg->m_pos);
340 OnLButtonUp(pMsg->m_pos);
343 OnMouseMove(pMsg->m_pos);
352 CFWL_MessageMouseWheel* pMsg = local
354 OnMouseWheel(pMsg->m_delta);
H A Dcfwl_combobox.cpp715 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
716 switch (pMsg->m_dwCmd) {
718 OnLButtonDown(pMsg);
721 OnLButtonUp(pMsg);
724 OnMouseMove(pMsg);
727 OnMouseLeave(pMsg);
763 void CFWL_ComboBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { argument
766 if (IsDropDownStyle() && pMsg->m_pSrcTarget != m_pListBox.get()) {
778 if (!IsDropDownStyle() || pMsg->m_pDstTarget == m_pListBox.get()) {
789 void CFWL_ComboBox::OnLButtonDown(CFWL_MessageMouse* pMsg) { argument
809 OnLButtonUp(CFWL_MessageMouse* pMsg) argument
819 OnMouseMove(CFWL_MessageMouse* pMsg) argument
834 OnMouseLeave(CFWL_MessageMouse* pMsg) argument
843 OnKey(CFWL_MessageKey* pMsg) argument
851 DoSubCtrlKey(CFWL_MessageKey* pMsg) argument
911 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
950 DisForm_OnLButtonDown(CFWL_MessageMouse* pMsg) argument
965 DisForm_OnFocusChanged(CFWL_Message* pMsg, bool bSet) argument
980 DisForm_OnKey(CFWL_MessageKey* pMsg) argument
[all...]
H A Dcfwl_listbox.cpp671 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
672 switch (pMsg->m_dwCmd) {
674 OnLButtonDown(pMsg);
677 OnLButtonUp(pMsg);
688 CFWL_MessageKey* pMsg = static_cast<CFWL_MessageKey*>(pMessage); local
689 if (pMsg->m_dwCmd == FWL_KeyCommand::KeyDown)
690 OnKeyDown(pMsg);
719 void CFWL_ListBox::OnFocusChanged(CFWL_Message* pMsg, bool bSet) { argument
742 void CFWL_ListBox::OnLButtonDown(CFWL_MessageMouse* pMsg) { argument
747 CFWL_ListItem* pItem = GetItemAtPoint(pMsg
775 OnLButtonUp(CFWL_MessageMouse* pMsg) argument
783 OnMouseWheel(CFWL_MessageMouseWheel* pMsg) argument
788 OnKeyDown(CFWL_MessageKey* pMsg) argument
[all...]
H A Dcfwl_edit.cpp1106 CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage); local
1107 switch (pMsg->m_dwCmd) {
1109 OnLButtonDown(pMsg);
1112 OnLButtonUp(pMsg);
1115 OnButtonDoubleClick(pMsg);
1118 OnMouseMove(pMsg);
1121 DoRButtonDown(pMsg);
1160 void CFWL_Edit::DoRButtonDown(CFWL_MessageMouse* pMsg) { argument
1164 m_CursorPosition = m_EdtEngine.GetIndexForPoint(DeviceToEngine(pMsg->m_pos));
1167 void CFWL_Edit::OnFocusChanged(CFWL_Message* pMsg, boo argument
1195 OnLButtonDown(CFWL_MessageMouse* pMsg) argument
1229 OnLButtonUp(CFWL_MessageMouse* pMsg) argument
1234 OnButtonDoubleClick(CFWL_MessageMouse* pMsg) argument
1245 OnMouseMove(CFWL_MessageMouse* pMsg) argument
1271 OnKeyDown(CFWL_MessageKey* pMsg) argument
1332 OnChar(CFWL_MessageKey* pMsg) argument
[all...]
/external/vulkan-validation-layers/loader/
H A Ddebug_report.c100 uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) {
105 if (pTrav->pfnMsgCallback(msgFlags, objectType, srcObject, location, msgCode, pLayerPrefix, pMsg, pTrav->pUserData)) {
269 const char *pMsg) {
272 inst->disp->layer_inst_disp.DebugReportMessageEXT(instance, flags, objType, object, location, msgCode, pLayerPrefix, pMsg);
425 int32_t msgCode, const char *pLayerPrefix, const char *pMsg) {
434 pMsg);
441 util_DebugReportMessage(inst, flags, objType, object, location, msgCode, pLayerPrefix, pMsg);
99 util_DebugReportMessage(const struct loader_instance *inst, VkFlags msgFlags, VkDebugReportObjectTypeEXT objectType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) argument
266 debug_report_DebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objType, uint64_t object, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) argument
423 terminator_DebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objType, uint64_t object, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) argument
/external/ltp/testcases/kernel/io/disktest/
H A Dsfunc.c153 int pMsg(lvl_t level, const child_args_t * args, char *Msg, ...) function
462 pMsg(WARN, args,
469 pMsg(WARN, args,
486 pMsg(INFO, args,
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
H A DChooserDialog.cpp467 BOOL ChooserDialog::PreTranslateMessage(MSG* pMsg) argument
475 result = ::TranslateAccelerator( m_hWnd, mMenuAcceleratorTable, pMsg );
479 result = CDialog::PreTranslateMessage( pMsg );
/external/vulkan-validation-layers/layers/
H A Dthreading.cpp418 int32_t msgCode, const char *pLayerPrefix, const char *pMsg) {
419 threading::DebugReportMessageEXT(instance, flags, objType, object, location, msgCode, pLayerPrefix, pMsg);
416 vkDebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objType, uint64_t object, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) argument
H A Dvk_layer_logging.h53 const char *pLayerPrefix, const char *pMsg);
112 const char *pLayerPrefix, const char *pMsg) {
126 if (pTrav->pfnMsgCallback(msgFlags, objectType, srcObject, location, msgCode, pLayerPrefix, pMsg,
134 newMsg.append(pMsg);
389 const char *pMsg, void *pUserData) {
395 srcObject, objType, (unsigned long)location, msgCode, pMsg);
403 const char *pLayerPrefix, const char *pMsg, void *pUserData) {
411 msg_flags, (size_t)srcObject, objType, location, msgCode, pMsg);
421 const char *pLayerPrefix, const char *pMsg, void *pUserData) {
110 debug_report_log_msg(const debug_report_data *debug_data, VkFlags msgFlags, VkDebugReportObjectTypeEXT objectType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) argument
387 log_callback(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg, void *pUserData) argument
401 win32_debug_output_msg(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg, void *pUserData) argument
419 DebugBreakCallback(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg, void *pUserData) argument
H A Dobject_tracker_utils.cpp593 int32_t msgCode, const char *pLayerPrefix, const char *pMsg) {
595 pInstanceTable->DebugReportMessageEXT(instance, flags, objType, object, location, msgCode, pLayerPrefix, pMsg);
591 DebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objType, uint64_t object, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) argument
/external/pdfium/fpdfsdk/fpdfxfa/
H A Dcpdfxfa_docenvironment.cpp970 FPDF_WIDESTRING pMsg = (FPDF_WIDESTRING)bsMsg.GetBuffer(bsMsg.GetLength()); local
971 pFormFillEnv->EmailTo(pFileHandler, pTo, pSubject, pCC, pBcc, pMsg);
/external/pdfium/fpdfsdk/
H A Dcpdfsdk_formfillenvironment.cpp424 FPDF_WIDESTRING pMsg) {
426 m_pInfo->FFI_EmailTo(m_pInfo, fileHandler, pTo, pSubject, pCC, pBcc, pMsg);
419 EmailTo(FPDF_FILEHANDLER* fileHandler, FPDF_WIDESTRING pTo, FPDF_WIDESTRING pSubject, FPDF_WIDESTRING pCC, FPDF_WIDESTRING pBcc, FPDF_WIDESTRING pMsg) argument
/external/vulkan-validation-layers/demos/
H A Dvulkaninfo.c195 size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg,
197 char *message = (char *)malloc(strlen(pMsg) + 100);
202 sprintf(message, "ERROR: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
204 sprintf(message, "WARNING: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
206 sprintf(message, "INFO: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
208 sprintf(message, "DEBUG: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
194 DbgCallback(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg, void *pUserData) argument
H A Dcube.c294 size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg,
459 int32_t msgCode, const char *pLayerPrefix, const char *pMsg, void *pUserData) {
461 char *message = (char *)malloc(strlen(pMsg) + 100);
466 sprintf(message, "INFORMATION: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
469 sprintf(message, "WARNING: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
472 sprintf(message, "PERFORMANCE WARNING: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
475 sprintf(message, "ERROR: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
478 sprintf(message, "DEBUG: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
481 sprintf(message, "INFORMATION: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg);
293 BreakCallback(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg, void *pUserData) argument
458 dbgFunc(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, uint64_t srcObject, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg, void *pUserData) argument
/external/vulkan-validation-layers/tests/layers/
H A Dwrap_objects.cpp1146 size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) {
1150 pMsg);
1145 vkDebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objType, uint64_t object, size_t location, int32_t msgCode, const char *pLayerPrefix, const char *pMsg) argument
/external/guice/extensions/struts2/lib/
H A Dcommons-fileupload-1.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/fileupload/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-fileupload-1.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/fileupload/ ...

Completed in 531 milliseconds

12