Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcpdf_variabletext.h56 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 …]
Dcsection.h19 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 …]
Dcline.cpp13 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()
Dcpdf_variabletext.cpp93 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 …]
Dcpvt_wordrange.h16 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;
Dcsection.cpp39 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 …]
Dcline.h18 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;
Dcpvt_wordplace.h12 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() 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
Dcpvt_line.h18 CPVT_WordPlace lineplace;
19 CPVT_WordPlace lineEnd;
Dcpvt_section.h16 CPVT_WordPlace secplace;
Dcpvt_word.h20 CPVT_WordPlace WordPlace;
Dcpvt_generateap.cpp1113 CPVT_WordPlace oldplace; in GenerateEditAP()
1117 CPVT_WordPlace place = pIterator->GetAt(); in GenerateEditAP()
/external/pdfium/fpdfsdk/fxedit/
Dfxet_edit.h90 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 …]
Dfxet_edit.cpp142 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/
DPWL_Edit.h110 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 …]
DPWL_Edit.cpp483 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 …]
DPWL_ListBox.h20 struct CPVT_WordPlace;
40 const CPVT_WordPlace& place);
DPWL_EditCtrl.h21 struct CPVT_WordPlace;
102 const CPVT_WordPlace& place);
DPWL_EditCtrl.cpp327 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()