Home
last modified time | relevance | path

Searched refs:CPVT_WordRange (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpvt_wordrange.h16 struct CPVT_WordRange { struct
17 CPVT_WordRange() {} in CPVT_WordRange() function
19 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) in CPVT_WordRange() argument
45 CPVT_WordRange Intersect(const CPVT_WordRange& that) const { in Intersect() argument
48 return CPVT_WordRange(); in Intersect()
51 return CPVT_WordRange(std::max(BeginPos, that.BeginPos), in Intersect()
56 inline bool operator==(const CPVT_WordRange& wr) const { argument
59 inline bool operator!=(const CPVT_WordRange& wr) const {
Dcpdf_variabletext.h94 void RearrangePart(const CPVT_WordRange& PlaceRange);
100 CPVT_WordPlace DeleteWords(const CPVT_WordRange& PlaceRange);
188 void ClearEmptySections(const CPVT_WordRange& PlaceRange);
190 void ClearWords(const CPVT_WordRange& PlaceRange);
194 CPVT_FloatRect Rearrange(const CPVT_WordRange& PlaceRange);
197 CPVT_FloatRect RearrangeSections(const CPVT_WordRange& PlaceRange);
Dcsection.h35 void ClearWords(const CPVT_WordRange& PlaceRange);
47 CPVT_WordPlace SearchWordPlace(float fx, const CPVT_WordRange& range) const;
Dcsection.cpp155 CPVT_WordRange(pLine->GetNextWordPlace(pLine->GetBeginWordPlace()), in SearchWordPlace()
176 CPVT_WordRange(pLine->GetNextWordPlace(pLine->GetBeginWordPlace()), in SearchWordPlace()
181 const CPVT_WordRange& range) const { in SearchWordPlace()
238 void CSection::ClearWords(const CPVT_WordRange& PlaceRange) { in ClearWords()
Dcpdf_variabletext.cpp264 const CPVT_WordRange& PlaceRange) { in DeleteWords()
288 DeleteWords(CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace())); in SetText()
749 void CPDF_VariableText::ClearEmptySections(const CPVT_WordRange& PlaceRange) { in ClearEmptySections()
774 void CPDF_VariableText::ClearWords(const CPVT_WordRange& PlaceRange) { in ClearWords()
775 CPVT_WordRange NewRange; in ClearWords()
822 Rearrange(CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace())); in RearrangeAll()
825 void CPDF_VariableText::RearrangePart(const CPVT_WordRange& PlaceRange) { in RearrangePart()
829 CPVT_FloatRect CPDF_VariableText::Rearrange(const CPVT_WordRange& PlaceRange) { in Rearrange()
835 CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace())); in Rearrange()
881 const CPVT_WordRange& PlaceRange) { in RearrangeSections()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_impl.h34 CPWL_EditImpl_LineRect(const CPVT_WordRange& wrLine, in CPWL_EditImpl_LineRect()
38 CPVT_WordRange m_wrLine;
48 void Push(const CPVT_WordRange& linerange, const CFX_FloatRect& rect);
64 explicit CPWL_EditImpl_Select(const CPVT_WordRange& range);
70 CPVT_WordRange ConvertToWordRange() const;
194 const CPVT_WordRange& wrSel,
205 CPVT_WordRange m_wrSel;
239 const CPVT_WordRange* pRange,
305 WideString GetRangeText(const CPVT_WordRange& range) const;
315 void RefreshWordRange(const CPVT_WordRange& wr);
[all …]
Dcpwl_edit.h113 CPVT_WordRange GetSelectWordRange() const;
120 CPVT_WordRange CombineWordRange(const CPVT_WordRange& wr1,
121 const CPVT_WordRange& wr2);
122 CPVT_WordRange GetLatinWordsRange(const CFX_PointF& point) const;
123 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace& place) const;
124 CPVT_WordRange GetSameWordsRange(const CPVT_WordPlace& place,
Dcpwl_edit.cpp276 CPVT_WordRange wrRange = m_pEdit->GetVisibleWordRange(); in DrawThisAppearance()
277 CPVT_WordRange* pRange = nullptr; in DrawThisAppearance()
378 CPVT_WordRange CPWL_Edit::GetSelectWordRange() const { in GetSelectWordRange()
380 return CPVT_WordRange(); in GetSelectWordRange()
390 return CPVT_WordRange(wpStart, wpEnd); in GetSelectWordRange()
658 CPVT_WordRange CPWL_Edit::CombineWordRange(const CPVT_WordRange& wr1, in CombineWordRange()
659 const CPVT_WordRange& wr2) { in CombineWordRange()
660 return CPVT_WordRange(std::min(wr1.BeginPos, wr2.BeginPos), in CombineWordRange()
664 CPVT_WordRange CPWL_Edit::GetLatinWordsRange(const CFX_PointF& point) const { in GetLatinWordsRange()
668 CPVT_WordRange CPWL_Edit::GetLatinWordsRange( in GetLatinWordsRange()
[all …]
Dcpwl_edit_impl.cpp182 void CPWL_EditImpl_Refresh::Push(const CPVT_WordRange& linerange, in Push()
377 const CPVT_WordRange& wrSel, in CFXEU_Clear()
432 const CPVT_WordRange* pRange, in DrawEdit()
439 CPVT_WordRange wrSelect = pEdit->GetSelectWordRange(); in DrawEdit()
741 WideString CPWL_EditImpl::GetRangeText(const CPVT_WordRange& range) const { in GetRangeText()
747 CPVT_WordRange wrTemp = range; in GetRangeText()
782 CPVT_WordRange CPWL_EditImpl::GetSelectWordRange() const { in GetSelectWordRange()
840 CPVT_WordRange CPWL_EditImpl::GetWholeWordRange() const { in GetWholeWordRange()
842 return CPVT_WordRange(m_pVT->GetBeginWordPlace(), m_pVT->GetEndWordPlace()); in GetWholeWordRange()
844 return CPVT_WordRange(); in GetWholeWordRange()
[all …]