HomeSort by relevance Sort by last modified time
    Searched refs:pEvent (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/pdfium/xfa/fwl/
cfwl_eventtarget.cpp 22 bool CFWL_EventTarget::ProcessEvent(CFWL_Event* pEvent) {
26 if (!m_widgets.empty() && m_widgets.count(pEvent->m_pSrcTarget) == 0)
29 pDelegate->OnProcessEvent(pEvent);
cfwl_eventtarget.h 23 bool ProcessEvent(CFWL_Event* pEvent);
ifwl_widgetdelegate.h 22 virtual void OnProcessEvent(CFWL_Event* pEvent) = 0;
cfwl_barcode.h 49 void OnProcessEvent(CFWL_Event* pEvent) override;
cfwl_widget.h 72 void OnProcessEvent(CFWL_Event* pEvent) override;
145 void DispatchEvent(CFWL_Event* pEvent);
cfwl_barcode.cpp 88 void CFWL_Barcode::OnProcessEvent(CFWL_Event* pEvent) {
89 if (pEvent->GetType() == CFWL_Event::Type::TextChanged) {
93 CFWL_Edit::OnProcessEvent(pEvent);
  /external/pdfium/fxjs/
cjs_event.cpp 52 CJS_EventHandler* pEvent =
54 return CJS_Return(pRuntime->NewString(pEvent->Change().c_str()));
58 CJS_EventHandler* pEvent =
62 WideString& wChange = pEvent->Change();
69 CJS_EventHandler* pEvent =
72 return CJS_Return(pRuntime->NewString(pEvent->ChangeEx().c_str()));
81 CJS_EventHandler* pEvent =
84 return CJS_Return(pRuntime->NewNumber(pEvent->CommitKey()));
93 CJS_EventHandler* pEvent =
96 if (wcscmp((const wchar_t*)pEvent->Name(), L"Keystroke") != 0
    [all...]
cjs_publicmethods.cpp 872 CJS_EventHandler* pEvent =
874 if (!pEvent->m_pValue)
877 WideString& Value = pEvent->Value();
939 if (Field* fTarget = pEvent->Target_Field()) {
950 if (Field* fTarget = pEvent->Target_Field()) {
979 CJS_EventHandler* pEvent = pContext->GetEventHandler();
980 if (!pEvent->m_pValue)
983 WideString& val = pEvent->Value();
984 WideString& wstrChange = pEvent->Change();
987 if (pEvent->WillCommit())
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc 189 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
190 CHECK(pEvent != nullptr);
191 CHECK(pEvent->prev == nullptr);
192 CHECK(pEvent->next == nullptr);
200 for (int i = 0; i < pEvent->modCount; i++) {
201 const JdwpEventMod* pMod = &pEvent->mods[i];
208 if (pEvent->eventKind == EK_BREAKPOINT) {
221 if (NeedsFullDeoptimization(pEvent->eventKind)) {
228 uint32_t instrumentation_event = GetInstrumentationEventFor(pEvent->eventKind);
242 pEvent->next = event_list_
    [all...]
jdwp_event.h 107 void EventFree(JdwpEvent* pEvent);
  /external/pdfium/xfa/fxfa/
cxfa_ffnumericedit.h 25 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_ffnumericedit.cpp 69 void CXFA_FFNumericEdit::OnProcessEvent(CFWL_Event* pEvent) {
70 if (pEvent->GetType() == CFWL_Event::Type::Validate) {
71 CFWL_EventValidate* event = static_cast<CFWL_EventValidate*>(pEvent);
75 CXFA_FFTextEdit::OnProcessEvent(pEvent);
cxfa_ffdatetimeedit.h 31 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_ffimageedit.h 25 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_ffcheckbutton.h 29 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_fflistbox.h 21 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_ffpushbutton.h 34 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_ffimageedit.cpp 141 void CXFA_FFImageEdit::OnProcessEvent(CFWL_Event* pEvent) {
142 CXFA_FFField::OnProcessEvent(pEvent);
143 m_pOldDelegate->OnProcessEvent(pEvent);
cxfa_ffcombobox.h 42 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_ffdatetimeedit.cpp 208 void CXFA_FFDateTimeEdit::OnProcessEvent(CFWL_Event* pEvent) {
209 if (pEvent->GetType() == CFWL_Event::Type::SelectChanged) {
210 auto* event = static_cast<CFWL_EventSelectChanged*>(pEvent);
215 CXFA_FFTextEdit::OnProcessEvent(pEvent);
cxfa_fflistbox.cpp 195 void CXFA_FFListBox::OnProcessEvent(CFWL_Event* pEvent) {
196 CXFA_FFField::OnProcessEvent(pEvent);
197 switch (pEvent->GetType()) {
204 m_pOldDelegate->OnProcessEvent(pEvent);
cxfa_fftextedit.h 35 void OnProcessEvent(CFWL_Event* pEvent) override;
cxfa_ffcombobox.cpp 330 void CXFA_FFComboBox::OnProcessEvent(CFWL_Event* pEvent) {
331 CXFA_FFField::OnProcessEvent(pEvent);
332 switch (pEvent->GetType()) {
334 auto* postEvent = static_cast<CFWL_EventSelectChanged*>(pEvent);
354 m_pOldDelegate->OnProcessEvent(pEvent);
cxfa_fftextedit.cpp 337 void CXFA_FFTextEdit::OnProcessEvent(CFWL_Event* pEvent) {
338 CXFA_FFField::OnProcessEvent(pEvent);
339 switch (pEvent->GetType()) {
342 static_cast<CFWL_EventTextChanged*>(pEvent);
353 CFWL_EventCheckWord* event = static_cast<CFWL_EventCheckWord*>(pEvent);
360 m_pOldDelegate->OnProcessEvent(pEvent);
  /external/sonivox/arm-wt-22k/host_src/
jet.h 127 EAS_PUBLIC EAS_BOOL JET_GetEvent (EAS_DATA_HANDLE easHandle, EAS_U32 *pEventRaw, S_JET_EVENT *pEvent);
135 EAS_PUBLIC void JET_ParseEvent (EAS_U32 event, S_JET_EVENT *pEvent);

Completed in 3855 milliseconds

1 2 3