/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); 114 CPVT_WordPlace GetBeginWordPlace() const; 115 CPVT_WordPlace GetEndWordPlace() const; [all …]
|
D | csection.h | 23 struct CPVT_WordPlace; 31 CPVT_WordPlace AddWord(const CPVT_WordPlace& place, 33 CPVT_WordPlace AddLine(const CPVT_LineInfo& lineinfo); 35 void ClearWord(const CPVT_WordPlace& place); 38 CPVT_WordPlace GetBeginWordPlace() const; 39 CPVT_WordPlace GetEndWordPlace() const; 40 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const; 41 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const; 42 void UpdateWordPlace(CPVT_WordPlace& place) const; 43 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 | 96 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() 124 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex + 1, -1); in NextLine() 129 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1); in NextLine() 162 line.lineplace = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex, -1); in GetLine() 189 CPVT_WordPlace place; in Initialize() 204 CPVT_WordPlace CPDF_VariableText::InsertWord(const CPVT_WordPlace& place, in InsertWord() 213 CPVT_WordPlace newplace = place; in InsertWord() 221 CPVT_WordPlace CPDF_VariableText::InsertSection(const CPVT_WordPlace& place) { in InsertSection() 230 CPVT_WordPlace wordplace = place; in InsertSection() 236 CPVT_WordPlace NewPlace(wordplace.nSecIndex + 1, 0, -1); in InsertSection() [all …]
|
D | cpvt_wordplace.h | 12 struct CPVT_WordPlace { struct 13 CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1), nWordIndex(-1) {} in CPVT_WordPlace() argument 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 | csection.cpp | 26 pLine->LinePlace = CPVT_WordPlace(SecPlace.nSecIndex, i, -1); in ResetLinePlace() 31 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place, in AddWord() 40 CPVT_WordPlace CSection::AddLine(const CPVT_LineInfo& lineinfo) { in AddLine() 42 return CPVT_WordPlace(SecPlace.nSecIndex, m_LineArray.size() - 1, -1); in AddLine() 55 CPVT_WordPlace CSection::GetBeginWordPlace() const { in GetBeginWordPlace() 61 CPVT_WordPlace CSection::GetEndWordPlace() const { in GetEndWordPlace() 67 CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace() 76 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1); in GetPrevWordPlace() 87 CPVT_WordPlace CSection::GetNextWordPlace(const CPVT_WordPlace& place) const { in GetNextWordPlace() 104 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_wordrange.h | 19 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) in CPVT_WordRange() 37 CPVT_WordPlace BeginPos; 38 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 | 108 CPVT_WordPlace oldplace; in GenerateEditAP() 112 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; 116 const CPVT_WordPlace& wpOldPlace, 117 const CPVT_WordPlace& wpNewPlace, 129 CPVT_WordPlace m_wpOld; 130 CPVT_WordPlace m_wpNew; 138 const CPVT_WordPlace& wpOldPlace, 139 const CPVT_WordPlace& wpNewPlace); [all …]
|
D | cpwl_edit.h | 99 void OnInsertWord(const CPVT_WordPlace& place, 100 const CPVT_WordPlace& oldplace); 101 void OnInsertReturn(const CPVT_WordPlace& place, 102 const CPVT_WordPlace& oldplace); 103 void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 104 void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 105 void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 106 void OnInsertText(const CPVT_WordPlace& place, 107 const CPVT_WordPlace& oldplace); 119 CFX_PointF GetWordRightBottomPoint(const CPVT_WordPlace& wpWord); [all …]
|
D | cpwl_edit.cpp | 339 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStart); in GetSelectWordRange() 340 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEnd); in GetSelectWordRange() 345 CFX_PointF CPWL_Edit::GetWordRightBottomPoint(const CPVT_WordPlace& wpWord) { in GetWordRightBottomPoint() 347 CPVT_WordPlace wpOld = pIterator->GetAt(); in GetWordRightBottomPoint() 556 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place, in OnInsertReturn() 557 const CPVT_WordPlace& oldplace) { in OnInsertReturn() 564 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place, in OnBackSpace() 565 const CPVT_WordPlace& oldplace) { in OnBackSpace() 572 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place, in OnDelete() 573 const CPVT_WordPlace& oldplace) { in OnDelete() [all …]
|
D | cpwl_edit_impl.cpp | 94 void CPWL_EditImpl_Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() 98 const CPVT_WordPlace& CPWL_EditImpl_Iterator::GetAt() const { in GetAt() 258 const CPVT_WordPlace& wpOldPlace, in CFXEU_InsertWord() 259 const CPVT_WordPlace& wpNewPlace, in CFXEU_InsertWord() 287 const CPVT_WordPlace& wpOldPlace, in CFXEU_InsertReturn() 288 const CPVT_WordPlace& wpNewPlace) in CFXEU_InsertReturn() 335 const CPVT_WordPlace& wpOldPlace, in CFXEU_Backspace() 336 const CPVT_WordPlace& wpNewPlace, in CFXEU_Backspace() 367 const CPVT_WordPlace& wpOldPlace, in CFXEU_Delete() 368 const CPVT_WordPlace& wpNewPlace, in CFXEU_Delete() [all …]
|
D | cpwl_edit_ctrl.h | 18 struct CPVT_WordPlace;
|
D | cpwl_list_box.h | 19 struct CPVT_WordPlace;
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_appstream.cpp | 597 CPVT_WordPlace oldplace; in GetEditAppStream() 600 CPVT_WordPlace place = pIterator->GetAt(); in GetEditAppStream()
|