HomeSort by relevance Sort by last modified time
    Searched refs:CPVT_WordPlace (Results 1 - 15 of 15) sorted by null

  /external/pdfium/core/include/fpdfdoc/
fpdf_vt.h 19 struct CPVT_WordPlace;
22 struct CPVT_WordPlace {
23 CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1), nWordIndex(-1) {}
25 CPVT_WordPlace(int32_t other_nSecIndex,
35 FX_BOOL operator==(const CPVT_WordPlace& wp) const {
40 FX_BOOL operator!=(const CPVT_WordPlace& wp) const {
45 inline int32_t WordCmp(const CPVT_WordPlace& wp) const {
67 inline int32_t LineCmp(const CPVT_WordPlace& wp) const {
83 inline int32_t SecCmp(const CPVT_WordPlace& wp) const {
102 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end)
    [all...]
  /external/pdfium/core/src/fpdfdoc/
pdf_vt.h 196 CPVT_WordPlace GetBeginWordPlace() const;
197 CPVT_WordPlace GetEndWordPlace() const;
198 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const;
199 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const;
200 CPVT_WordPlace LinePlace;
248 CPVT_WordPlace AddWord(const CPVT_WordPlace& place,
250 CPVT_WordPlace AddLine(const CPVT_LineInfo& lineinfo)
    [all...]
doc_vt.cpp 26 CPVT_WordPlace CLine::GetBeginWordPlace() const {
27 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1);
29 CPVT_WordPlace CLine::GetEndWordPlace() const {
30 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex,
33 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace& place) const {
35 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
41 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace& place) const
    [all...]
doc_ap.cpp 723 CPVT_WordPlace oldplace;
725 CPVT_WordPlace place = pIterator->GetAt();
    [all...]
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_Edit.h 121 void OnInsertWord(const CPVT_WordPlace& place,
122 const CPVT_WordPlace& oldplace) override;
123 void OnInsertReturn(const CPVT_WordPlace& place,
124 const CPVT_WordPlace& oldplace) override;
125 void OnBackSpace(const CPVT_WordPlace& place,
126 const CPVT_WordPlace& oldplace) override;
127 void OnDelete(const CPVT_WordPlace& place,
128 const CPVT_WordPlace& oldplace) override;
129 void OnClear(const CPVT_WordPlace& place,
130 const CPVT_WordPlace& oldplace) override
    [all...]
PWL_EditCtrl.h 19 struct CPVT_WordPlace;
38 virtual void OnInsertWord(const CPVT_WordPlace& place,
39 const CPVT_WordPlace& oldplace) {}
40 virtual void OnInsertReturn(const CPVT_WordPlace& place,
41 const CPVT_WordPlace& oldplace) {}
42 virtual void OnBackSpace(const CPVT_WordPlace& place,
43 const CPVT_WordPlace& oldplace) {}
44 virtual void OnDelete(const CPVT_WordPlace& place,
45 const CPVT_WordPlace& oldplace) {}
46 virtual void OnClear(const CPVT_WordPlace& place
    [all...]
PWL_ListBox.h 43 const CPVT_WordPlace& place);
  /external/pdfium/fpdfsdk/include/fxedit/
fxet_edit.h 173 CFX_Edit_Select(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) {
190 void Set(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) {
195 void SetBeginPos(const CPVT_WordPlace& begin) { BeginPos = begin; }
197 void SetEndPos(const CPVT_WordPlace& end) { EndPos = end; }
205 CPVT_WordPlace BeginPos, EndPos;
288 const CPVT_WordPlace& wpOldPlace,
289 const CPVT_WordPlace& wpNewPlace,
302 CPVT_WordPlace m_wpOld
    [all...]
fx_edit.h 34 struct CPVT_WordPlace;
97 const CPVT_WordPlace& place) = 0;
113 virtual void OnInsertWord(const CPVT_WordPlace& place,
114 const CPVT_WordPlace& oldplace) = 0;
116 virtual void OnInsertReturn(const CPVT_WordPlace& place,
117 const CPVT_WordPlace& oldplace) = 0;
119 virtual void OnBackSpace(const CPVT_WordPlace& place,
120 const CPVT_WordPlace& oldplace) = 0;
122 virtual void OnDelete(const CPVT_WordPlace& place,
123 const CPVT_WordPlace& oldplace) = 0
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Edit.cpp 727 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStart);
728 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEnd);
757 CPDF_Point CPWL_Edit::GetWordRightBottomPoint(const CPVT_WordPlace& wpWord) {
761 CPVT_WordPlace wpOld = pIterator->GetAt();
999 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place,
1000 const CPVT_WordPlace& oldplace) {
1011 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place,
1012 const CPVT_WordPlace& oldplace) {
1023 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place,
1024 const CPVT_WordPlace& oldplace)
    [all...]
PWL_EditCtrl.cpp 344 CPVT_WordPlace wpTemp = m_pEdit->GetCaretWordPlace();
575 const CPVT_WordPlace& place) {
614 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStartChar);
615 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEndChar);
PWL_Utils.cpp 463 CPVT_WordPlace place = pIterator->GetAt();
516 CPVT_WordPlace wpWordStart;
519 CPVT_WordPlace oldplace;
521 CPVT_WordPlace place = pIterator->GetAt();
    [all...]
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_edit.cpp 79 void CFX_Edit_Iterator::SetAt(const CPVT_WordPlace& place) {
83 const CPVT_WordPlace& CFX_Edit_Iterator::GetAt() const {
410 const CPVT_WordPlace& wpOldPlace,
411 const CPVT_WordPlace& wpNewPlace,
444 const CPVT_WordPlace& wpOldPlace,
445 const CPVT_WordPlace& wpNewPlace,
478 const CPVT_WordPlace& wpOldPlace,
479 const CPVT_WordPlace& wpNewPlace,
515 const CPVT_WordPlace& wpOldPlace,
516 const CPVT_WordPlace& wpNewPlace
    [all...]
fxet_ap.cpp 78 CPVT_WordPlace oldplace;
81 CPVT_WordPlace place = pIterator->GetAt();
188 CPVT_WordPlace place = pIterator->GetAt();
fxet_pageobjs.cpp 119 CPVT_WordPlace place = pIterator->GetAt();
194 CPVT_WordPlace oldplace;
197 CPVT_WordPlace place = pIterator->GetAt();
319 CPVT_WordPlace oldplace;
322 CPVT_WordPlace place = pIterator->GetAt();
493 CPVT_WordPlace oldplace;
496 CPVT_WordPlace place = pIterator->GetAt();
556 CPVT_WordPlace oldplace;
559 CPVT_WordPlace place = pIterator->GetAt();
639 CPVT_WordPlace oldplace
    [all...]

Completed in 91 milliseconds