OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nWordIndex
(Results
1 - 8
of
8
) sorted by null
/external/pdfium/core/include/fpdfdoc/
fpdf_vt.h
23
CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1),
nWordIndex
(-1) {}
30
nWordIndex
= other_nWordIndex;
33
void Default() { nSecIndex = nLineIndex =
nWordIndex
= -1; }
37
wp.
nWordIndex
==
nWordIndex
;
42
wp.
nWordIndex
!=
nWordIndex
;
58
if (
nWordIndex
> wp.
nWordIndex
) {
61
if (
nWordIndex
< wp.nWordIndex)
[
all
...]
/external/pdfium/core/src/fpdfdoc/
doc_vt.cpp
34
if (place.
nWordIndex
> m_LineInfo.nEndWordIndex) {
39
place.
nWordIndex
- 1);
42
if (place.
nWordIndex
< m_LineInfo.nBeginWordIndex) {
47
place.
nWordIndex
+ 1);
76
int32_t
nWordIndex
=
77
std::max(std::min(place.
nWordIndex
, m_WordArray.GetSize()), 0);
78
if (
nWordIndex
== m_WordArray.GetSize()) {
81
m_WordArray.InsertAt(
nWordIndex
, pWord);
117
if (place.
nWordIndex
== pLine->m_LineInfo.nBeginWordIndex) {
120
if (place.
nWordIndex
< pLine->m_LineInfo.nBeginWordIndex)
[
all
...]
pdf_vt.h
273
void ClearLeftWords(int32_t
nWordIndex
);
274
void ClearRightWords(int32_t
nWordIndex
);
550
void SetAt(int32_t
nWordIndex
) override;
/external/pdfium/fpdfsdk/include/fxedit/
fx_edit.h
163
virtual void SetAt(int32_t
nWordIndex
) = 0;
fxet_edit.h
783
void SetAt(int32_t
nWordIndex
) override;
/external/pdfium/fpdfsdk/src/javascript/
Document.h
270
CFX_WideString GetObjWordStr(CPDF_TextObject* pTextObj, int
nWordIndex
);
Document.cpp
[
all
...]
/external/pdfium/fpdfsdk/src/fxedit/
fxet_edit.cpp
75
void CFX_Edit_Iterator::SetAt(int32_t
nWordIndex
) {
76
m_pVTIterator->SetAt(
nWordIndex
);
[
all
...]
Completed in 331 milliseconds