HomeSort by relevance Sort by last modified time
    Searched refs:bCtrl (Results 1 - 9 of 9) sorted by null

  /external/pdfium/fpdfsdk/include/fxedit/
fx_edit.h 273 //if Shift key is hold, bShift is TRUE, is Ctrl key is hold, bCtrl is TRUE.
274 virtual void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl) = 0;
276 virtual void OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl) = 0;
278 virtual void OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
280 virtual void OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
282 virtual void OnVK_LEFT(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
284 virtual void OnVK_RIGHT(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
286 virtual void OnVK_HOME(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
288 virtual void OnVK_END(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
458 virtual void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl) = 0;
    [all...]
fxet_list.h 307 void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
308 void OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
309 void OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl);
310 void OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl);
311 void OnVK_LEFT(FX_BOOL bShift,FX_BOOL bCtrl);
312 void OnVK_RIGHT(FX_BOOL bShift,FX_BOOL bCtrl);
313 void OnVK_HOME(FX_BOOL bShift,FX_BOOL bCtrl);
314 void OnVK_END(FX_BOOL bShift,FX_BOOL bCtrl);
315 void OnVK(FX_INT32 nItemIndex,FX_BOOL bShift,FX_BOOL bCtrl);
316 FX_BOOL OnChar(FX_WORD nChar,FX_BOOL bShift,FX_BOOL bCtrl);
    [all...]
fxet_edit.h 616 void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
617 void OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
618 void OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl);
619 void OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl);
620 void OnVK_LEFT(FX_BOOL bShift,FX_BOOL bCtrl);
621 void OnVK_RIGHT(FX_BOOL bShift,FX_BOOL bCtrl);
622 void OnVK_HOME(FX_BOOL bShift,FX_BOOL bCtrl);
623 void OnVK_END(FX_BOOL bShift,FX_BOOL bCtrl);
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_list.cpp 560 void CFX_ListCtrl::OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl)
566 if (bCtrl)
609 void CFX_ListCtrl::OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl)
615 if (bCtrl)
642 void CFX_ListCtrl::OnVK(FX_INT32 nItemIndex,FX_BOOL bShift,FX_BOOL bCtrl)
648 if (bCtrl)
677 void CFX_ListCtrl::OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl)
679 OnVK(IsMultipleSel() ? GetCaret()-1 : GetSelect()-1, bShift, bCtrl);
682 void CFX_ListCtrl::OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl)
684 OnVK(IsMultipleSel() ? GetCaret()+1 : GetSelect()+1, bShift, bCtrl);
    [all...]
fxet_edit.cpp     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
pseudotcp.h 141 : seq(s), len(l), /*tstamp(0),*/ xmit(0), bCtrl(c) {
146 bool bCtrl;
154 uint32 queue(const char* data, uint32 len, bool bCtrl);
pseudotcp.cc 499 uint32 PseudoTcp::queue(const char* data, uint32 len, bool bCtrl) {
504 ASSERT(!bCtrl);
510 if (!m_slist.empty() && (m_slist.back().bCtrl == bCtrl) &&
516 SSegment sseg(static_cast<uint32>(m_snd_una + snd_buffered), len, bCtrl);
976 uint8 flags = (seg->bCtrl ? FLAG_CTL : 0);
1014 SSegment subseg(seg->seq + nTransmit, seg->len - nTransmit, seg->bCtrl);
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Edit.cpp 970 FX_BOOL bCtrl = IsCTRLpressed(nFlag);
972 if(bCtrl && !bAlt)
1009 FX_BOOL bCtrl = IsCTRLpressed(nFlag);
1010 if (!bCtrl)
1056 if (!bCtrl)
PWL_EditCtrl.cpp 264 FX_BOOL bCtrl = IsCTRLpressed(nFlag);
270 if (bCtrl && !bAlt)

Completed in 96 milliseconds