/external/pdfium/core/fpdfdoc/ |
D | cpdf_variabletext.h | 43 void SetAt(const CPVT_WordPlace& place); 44 const CPVT_WordPlace& GetWordPlace() const { return m_CurPos; } in GetWordPlace() 47 CPVT_WordPlace m_CurPos; 96 CPVT_WordPlace InsertWord(const CPVT_WordPlace& place, 99 CPVT_WordPlace InsertSection(const CPVT_WordPlace& place); 100 CPVT_WordPlace DeleteWords(const CPVT_WordRange& PlaceRange); 101 CPVT_WordPlace DeleteWord(const CPVT_WordPlace& place); 102 CPVT_WordPlace BackSpaceWord(const CPVT_WordPlace& place); 115 CPVT_WordPlace GetBeginWordPlace() const; 116 CPVT_WordPlace GetEndWordPlace() const; [all …]
|
D | csection.h | 23 struct CPVT_WordPlace; 32 CPVT_WordPlace AddWord(const CPVT_WordPlace& place, 34 CPVT_WordPlace AddLine(const CPVT_LineInfo& lineinfo); 36 void ClearWord(const CPVT_WordPlace& place); 39 CPVT_WordPlace GetBeginWordPlace() const; 40 CPVT_WordPlace GetEndWordPlace() const; 41 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const; 42 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const; 43 void UpdateWordPlace(CPVT_WordPlace& place) const; 44 CPVT_WordPlace SearchWordPlace(const CFX_PointF& point) const; [all …]
|
D | cline.cpp | 15 CPVT_WordPlace CLine::GetBeginWordPlace() const { in GetBeginWordPlace() 16 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1); in GetBeginWordPlace() 19 CPVT_WordPlace CLine::GetEndWordPlace() const { in GetEndWordPlace() 20 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, in GetEndWordPlace() 24 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace() 26 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetPrevWordPlace() 29 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetPrevWordPlace() 33 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace& place) const { in GetNextWordPlace() 35 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetNextWordPlace() 38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetNextWordPlace()
|
D | cpdf_variabletext.cpp | 95 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() 123 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex + 1, -1); in NextLine() 128 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1); in NextLine() 161 line.lineplace = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex, -1); in GetLine() 201 CPVT_WordPlace place; in Initialize() 216 CPVT_WordPlace CPDF_VariableText::InsertWord(const CPVT_WordPlace& place, in InsertWord() 225 CPVT_WordPlace newplace = place; in InsertWord() 233 CPVT_WordPlace CPDF_VariableText::InsertSection(const CPVT_WordPlace& place) { in InsertSection() 242 CPVT_WordPlace wordplace = place; in InsertSection() 248 CPVT_WordPlace NewPlace(wordplace.nSecIndex + 1, 0, -1); in InsertSection() [all …]
|
D | csection.cpp | 29 pLine->LinePlace = CPVT_WordPlace(SecPlace.nSecIndex, i, -1); in ResetLinePlace() 34 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place, in AddWord() 43 CPVT_WordPlace CSection::AddLine(const CPVT_LineInfo& lineinfo) { in AddLine() 45 return CPVT_WordPlace(SecPlace.nSecIndex, m_LineArray.size() - 1, -1); in AddLine() 58 CPVT_WordPlace CSection::GetBeginWordPlace() const { in GetBeginWordPlace() 64 CPVT_WordPlace CSection::GetEndWordPlace() const { in GetEndWordPlace() 70 CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace() 79 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1); in GetPrevWordPlace() 90 CPVT_WordPlace CSection::GetNextWordPlace(const CPVT_WordPlace& place) const { in GetNextWordPlace() 107 void CSection::UpdateWordPlace(CPVT_WordPlace& place) const { in UpdateWordPlace() [all …]
|
D | cpvt_wordplace.h | 12 struct CPVT_WordPlace { struct 13 CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1), nWordIndex(-1) {} in CPVT_WordPlace() function 15 CPVT_WordPlace(int32_t other_nSecIndex, in CPVT_WordPlace() function 34 inline bool operator==(const CPVT_WordPlace& wp) const { argument 38 inline bool operator!=(const CPVT_WordPlace& wp) const { 41 inline bool operator<(const CPVT_WordPlace& wp) const { 48 inline bool operator>(const CPVT_WordPlace& wp) const { 55 inline bool operator<=(const CPVT_WordPlace& wp) const { 58 inline bool operator>=(const CPVT_WordPlace& wp) const { 62 inline int32_t LineCmp(const CPVT_WordPlace& wp) const { in LineCmp() argument
|
D | cline.h | 19 CPVT_WordPlace GetBeginWordPlace() const; 20 CPVT_WordPlace GetEndWordPlace() const; 21 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const; 22 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const; 23 CPVT_WordPlace LinePlace;
|
D | cpvt_wordrange.h | 19 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) in CPVT_WordRange() 29 void Set(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) { in Set() 35 void SetBeginPos(const CPVT_WordPlace& begin) { in SetBeginPos() 40 void SetEndPos(const CPVT_WordPlace& end) { in SetEndPos() 68 CPVT_WordPlace BeginPos; 69 CPVT_WordPlace EndPos;
|
D | cpvt_line.h | 18 CPVT_WordPlace lineplace; 19 CPVT_WordPlace lineEnd;
|
D | cpvt_word.h | 19 CPVT_WordPlace WordPlace;
|
D | cpvt_generateap.cpp | 98 CPVT_WordPlace oldplace; in GenerateEditAP() 102 CPVT_WordPlace place = pIterator->GetWordPlace(); in GenerateEditAP()
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_edit_impl.h | 67 void Set(const CPVT_WordPlace& begin, const CPVT_WordPlace& end); 68 void SetEndPos(const CPVT_WordPlace& end); 73 CPVT_WordPlace BeginPos; 74 CPVT_WordPlace EndPos; 108 const CPVT_WordPlace& wpOldPlace, 109 const CPVT_WordPlace& wpNewPlace, 121 CPVT_WordPlace m_wpOld; 122 CPVT_WordPlace m_wpNew; 130 const CPVT_WordPlace& wpOldPlace, 131 const CPVT_WordPlace& wpNewPlace); [all …]
|
D | cpwl_edit.h | 97 void OnInsertWord(const CPVT_WordPlace& place, 98 const CPVT_WordPlace& oldplace); 99 void OnInsertReturn(const CPVT_WordPlace& place, 100 const CPVT_WordPlace& oldplace); 101 void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 102 void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 103 void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 104 void OnInsertText(const CPVT_WordPlace& place, 105 const CPVT_WordPlace& oldplace); 118 CFX_PointF GetWordRightBottomPoint(const CPVT_WordPlace& wpWord); [all …]
|
D | cpwl_edit.cpp | 387 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStart); in GetSelectWordRange() 388 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEnd); in GetSelectWordRange() 393 CFX_PointF CPWL_Edit::GetWordRightBottomPoint(const CPVT_WordPlace& wpWord) { in GetWordRightBottomPoint() 395 CPVT_WordPlace wpOld = pIterator->GetAt(); in GetWordRightBottomPoint() 610 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place, in OnInsertReturn() 611 const CPVT_WordPlace& oldplace) { in OnInsertReturn() 618 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place, in OnBackSpace() 619 const CPVT_WordPlace& oldplace) { in OnBackSpace() 626 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place, in OnDelete() 627 const CPVT_WordPlace& oldplace) { in OnDelete() [all …]
|
D | cpwl_edit_impl.cpp | 109 void CPWL_EditImpl_Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() 113 const CPVT_WordPlace& CPWL_EditImpl_Iterator::GetAt() const { in GetAt() 267 const CPVT_WordPlace& wpOldPlace, in CFXEU_InsertWord() 268 const CPVT_WordPlace& wpNewPlace, in CFXEU_InsertWord() 294 const CPVT_WordPlace& wpOldPlace, in CFXEU_InsertReturn() 295 const CPVT_WordPlace& wpNewPlace) in CFXEU_InsertReturn() 315 const CPVT_WordPlace& wpOldPlace, in CFXEU_Backspace() 316 const CPVT_WordPlace& wpNewPlace, in CFXEU_Backspace() 345 const CPVT_WordPlace& wpOldPlace, in CFXEU_Delete() 346 const CPVT_WordPlace& wpNewPlace, in CFXEU_Delete() [all …]
|
D | cpwl_edit_ctrl.h | 17 struct CPVT_WordPlace;
|
D | cpwl_list_box.h | 19 struct CPVT_WordPlace;
|
D | cpwl_appstream.cpp | 593 CPVT_WordPlace oldplace; in GetEditAppStream() 596 CPVT_WordPlace place = pIterator->GetAt(); in GetEditAppStream()
|