/external/pdfium/core/include/fpdfdoc/ |
D | fpdf_vt.h | 20 struct CPVT_WordPlace; 23 struct CPVT_WordPlace { struct 25 CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1), nWordIndex(-1) in CPVT_WordPlace() argument 29 CPVT_WordPlace(FX_INT32 nSecIndex, FX_INT32 nLineIndex, FX_INT32 nWordIndex) in CPVT_WordPlace() argument 41 FX_BOOL operator == (const CPVT_WordPlace & wp) const argument 46 FX_BOOL operator != (const CPVT_WordPlace & wp) const 51 inline FX_INT32 WordCmp(const CPVT_WordPlace & wp) const in WordCmp() argument 74 inline FX_INT32 LineCmp(const CPVT_WordPlace & wp) const in LineCmp() argument 91 inline FX_INT32 SecCmp(const CPVT_WordPlace & wp) const in SecCmp() argument 114 CPVT_WordRange(const CPVT_WordPlace & begin, const CPVT_WordPlace & end) in CPVT_WordRange() argument [all …]
|
/external/pdfium/core/src/fpdfdoc/ |
D | pdf_vt.h | 223 CPVT_WordPlace GetBeginWordPlace() const; 224 CPVT_WordPlace GetEndWordPlace() const; 225 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace & place) const; 226 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace & place) const; 227 CPVT_WordPlace LinePlace; 290 CPVT_WordPlace AddWord(const CPVT_WordPlace & place, const CPVT_WordInfo & wordinfo); 291 CPVT_WordPlace AddLine(const CPVT_LineInfo & lineinfo); 293 void ClearWord(const CPVT_WordPlace & place); 296 CPVT_WordPlace GetBeginWordPlace() const; 297 CPVT_WordPlace GetEndWordPlace() const; [all …]
|
D | doc_vt.cpp | 25 CPVT_WordPlace CLine::GetBeginWordPlace() const in GetBeginWordPlace() 27 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1); in GetBeginWordPlace() 29 CPVT_WordPlace CLine::GetEndWordPlace() const in GetEndWordPlace() 31 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, m_LineInfo.nEndWordIndex); in GetEndWordPlace() 33 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace & place) const in GetPrevWordPlace() 36 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nEndWordIndex); in GetPrevWordPlace() 38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex - 1); in GetPrevWordPlace() 40 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace & place) const in GetNextWordPlace() 43 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nBeginWordIndex); in GetNextWordPlace() 45 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex + 1); in GetNextWordPlace() [all …]
|
D | doc_ap.cpp | 650 CPVT_WordPlace oldplace; in GenerateEditAP() 652 CPVT_WordPlace place = pIterator->GetAt(); in GenerateEditAP()
|
/external/pdfium/fpdfsdk/include/fxedit/ |
D | fxet_edit.h | 233 CFX_Edit_Select(const CPVT_WordPlace & begin,const CPVT_WordPlace & end) in CFX_Edit_Select() 254 void Set(const CPVT_WordPlace & begin,const CPVT_WordPlace & end) in Set() 260 void SetBeginPos(const CPVT_WordPlace & begin) in SetBeginPos() 265 void SetEndPos(const CPVT_WordPlace & end) in SetEndPos() 280 CPVT_WordPlace BeginPos,EndPos; 364 …CFXEU_InsertWord(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPlace & wpNew… 374 CPVT_WordPlace m_wpOld; 375 CPVT_WordPlace m_wpNew; 384 …CFXEU_InsertReturn(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPlace & wpN… 394 CPVT_WordPlace m_wpOld; [all …]
|
D | fx_edit.h | 34 struct CPVT_WordPlace; 96 …OOL bVisible,const CPDF_Point & ptHead,const CPDF_Point & ptFoot, const CPVT_WordPlace& place) = 0; 111 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 113 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 115 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 117 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 119 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 121 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 123 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 156 virtual void SetAt(const CPVT_WordPlace & place) = 0; [all …]
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
D | PWL_Edit.h | 104 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 105 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 106 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 107 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 108 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 109 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 110 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 120 CPDF_Point GetWordRightBottomPoint(const CPVT_WordPlace& wpWord); 124 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace & place) const; 125 CPVT_WordRange GetArabicWordsRange(const CPVT_WordPlace & place) const; [all …]
|
D | PWL_EditCtrl.h | 19 struct CPVT_WordPlace; 49 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnInsertWord() 50 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnInsertReturn() 51 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnBackSpace() 52 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnDelete() 53 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnClear() 54 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnInsertText() 55 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnSetText() 157 …FX_BOOL bVisible,const CPDF_Point & ptHead,const CPDF_Point & ptFoot, const CPVT_WordPlace& place);
|
D | PWL_ListBox.h | 32 …FX_BOOL bVisible,const CPDF_Point & ptHead,const CPDF_Point & ptFoot, const CPVT_WordPlace& place);
|
/external/pdfium/fpdfsdk/src/fxedit/ |
D | fxet_edit.cpp | 115 void CFX_Edit_Iterator::SetAt(const CPVT_WordPlace & place) in SetAt() 122 const CPVT_WordPlace & CFX_Edit_Iterator::GetAt() const in GetAt() 551 …nsertWord::CFXEU_InsertWord(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPl… in CFXEU_InsertWord() 585 …tReturn::CFXEU_InsertReturn(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPl… in CFXEU_InsertReturn() 626 …_Backspace::CFXEU_Backspace(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPl… in CFXEU_Backspace() 673 CFXEU_Delete::CFXEU_Delete(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPlac… in CFXEU_Delete() 756 …_ClearRich::CFXEU_ClearRich(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPl… in CFXEU_ClearRich() 809 …nsertText::CFXEU_InsertText(CFX_Edit * pEdit, const CPVT_WordPlace & wpOldPlace, const CPVT_WordPl… in CFXEU_InsertText() 852 CFXEU_SetSecProps::CFXEU_SetSecProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E e… in CFXEU_SetSecProps() 900 CFXEU_SetWordProps::CFXEU_SetWordProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E… in CFXEU_SetWordProps() [all …]
|
D | fxet_pageobjs.cpp | 108 CPVT_WordPlace place = pIterator->GetAt(); in DrawUnderline() 178 CPVT_WordPlace oldplace; in DrawEdit() 182 CPVT_WordPlace place = pIterator->GetAt(); in DrawEdit() 312 CPVT_WordPlace oldplace; in DrawRichEdit() 316 CPVT_WordPlace place = pIterator->GetAt(); in DrawRichEdit() 471 CPVT_WordPlace oldplace; in GeneratePageObjects() 475 CPVT_WordPlace place = pIterator->GetAt(); in GeneratePageObjects() 533 CPVT_WordPlace oldplace; in GenerateRichPageObjects() 537 CPVT_WordPlace place = pIterator->GetAt(); in GenerateRichPageObjects() 620 CPVT_WordPlace oldplace; in GenerateUnderlineObjects() [all …]
|
D | fxet_ap.cpp | 83 CPVT_WordPlace oldplace; in GetEditAppearanceStream() 87 CPVT_WordPlace place = pIterator->GetAt(); in GetEditAppearanceStream() 205 CPVT_WordPlace place = pIterator->GetAt(); in GetSelectAppearanceStream()
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
D | PWL_Edit.cpp | 769 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStart); in GetSelectWordRange() 770 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEnd); in GetSelectWordRange() 799 CPDF_Point CPWL_Edit::GetWordRightBottomPoint(const CPVT_WordPlace& wpWord) in GetWordRightBottomPoint() 805 CPVT_WordPlace wpOld = pIterator->GetAt(); in GetWordRightBottomPoint() 1094 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnInsertReturn() 1107 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnBackSpace() 1120 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnDelete() 1133 void CPWL_Edit::OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnClear() 1146 void CPWL_Edit::OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnInsertWord() 1159 void CPWL_Edit::OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnSetText() [all …]
|
D | PWL_EditCtrl.cpp | 384 CPVT_WordPlace wpTemp = m_pEdit->GetCaretWordPlace(); in SetEditCaret() 670 …X_BOOL bVisible, const CPDF_Point & ptHead, const CPDF_Point & ptFoot, const CPVT_WordPlace& place) in IOnSetCaret() 716 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStartChar); in GetText() 717 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEndChar); in GetText()
|
D | PWL_Utils.cpp | 509 CPVT_WordPlace place = pIterator->GetAt(); in GetWordSpellCheckAppearanceStream() 573 CPVT_WordPlace wpWordStart; in GetSpellCheckAppStream() 576 CPVT_WordPlace oldplace; in GetSpellCheckAppStream() 579 CPVT_WordPlace place = pIterator->GetAt(); in GetSpellCheckAppStream() 1649 CPVT_WordPlace place = pIterator->GetAt(); in AddSpellCheckObj() 1704 CPVT_WordPlace wpWordStart; in DrawEditSpellCheck() 1732 CPVT_WordPlace oldplace; in DrawEditSpellCheck() 1736 CPVT_WordPlace place = pIterator->GetAt(); in DrawEditSpellCheck()
|