Home
last modified time | relevance | path

Searched refs:BeginPos (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpvt_wordrange.h21 BeginPos.Default(); in Default()
26 BeginPos = begin; in Set()
32 BeginPos = begin; in SetBeginPos()
41 bool IsExist() const { return BeginPos != EndPos; } in IsExist()
44 return wr.BeginPos != BeginPos || wr.EndPos != EndPos;
48 if (BeginPos.WordCmp(EndPos) > 0) { in SwapWordPlace()
50 EndPos = BeginPos; in SwapWordPlace()
51 BeginPos = place; in SwapWordPlace()
55 CPVT_WordPlace BeginPos; member
Dcsection.cpp211 CPVT_WordPlace wordplace = range.BeginPos; in SearchWordPlace()
216 int32_t nLeft = range.BeginPos.nWordIndex; in SearchWordPlace()
274 if (PlaceRange.BeginPos.WordCmp(SecBeginPos) >= 0) { in ClearWords()
276 ClearMidWords(PlaceRange.BeginPos.nWordIndex, in ClearWords()
279 ClearRightWords(PlaceRange.BeginPos.nWordIndex); in ClearWords()
Dcpdf_variabletext.cpp383 if (PlaceRange.BeginPos.nSecIndex != PlaceRange.EndPos.nSecIndex) { in DeleteWords()
386 LinkLatterSection(PlaceRange.BeginPos); in DeleteWords()
388 return PlaceRange.BeginPos; in DeleteWords()
893 s > PlaceRange.BeginPos.nSecIndex; s--) { in ClearEmptySections()
918 NewRange.BeginPos = AdjustLineHeader(PlaceRange.BeginPos, true); in ClearWords()
920 for (int32_t s = NewRange.EndPos.nSecIndex; s >= NewRange.BeginPos.nSecIndex; in ClearWords()
1029 int32_t nSSecIndex = PlaceRange.BeginPos.nSecIndex; in RearrangeSections()
/external/pdfium/fpdfsdk/fxedit/
Dfxet_edit.cpp530 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos); in Redo()
538 m_pEdit->SetCaret(m_wrSel.BeginPos); in Undo()
540 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos); in Undo()
581 pIterator->SetAt(pRange->BeginPos); in GetEditAppearanceStream()
696 pIterator->SetAt(pRange->BeginPos); in GetSelectAppearanceStream()
753 pIterator->SetAt(pRange->BeginPos); in DrawEdit()
764 bSelect = place.WordCmp(wrSelect.BeginPos) > 0 && in DrawEdit()
1007 if (m_SelState.BeginPos.WordCmp(m_SelState.EndPos) < 0) { in GetSel()
1008 nStartChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSel()
1012 nEndChar = m_pVT->WordPlaceToWordIndex(m_SelState.BeginPos); in GetSel()
[all …]
Dfxet_edit.h101 CPVT_WordPlace BeginPos; variable
/external/pdfium/fpdfsdk/pdfwindow/
DPWL_Edit.cpp259 CPVT_WordRange wrSelBefore(wrWhole.BeginPos, wrSelect.BeginPos); in GetThisAppearanceStream()
796 if (wr1.BeginPos.WordCmp(wr2.BeginPos) < 0) { in CombineWordRange()
797 wrRet.BeginPos = wr1.BeginPos; in CombineWordRange()
799 wrRet.BeginPos = wr2.BeginPos; in CombineWordRange()
DPWL_Utils.cpp31 if (wr2.EndPos.WordCmp(wr1.BeginPos) < 0 || in OverlapWordRange()
32 wr2.BeginPos.WordCmp(wr1.EndPos) > 0) in OverlapWordRange()
34 if (wr1.EndPos.WordCmp(wr2.BeginPos) < 0 || in OverlapWordRange()
35 wr1.BeginPos.WordCmp(wr2.EndPos) > 0) in OverlapWordRange()
38 if (wr1.BeginPos.WordCmp(wr2.BeginPos) < 0) { in OverlapWordRange()
39 wrRet.BeginPos = wr2.BeginPos; in OverlapWordRange()
41 wrRet.BeginPos = wr1.BeginPos; in OverlapWordRange()