Home
last modified time | relevance | path

Searched refs:bAuto (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/src/fpdfdoc/
Dpdf_vt.h372 void SetAutoReturn(FX_BOOL bAuto = TRUE) override { m_bLimitWidth = bAuto; }
377 void SetAutoFontSize(FX_BOOL bAuto = TRUE) override {
378 m_bAutoFontSize = bAuto;
/external/pdfium/fpdfsdk/include/fxedit/
Dfx_edit.h236 virtual void SetAutoReturn(FX_BOOL bAuto = TRUE, FX_BOOL bPaint = TRUE) = 0;
238 virtual void SetAutoFontSize(FX_BOOL bAuto = TRUE, FX_BOOL bPaint = TRUE) = 0;
240 virtual void SetAutoScroll(FX_BOOL bAuto = TRUE, FX_BOOL bPaint = TRUE) = 0;
Dfxet_edit.h547 void SetAutoReturn(FX_BOOL bAuto = TRUE, FX_BOOL bPaint = TRUE) override;
548 void SetAutoFontSize(FX_BOOL bAuto = TRUE, FX_BOOL bPaint = TRUE) override;
549 void SetAutoScroll(FX_BOOL bAuto = TRUE, FX_BOOL bPaint = TRUE) override;
/external/pdfium/core/include/fpdfdoc/
Dfpdf_vt.h347 virtual void SetAutoReturn(FX_BOOL bAuto = TRUE) = 0;
349 virtual void SetAutoFontSize(FX_BOOL bAuto = TRUE) = 0;
/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_edit.cpp872 void CFX_Edit::SetAutoReturn(FX_BOOL bAuto, FX_BOOL bPaint) { in SetAutoReturn() argument
873 m_pVT->SetAutoReturn(bAuto); in SetAutoReturn()
884 void CFX_Edit::SetAutoFontSize(FX_BOOL bAuto, FX_BOOL bPaint) { in SetAutoFontSize() argument
885 m_pVT->SetAutoFontSize(bAuto); in SetAutoFontSize()
896 void CFX_Edit::SetAutoScroll(FX_BOOL bAuto, FX_BOOL bPaint) { in SetAutoScroll() argument
897 m_bEnableScroll = bAuto; in SetAutoScroll()