Home
last modified time | relevance | path

Searched refs:CPVT_WordPlace (Results 1 – 18 of 18) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpdf_variabletext.h43 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 …]
Dcsection.h23 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 …]
Dcline.cpp15 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()
Dcpdf_variabletext.cpp95 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 …]
Dcsection.cpp29 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 …]
Dcpvt_wordplace.h12 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
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
Dcline.h19 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;
Dcpvt_wordrange.h19 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;
Dcpvt_line.h18 CPVT_WordPlace lineplace;
19 CPVT_WordPlace lineEnd;
Dcpvt_word.h19 CPVT_WordPlace WordPlace;
Dcpvt_generateap.cpp98 CPVT_WordPlace oldplace; in GenerateEditAP()
102 CPVT_WordPlace place = pIterator->GetWordPlace(); in GenerateEditAP()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_impl.h67 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 …]
Dcpwl_edit.h97 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 …]
Dcpwl_edit.cpp387 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 …]
Dcpwl_edit_impl.cpp109 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 …]
Dcpwl_edit_ctrl.h17 struct CPVT_WordPlace;
Dcpwl_list_box.h19 struct CPVT_WordPlace;
Dcpwl_appstream.cpp593 CPVT_WordPlace oldplace; in GetEditAppStream()
596 CPVT_WordPlace place = pIterator->GetAt(); in GetEditAppStream()