Searched refs:CPVT_WordRange (Results 1 – 9 of 9) sorted by relevance
/external/pdfium/core/fpdfdoc/ |
D | cpvt_wordrange.h | 16 struct CPVT_WordRange { struct 17 CPVT_WordRange() = default; 19 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) in CPVT_WordRange() argument 25 inline bool operator==(const CPVT_WordRange& wr) const { argument 28 inline bool operator!=(const CPVT_WordRange& wr) const {
|
D | cpdf_variabletext.h | 94 void RearrangePart(const CPVT_WordRange& PlaceRange); 100 CPVT_WordPlace DeleteWords(const CPVT_WordRange& PlaceRange); 183 void ClearEmptySections(const CPVT_WordRange& PlaceRange); 185 void ClearWords(const CPVT_WordRange& PlaceRange); 189 CPVT_FloatRect Rearrange(const CPVT_WordRange& PlaceRange); 192 CPVT_FloatRect RearrangeSections(const CPVT_WordRange& PlaceRange);
|
D | csection.h | 34 void ClearWords(const CPVT_WordRange& PlaceRange); 46 CPVT_WordPlace SearchWordPlace(float fx, const CPVT_WordRange& range) const;
|
D | csection.cpp | 151 CPVT_WordRange(pLine->GetNextWordPlace(pLine->GetBeginWordPlace()), in SearchWordPlace() 172 CPVT_WordRange(pLine->GetNextWordPlace(pLine->GetBeginWordPlace()), in SearchWordPlace() 177 const CPVT_WordRange& range) const { in SearchWordPlace() 232 void CSection::ClearWords(const CPVT_WordRange& PlaceRange) { in ClearWords()
|
D | cpdf_variabletext.cpp | 252 const CPVT_WordRange& PlaceRange) { in DeleteWords() 276 DeleteWords(CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace())); in SetText() 695 void CPDF_VariableText::ClearEmptySections(const CPVT_WordRange& PlaceRange) { in ClearEmptySections() 720 void CPDF_VariableText::ClearWords(const CPVT_WordRange& PlaceRange) { in ClearWords() 721 CPVT_WordRange NewRange; in ClearWords() 768 Rearrange(CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace())); in RearrangeAll() 771 void CPDF_VariableText::RearrangePart(const CPVT_WordRange& PlaceRange) { in RearrangePart() 775 CPVT_FloatRect CPDF_VariableText::Rearrange(const CPVT_WordRange& PlaceRange) { in Rearrange() 781 CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace())); in Rearrange() 827 const CPVT_WordRange& PlaceRange) { in RearrangeSections()
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_edit.h | 115 CPVT_WordRange GetSelectWordRange() const; 121 CPVT_WordRange CombineWordRange(const CPVT_WordRange& wr1, 122 const CPVT_WordRange& wr2); 123 CPVT_WordRange GetLatinWordsRange(const CFX_PointF& point) const; 124 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace& place) const; 125 CPVT_WordRange GetSameWordsRange(const CPVT_WordPlace& place,
|
D | cpwl_edit_impl.h | 34 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; 218 const CPVT_WordRange& wrSel, 229 CPVT_WordRange m_wrSel; 263 const CPVT_WordRange* pRange, 330 WideString GetRangeText(const CPVT_WordRange& range) const; 339 void RefreshWordRange(const CPVT_WordRange& wr); [all …]
|
D | cpwl_edit.cpp | 234 CPVT_WordRange wrRange = m_pEdit->GetVisibleWordRange(); in DrawThisAppearance() 235 CPVT_WordRange* pRange = nullptr; in DrawThisAppearance() 330 CPVT_WordRange CPWL_Edit::GetSelectWordRange() const { in GetSelectWordRange() 332 return CPVT_WordRange(); in GetSelectWordRange() 342 return CPVT_WordRange(wpStart, wpEnd); in GetSelectWordRange() 604 CPVT_WordRange CPWL_Edit::CombineWordRange(const CPVT_WordRange& wr1, in CombineWordRange() 605 const CPVT_WordRange& wr2) { in CombineWordRange() 606 return CPVT_WordRange(std::min(wr1.BeginPos, wr2.BeginPos), in CombineWordRange() 610 CPVT_WordRange CPWL_Edit::GetLatinWordsRange(const CFX_PointF& point) const { in GetLatinWordsRange() 614 CPVT_WordRange CPWL_Edit::GetLatinWordsRange( in GetLatinWordsRange() [all …]
|
D | cpwl_edit_impl.cpp | 163 void CPWL_EditImpl_Refresh::Push(const CPVT_WordRange& linerange, in Push() 401 const CPVT_WordRange& wrSel, in CFXEU_Clear() 460 const CPVT_WordRange* pRange, in DrawEdit() 467 CPVT_WordRange wrSelect = pEdit->GetSelectWordRange(); in DrawEdit() 767 WideString CPWL_EditImpl::GetRangeText(const CPVT_WordRange& range) const { in GetRangeText() 773 CPVT_WordRange wrTemp = range; in GetRangeText() 808 CPVT_WordRange CPWL_EditImpl::GetSelectWordRange() const { in GetSelectWordRange() 862 CPVT_WordRange CPWL_EditImpl::GetWholeWordRange() const { in GetWholeWordRange() 864 return CPVT_WordRange(m_pVT->GetBeginWordPlace(), m_pVT->GetEndWordPlace()); in GetWholeWordRange() 866 return CPVT_WordRange(); in GetWholeWordRange() [all …]
|