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

  /external/pdfium/core/fpdfdoc/
cline.h 11 #include "core/fpdfdoc/cpvt_wordplace.h"
18 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;
cline.cpp 13 CPVT_WordPlace CLine::GetBeginWordPlace() const {
14 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1);
17 CPVT_WordPlace CLine::GetEndWordPlace() const {
18 return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex,
22 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace& place) const {
24 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
27 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
31 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace& place) const
    [all...]
csection.h 19 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
    [all...]
cpvt_wordrange.h 10 #include "core/fpdfdoc/cpvt_wordplace.h"
16 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) {
25 void Set(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) {
31 void SetBeginPos(const CPVT_WordPlace& begin) {
36 void SetEndPos(const CPVT_WordPlace& end) {
49 CPVT_WordPlace place = EndPos;
55 CPVT_WordPlace BeginPos;
56 CPVT_WordPlace EndPos
    [all...]
cpdf_variabletext.h 16 #include "core/fpdfdoc/cpvt_wordplace.h"
56 void SetAt(const CPVT_WordPlace& place);
57 const CPVT_WordPlace& GetAt() const { return m_CurPos; }
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)
    [all...]
cpvt_section.h 11 #include "core/fpdfdoc/cpvt_wordplace.h"
16 CPVT_WordPlace secplace;
cpvt_line.h 10 #include "core/fpdfdoc/cpvt_wordplace.h"
18 CPVT_WordPlace lineplace;
19 CPVT_WordPlace lineEnd;
cpvt_wordplace.h 12 struct CPVT_WordPlace {
13 CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1), nWordIndex(-1) {}
15 CPVT_WordPlace(int32_t other_nSecIndex,
25 bool operator==(const CPVT_WordPlace& wp) const {
30 bool operator!=(const CPVT_WordPlace& wp) const { return !(*this == wp); }
32 inline int32_t WordCmp(const CPVT_WordPlace& wp) const {
48 inline int32_t LineCmp(const CPVT_WordPlace& wp) const {
60 inline int32_t SecCmp(const CPVT_WordPlace& wp) const {
csection.cpp 39 pLine->LinePlace = CPVT_WordPlace(SecPlace.nSecIndex, i, -1);
44 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place,
57 CPVT_WordPlace CSection::AddLine(const CPVT_LineInfo& lineinfo) {
58 return CPVT_WordPlace(SecPlace.nSecIndex, m_LineArray.Add(lineinfo), -1);
72 CPVT_WordPlace CSection::GetBeginWordPlace() const {
79 CPVT_WordPlace CSection::GetEndWordPlace() const {
86 CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace& place) const {
95 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1)
    [all...]
cpdf_variabletext.cpp 93 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) {
118 CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex + 1, -1);
122 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1);
133 CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex - 1, -1);
139 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex - 1,
150 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1);
159 m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex - 1, 0, -1);
205 line.lineplace = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex, -1);
222 section.secplace = CPVT_WordPlace(m_CurPos.nSecIndex, 0, -1);
267 CPVT_WordPlace place
    [all...]
cpvt_word.h 10 #include "core/fpdfdoc/cpvt_wordplace.h"
20 CPVT_WordPlace WordPlace;
cpvt_generateap.cpp     [all...]
  /external/pdfium/fpdfsdk/pdfwindow/
PWL_Edit.h 110 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)
    [all...]
PWL_Edit.cpp 483 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStart);
484 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEnd);
512 CFX_PointF CPWL_Edit::GetWordRightBottomPoint(const CPVT_WordPlace& wpWord) {
514 CPVT_WordPlace wpOld = pIterator->GetAt();
744 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place,
745 const CPVT_WordPlace& oldplace) {
752 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place,
753 const CPVT_WordPlace& oldplace) {
760 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place,
761 const CPVT_WordPlace& oldplace)
    [all...]
PWL_ListBox.h 20 struct CPVT_WordPlace;
40 const CPVT_WordPlace& place);
PWL_EditCtrl.h 21 struct CPVT_WordPlace;
102 const CPVT_WordPlace& place);
PWL_EditCtrl.cpp 327 CPVT_WordPlace wpTemp = m_pEdit->GetCaretWordPlace();
534 const CPVT_WordPlace& place) {
567 CPVT_WordPlace wpStart = m_pEdit->WordIndexToWordPlace(nStartChar);
568 CPVT_WordPlace wpEnd = m_pEdit->WordIndexToWordPlace(nEndChar);
  /external/pdfium/fpdfsdk/fxedit/
fxet_edit.h 90 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
    [all...]
fxet_edit.cpp 142 void CFX_Edit_Iterator::SetAt(const CPVT_WordPlace& place) {
146 const CPVT_WordPlace& CFX_Edit_Iterator::GetAt() const {
377 const CPVT_WordPlace& wpOldPlace,
378 const CPVT_WordPlace& wpNewPlace,
411 const CPVT_WordPlace& wpOldPlace,
412 const CPVT_WordPlace& wpNewPlace,
445 const CPVT_WordPlace& wpOldPlace,
446 const CPVT_WordPlace& wpNewPlace,
482 const CPVT_WordPlace& wpOldPlace,
483 const CPVT_WordPlace& wpNewPlace
    [all...]

Completed in 141 milliseconds