/external/pdfium/core/fpdfdoc/ |
D | cpdf_variabletext.h | 56 void SetAt(const CPVT_WordPlace& place); 57 const CPVT_WordPlace& GetAt() const { return m_CurPos; } in GetAt() 60 CPVT_WordPlace m_CurPos; 110 CPVT_WordPlace InsertWord(const CPVT_WordPlace& place, 114 CPVT_WordPlace InsertSection(const CPVT_WordPlace& place, 117 CPVT_WordPlace InsertText(const CPVT_WordPlace& place, const FX_WCHAR* text); 118 CPVT_WordPlace DeleteWords(const CPVT_WordRange& PlaceRange); 119 CPVT_WordPlace DeleteWord(const CPVT_WordPlace& place); 120 CPVT_WordPlace BackSpaceWord(const CPVT_WordPlace& place); 131 CPVT_WordPlace GetBeginWordPlace() const; [all …]
|
D | csection.h | 19 struct CPVT_WordPlace; 30 CPVT_WordPlace AddWord(const CPVT_WordPlace& place, 32 CPVT_WordPlace AddLine(const CPVT_LineInfo& lineinfo); 34 void ClearWord(const CPVT_WordPlace& place); 37 CPVT_WordPlace GetBeginWordPlace() const; 38 CPVT_WordPlace GetEndWordPlace() const; 39 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const; 40 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const; 41 void UpdateWordPlace(CPVT_WordPlace& place) const; 42 CPVT_WordPlace SearchWordPlace(const CFX_PointF& point) const; [all …]
|
D | cline.cpp | 13 CPVT_WordPlace CLine::GetBeginWordPlace() const { in GetBeginWordPlace() 14 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1); in GetBeginWordPlace() 17 CPVT_WordPlace CLine::GetEndWordPlace() const { in GetEndWordPlace() 18 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, in GetEndWordPlace() 22 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace() 24 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetPrevWordPlace() 27 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetPrevWordPlace() 31 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace& place) const { in GetNextWordPlace() 33 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetNextWordPlace() 36 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetNextWordPlace()
|
D | cpdf_variabletext.cpp | 93 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() 118 CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex + 1, -1); in NextLine() 122 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1); in NextLine() 133 CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex - 1, -1); in PrevLine() 139 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex - 1, in PrevLine() 150 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1); in NextSection() 159 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex - 1, 0, -1); in PrevSection() 205 line.lineplace = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex, -1); in GetLine() 222 section.secplace = CPVT_WordPlace(m_CurPos.nSecIndex, 0, -1); in GetSection() 267 CPVT_WordPlace place; in Initialize() [all …]
|
D | cpvt_wordrange.h | 16 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) { in CPVT_WordRange() 25 void Set(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) { in Set() 31 void SetBeginPos(const CPVT_WordPlace& begin) { in SetBeginPos() 36 void SetEndPos(const CPVT_WordPlace& end) { in SetEndPos() 49 CPVT_WordPlace place = EndPos; in SwapWordPlace() 55 CPVT_WordPlace BeginPos; 56 CPVT_WordPlace EndPos;
|
D | csection.cpp | 39 pLine->LinePlace = CPVT_WordPlace(SecPlace.nSecIndex, i, -1); in ResetLinePlace() 44 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place, in AddWord() 57 CPVT_WordPlace CSection::AddLine(const CPVT_LineInfo& lineinfo) { in AddLine() 58 return CPVT_WordPlace(SecPlace.nSecIndex, m_LineArray.Add(lineinfo), -1); in AddLine() 72 CPVT_WordPlace CSection::GetBeginWordPlace() const { in GetBeginWordPlace() 79 CPVT_WordPlace CSection::GetEndWordPlace() const { in GetEndWordPlace() 86 CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace() 95 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1); in GetPrevWordPlace() 108 CPVT_WordPlace CSection::GetNextWordPlace(const CPVT_WordPlace& place) const { in GetNextWordPlace() 127 void CSection::UpdateWordPlace(CPVT_WordPlace& place) const { in UpdateWordPlace() [all …]
|
D | cline.h | 18 CPVT_WordPlace GetBeginWordPlace() const; 19 CPVT_WordPlace GetEndWordPlace() const; 20 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const; 21 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const; 22 CPVT_WordPlace LinePlace;
|
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() argument 25 bool operator==(const CPVT_WordPlace& wp) const { argument 30 bool operator!=(const CPVT_WordPlace& wp) const { return !(*this == wp); } 32 inline int32_t WordCmp(const CPVT_WordPlace& wp) const { in WordCmp() argument 48 inline int32_t LineCmp(const CPVT_WordPlace& wp) const { in LineCmp() argument 60 inline int32_t SecCmp(const CPVT_WordPlace& wp) const { in SecCmp() argument
|
D | cpvt_line.h | 18 CPVT_WordPlace lineplace; 19 CPVT_WordPlace lineEnd;
|
D | cpvt_section.h | 16 CPVT_WordPlace secplace;
|
D | cpvt_word.h | 20 CPVT_WordPlace WordPlace;
|
D | cpvt_generateap.cpp | 1113 CPVT_WordPlace oldplace; in GenerateEditAP() 1117 CPVT_WordPlace place = pIterator->GetAt(); in GenerateEditAP()
|
/external/pdfium/fpdfsdk/fxedit/ |
D | fxet_edit.h | 90 CFX_Edit_Select(const CPVT_WordPlace& begin, const CPVT_WordPlace& end); 94 void Set(const CPVT_WordPlace& begin, const CPVT_WordPlace& end); 95 void SetBeginPos(const CPVT_WordPlace& begin); 96 void SetEndPos(const CPVT_WordPlace& end); 101 CPVT_WordPlace BeginPos; 102 CPVT_WordPlace EndPos; 176 const CPVT_WordPlace& wpOldPlace, 177 const CPVT_WordPlace& wpNewPlace, 190 CPVT_WordPlace m_wpOld; 191 CPVT_WordPlace m_wpNew; [all …]
|
D | fxet_edit.cpp | 142 void CFX_Edit_Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() 146 const CPVT_WordPlace& CFX_Edit_Iterator::GetAt() const { in GetAt() 377 const CPVT_WordPlace& wpOldPlace, in CFXEU_InsertWord() 378 const CPVT_WordPlace& wpNewPlace, in CFXEU_InsertWord() 411 const CPVT_WordPlace& wpOldPlace, in CFXEU_InsertReturn() 412 const CPVT_WordPlace& wpNewPlace, in CFXEU_InsertReturn() 445 const CPVT_WordPlace& wpOldPlace, in CFXEU_Backspace() 446 const CPVT_WordPlace& wpNewPlace, in CFXEU_Backspace() 482 const CPVT_WordPlace& wpOldPlace, in CFXEU_Delete() 483 const CPVT_WordPlace& wpNewPlace, in CFXEU_Delete() [all …]
|
/external/pdfium/fpdfsdk/pdfwindow/ |
D | PWL_Edit.h | 110 void OnInsertWord(const CPVT_WordPlace& place, 111 const CPVT_WordPlace& oldplace); 112 void OnInsertReturn(const CPVT_WordPlace& place, 113 const CPVT_WordPlace& oldplace); 114 void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 115 void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 116 void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 117 void OnInsertText(const CPVT_WordPlace& place, 118 const CPVT_WordPlace& oldplace); 127 CFX_PointF GetWordRightBottomPoint(const CPVT_WordPlace& wpWord); [all …]
|
D | PWL_Edit.cpp | 483 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStart); in GetSelectWordRange() 484 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEnd); in GetSelectWordRange() 512 CFX_PointF CPWL_Edit::GetWordRightBottomPoint(const CPVT_WordPlace& wpWord) { in GetWordRightBottomPoint() 514 CPVT_WordPlace wpOld = pIterator->GetAt(); in GetWordRightBottomPoint() 744 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place, in OnInsertReturn() 745 const CPVT_WordPlace& oldplace) { in OnInsertReturn() 752 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place, in OnBackSpace() 753 const CPVT_WordPlace& oldplace) { in OnBackSpace() 760 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place, in OnDelete() 761 const CPVT_WordPlace& oldplace) { in OnDelete() [all …]
|
D | PWL_ListBox.h | 20 struct CPVT_WordPlace; 40 const CPVT_WordPlace& place);
|
D | PWL_EditCtrl.h | 21 struct CPVT_WordPlace; 102 const CPVT_WordPlace& place);
|
D | PWL_EditCtrl.cpp | 327 CPVT_WordPlace wpTemp = m_pEdit->GetCaretWordPlace(); in SetEditCaret() 534 const CPVT_WordPlace& place) { in IOnSetCaret() 567 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStartChar); in GetText() 568 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEndChar); in GetText()
|